What's the best example for learning platform games in Defold?

Hi !

I have a question.
What’s the best example for learning platform games in Defold?

My recommendations:

1 Like

I see that the level is created using “tilemap”. I have a question.
How big (in px) max can/should such levels be?
Are there any limitations?

The limitation is on number of tiles, not pixel size. You can set a max tile count for your tilemap in game.project:

1 Like

Thank you for your quick reply. What value is optimal for mobile and web games ?

You can create big maps on mobile and web as well. The size of the map rarely matter much, but if it is filled with thousands of game objects you need to manage this and disable objects that are far off-screen for instance.

You can always measure performance using the profiler: Profiling in Defold

3 Likes