Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is a good & free game engine? [closed]

Tags:

java

c++

python

For C++, Java, or Python, what are some good game + free game engines that are easy to pick up?

Any type of game engine is okay. I just want to get started somewhere by looking into different game engines and their capabilities.

like image 877
codingbear Avatar asked Feb 19 '09 09:02

codingbear


2 Answers

For my Computer Graphics course in College we used the open source OGRE 3D engine. Not only is this an extremely robust 3D engine but it was a blast!

Develop a medium sized game using it and you will get a good taste of many of the different game programming specialties. You'll find yourself doing 3d modeling, sound effects, physics programming, AI, the works.

alt text http://www.mactabilisarts.com/Images/multiplayer%20games.jpg
Screenshot of a recent OGRE 3D Game

like image 58
mmcdole Avatar answered Oct 09 '22 03:10

mmcdole


Java hasn't got any love here? For 2D and 3D OpenGL on win/mac/linux/android, try libgdx. For 2D with API similar to Java2D try Slick. LWJGL for pure OpenGL bindings. Ardor3D or JMonkeyEngine for a higher level 3D library. For networking, KryoNet.

like image 38
NateS Avatar answered Oct 09 '22 04:10

NateS