Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Qt4 2D Game Engine

Are there any 2-D Game Engines for Qt4 out there? I want a game engine that has collision detection, and runs smoothly with lots of sprites on screen.

like image 233
Tristan Avatar asked Dec 13 '22 22:12

Tristan


2 Answers

The QT Graphics view has collision detection build right in. You don't need a framework for that.

"Graphics View provides a surface for managing and interacting with a large number of custom-made 2D graphical items"

like image 86
extraneon Avatar answered Dec 28 '22 09:12

extraneon


V-Play (v-play.net) is a cross-platform game engine based on Qt/QML with many useful V-Play QML game components for handling multiple display resolutions & aspect ratios, animations, particles, physics, multi-touch, gestures, path finding and more. API reference The engine core is written in native C++, combined with the custom renderer, the games reach a solid performance of 60fps across all devices. If you are curious about the games made with V-Play, here is a quick selection of them:

  • Squaby: a tower defense game
  • Chicken Outbreak: a platformer like Doodle Jump
  • Blockoban: puzzle game
  • Crazy Elephant: a game similar to Angry Birds
  • Snowball Mania: multiplayer action game
  • Blitzkopf: brain game
like image 31
Christian Feldbacher Avatar answered Dec 28 '22 08:12

Christian Feldbacher