An endless runner follows a pattern? (SOLVED)

No, not likely. Lua is the supported language for writing game code in. Lua is a popular scripting language with very good performance.

You can also move game logic to a native extension for even better performance. In theory you could move all game logic to C/C++ and only use script files to call your game logic in the extension.

There are examples of 3rd party solutions for writing game code in one language and then as a pre-build step it gets translated into Lua and the Defold API. Examples:

2 Likes