Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Something like unity but for C++ programmers

is there anything similar to unity but with the difference that instead of javascript I can use C++?

like image 276
smallB Avatar asked Apr 17 '12 09:04

smallB


2 Answers

It is funny, I was looking to learn a little bit of unity as I seen it as requirement for some postings... and I found this question.

I think Ogre3D is great... it may be what you are looking for. here is the link ogre3d.org

Ogre3D is what I used. http://www.ogre3d.org/

like image 144
Blues76 Avatar answered Nov 03 '22 14:11

Blues76


It is somewhat of a misconception that Unity uses Javascript. The so-called Javascript used in Unity is actually a dialect of Javascript that is CLI-compatible and is not exactly the same as the official Javascript. Also, you are not limited to using Javascript in Unity. You can also use C#, which is similar to C++ and Java in some ways or the less commonly used Boo script.

Personally, I would recommend using C# in Unity because it is very powerful and allows calling of native C/C++ functions via P/Invoke. Here is a link to the use of plugins: http://unity3d.com/support/documentation/Manual/Plugins.html

Link to list of Game Engines. Please take your time to read and consider them: http://en.wikipedia.org/wiki/List_of_game_engines

like image 34
ksming Avatar answered Nov 03 '22 13:11

ksming