Search code examples
2dgame-enginetiles

What programming language is best suited for a 2D platformer game with my experience?


Me and a few friends want to start building a 2D puzzle platformer. It uses a lot of tiles and we experienced that our test level did not run smoothly with Java. Do any of you have suggestions on which programming language/engine would be best suited to make the game?

We have experience with Java and Actionscript 3.

Thank you in advance for your advise.


Solution

  • I started with java and LibGdx as engine, it quite simple and has a good performance.

    For further performance increase, you should maybe rethink the way of handling the tiles. Not rendering all tiles, create junks which are loaded, when the are used and unloaded when not.