
Originally Posted by
aeroxr1
Yes but how can reuse Unity ? :/ It doesn't seem simple

If it were simple, you'd have zillions of Unity based games out there.
If you expected something along the lines of:
int main(int argc, char **argv) {
UnityGame game;
game.letThereBeAGameIWant();
return app.exec();
}
int main(int argc, char **argv) {
QApplication app(argc, argv);
UnityGame game;
game.letThereBeAGameIWant();
return app.exec();
}
To copy to clipboard, switch view to plain text mode
then it ain't gonna happen. You have to put a lot of work into it.
Bookmarks