Pardon me, what code type do you guys use?

is it, like java, c++, etc.

1 Like

Not really sure what you mean, but when you create your game you use Lua, a beautiful little language, perfect for writing game logic.

The Defold game engine, which we provide as a binary when you build and bundle your project is written mainly in C with a little bit of C++. On top of the engine core we have native code for the various platforms, some Java for Android, Objective-C for iOS and OSX and Javascript for HTML5. You can read more about this here and here.

Finally, you can also extend the engine with your own native code using our system for native extensions.

5 Likes