I have seen some really beautiful isometric style games made with Defold and I wanted to experiment so I created a simple isometric map in Tiled but Defold does not show the tilemap the way it is designed. What are the most effective methods that can be used to create 2D isometric games in Defold?
Thanks for your quick reply. I have gone through your very helpful description and I wonder if any updates have been made to the engine since you made your post to address the issue.
I really don’t feel like the person to ask about this!
A camera projection might be useful for some, but for Fates of Ort we used hand drawn pixel art in that perspective already so not sure if it would be applicable.
Picking tiles screen to world and vice versa was a bit complicated. Not sure if that’s something Defold should support out of the box though.
Isometrics in level creation can be different. It can be a “flat” picture with sprites sorted by z depending on y. (what Tiled does). Or it can be a three-dimensional scene with an orthographic camera set at a fixed angle to the scene. Then all sprites are in XYZ space as models, but in fact are just flat objects, it is convenient to move them on any coordinate, it is easy to calculate the position for character movements, effects, you can add full-weight 3d colliders to interact with the world. Something like this: https://x.com/Mudita_Games/status/1687854977879072768
For this approach, the Defold editor is missing the camera angle settings in the viewport.
I.e. first you need to determine what type of isometrics you need and proceed from that how to make it.