Quantcast
Channel: Qt DevNet forums: Qt Quick 1283365070**
Viewing all articles
Browse latest Browse all 4972

QtQuick 2.0 Physics?

$
0
0
Hi, I’m not aware of support for Qt5 of box2d yet. We also have our own Box2D wrapper for QML for the V-Play Game Engine [v-play.net], you can have a look at the Box2D components here: http://doc.v-play.net/vplay-group.html#physics-components In comparison with the repo from gitorious, we added convenience wrappers for colliders with a single fixture, as these are used most of the time (BoxCollider [doc.v-play.net], CircleCollider [doc.v-play.net] and PolygonCollider [doc.v-play.net]). Additionally we added two more joints of the latest Box2D version 2.2.1: RopeJoint [doc.v-play.net] and WeldJoint [doc.v-play.net]. If you are willing to use Qt4, V-Play might be an option for your game. We are following Qt5 with great interest, and will update to it after iOS is properly supported and allows smooth 60fps like we have it now with our custom renderer. At that time, we will port the Box2D plugin to Qt5. From what I’ve seen on your other post about Timer performance (http://qt-project.org/forums/viewthread/23566/), you are trying to update physics from QML? I would recommend to not doing high-performance things in QML, which is the reason we implemented all our performance-relevant components (Rendering, Sprites, Particles, Physics, Movement, ) in C++. Cheers, Chris

Viewing all articles
Browse latest Browse all 4972

Trending Articles