Skip to content

Game Development

What can we say - we like games. And you can use Qt to write some. Questions? Ask here.
875 Topics 4.1k Posts
  • Saving option in game

    5
    0 Votes
    5 Posts
    4k Views
    A
    Did you miss this part in the question: [quote]is it possible without using C++?[/quote] Using QSettings requires using C++. If you want to stick to QML only, you can only use the Offline Storage API.
  • [SOLVED]text output

    9
    0 Votes
    9 Posts
    4k Views
    L
    actually after carefully looking at my codes and modifying it.. I found the problem on my .js file so its working already. thanks for the help guys
  • Falling Objects help

    3
    0 Votes
    3 Posts
    3k Views
    L
    Yes I did. after 20 + times there shows an error
  • If i want to place QWebKit on top of OpenGL what is the best way to do it ?

    16
    0 Votes
    16 Posts
    10k Views
    Z
    Qt3d would be a good fit for interactive applications for kids.
  • How and Where to start to build a game using Qt

    16
    1 Votes
    16 Posts
    9k Views
    L
    Yeah I did. Thanks :D It really helped me a lot :)
  • [SOLVED]what engine should i choose??

    14
    0 Votes
    14 Posts
    6k Views
    T
    thanks for your help.
  • Some objects do not appear.

    3
    0 Votes
    3 Posts
    2k Views
    T
    I uploaded a video which helps me to explain my issue. https://rapidshare.com/files/323910714/model.rar I am using the same code in the penguin example just changed the 3ds file name.
  • Bomberman - QTimer, QTimerEvent, Signals and Slots connection problems

    22
    0 Votes
    22 Posts
    14k Views
    J
    After all I solved the problems myself, with help and useful advices of koahnig (really thanks for that!)... I left the interesting fragments (with the problems) and posted the solutions, so if anyone meets up with the same problem he'd probably read what he need, learn and correct. What's the point of posting here the whole source of the game? If u want to play it then I can upload the Release...
  • 0 Votes
    6 Posts
    4k Views
    A
    Thank you all, depends.exe is awesome tool :) As I said before we did it :) I will make sure to share a link here to a website after the game is finished :)
  • 0 Votes
    4 Posts
    5k Views
    Z
    Looks nice. The Butcher reminds of the first boss from Diablo I.
  • Beginning in Qt with OpenGL

    27
    0 Votes
    27 Posts
    17k Views
    Z
    First strait OpenGL isn't trivial and isn't for most people, just knowing how to program in C/C++ and the OpenGL api isn't enough you need a background in advanced mathematics. Also if your doing things in the wrong order or if your not in the right mode at the correct time you will end up with a different result than what you expected. When programming in OpenGL you have to think of it in a procedural mind set. Post a link to your complete source code if you want help.
  • Database needed for game?

    4
    0 Votes
    4 Posts
    2k Views
    A
    [quote author="Smar" date="1307540577"]And please create different thread for such questions... Someone could split this one off?[/quote] As you wish. This topic has been split off from "Welcome":http://developer.qt.nokia.com/forums/viewthread/86/
  • QGLFramebufferObject with 3D texture

    3
    0 Votes
    3 Posts
    3k Views
    R
    Anyone knows if its possible to use 32 bit precision floating point textures with a 3D texture?
  • 0 Votes
    8 Posts
    5k Views
    C
    Try latest one: http://doc.qt.nokia.com/qt-quick3d-snapshot/index.html
  • Looking for simple 3d games made with Qt that are open sourced

    8
    0 Votes
    8 Posts
    7k Views
    R
    There are some small examples in projects.forum.nokia.com: http://bit.ly/lJLuOg Take a look at Qt GameEnabler http://projects.forum.nokia.com/qtgameenabler
  • New in Qt game development...

    6
    0 Votes
    6 Posts
    3k Views
    D
    Corrected it... I've just re-created the project with only one simulator selected....
  • QTableWidget vs QTableView for game boards? Or something else?

    5
    0 Votes
    5 Posts
    6k Views
    I
    you could try using labels (With icons) and a Grid layout, maybe an array of labels that represents each square and another array with icons that represent the player, you cant try that way..
  • [Moved] Duck hunt game

    15
    0 Votes
    15 Posts
    7k Views
    R
    QGraphicsView is something I would use for creating such game. You can reimplement QGraphicsItem, so you get a DuckItem, where you can implement all the logic for moving a duck. You will get QMouseEvents directly to your item, so killing a duck is just a proper handling of events sent to your class.
  • My first QML game app

    8
    0 Votes
    8 Posts
    5k Views
    R
    The transition and special effects is what is special in QML. May be you need to use it .
  • QT Animation

    7
    0 Votes
    7 Posts
    4k Views
    R
    Why would you want to do that? What platform are you targeting ? You can of course use any drawing tools to create pictures and save upload it. Remember qrc (mobile) is for small files. [quote author="BrEaDFace" date="1303459182"]Is there any other way than drawing alot of pics as .png format and uploading with resource file?[/quote]