Hi every one ! Is it possible develope Game using QML?
-
Yes, and probably vplay.
-
@Shae How complex is your game?
Here is a simple game that's written in QML only and doesn't require any special engine: http://doc.qt.io/qt-5/qtquick-demos-samegame-example.html
Here's a more complex game that's written in QML and C++: http://blog.qt.io/blog/2014/07/21/google-labs-voltair-game-built-with-qt/
See also https://wiki.qt.io/Qt_Based_Games#Tools_and_libraries
-
@Shae How complex is your game?
Here is a simple game that's written in QML only and doesn't require any special engine: http://doc.qt.io/qt-5/qtquick-demos-samegame-example.html
Here's a more complex game that's written in QML and C++: http://blog.qt.io/blog/2014/07/21/google-labs-voltair-game-built-with-qt/
See also https://wiki.qt.io/Qt_Based_Games#Tools_and_libraries
-
@JKSH I hope a simple MMORPG game not need too much effect. Most of the game samples based on Box2D,hard to choose.
@Shae said in Hi every one ! Is it possible develope Game using QML?:
@JKSH I hope a simple MMORPG game not need too much effect. Most of the game samples based on Box2D,hard to choose.
Look through the first 2 links I posted.
For an MMORPG, you need at least one game server. You could use QML for the graphics, but you probably won't use QML to write the server code.
-
@Shae said in Hi every one ! Is it possible develope Game using QML?:
@JKSH I hope a simple MMORPG game not need too much effect. Most of the game samples based on Box2D,hard to choose.
Look through the first 2 links I posted.
For an MMORPG, you need at least one game server. You could use QML for the graphics, but you probably won't use QML to write the server code.
-
@Shae said in Hi every one ! Is it possible develope Game using QML?:
Dose the offline MMORPG need the server?
MMORPG stands for "Massively Multiplayer Online Role-Playing Game". Offline MMORPGs don't exist. However, if you want to make a traditional single-player RPG, then you don't need a server.
Have you made an RPG before? If not, I recommend you first get experience in designing the structure of an RPG. You can do this by using something like RPG Maker (they have a free version called RPG Maker VX Ace Lite)
-
@JKSH I hope a simple MMORPG game not need too much effect. Most of the game samples based on Box2D,hard to choose.
@Shae Definitely no such thing as a "simple" mmorpg. Probably the hardest game type to make. They take large teams many years.
From the offline comment though you probably just want a simple RPG which is much easier. :)
-
@Shae said in Hi every one ! Is it possible develope Game using QML?:
Dose the offline MMORPG need the server?
MMORPG stands for "Massively Multiplayer Online Role-Playing Game". Offline MMORPGs don't exist. However, if you want to make a traditional single-player RPG, then you don't need a server.
Have you made an RPG before? If not, I recommend you first get experience in designing the structure of an RPG. You can do this by using something like RPG Maker (they have a free version called RPG Maker VX Ace Lite)
@ambershark sorry I mean the single-player RPG. Thanks for your advise.