Hi all!
I’m new to Tiled and want to use it for a Flutter/Dart based (Flame engine) game. But a few basic conceptual questions came to my mind. I’ll explain my situation:
There’s a (grid) map that holds various obstacles with varying resistance values and also two player figures. The player figures can shoot at each other or at obstacles which will decrease resistance value when hit. (I also think of changing the look of hit obstacles but I have no idea yet how to do this.) The player/user has the option to toggle on/off an overlay layer (over the map) which shows the current resistance values of the obstacles in the map.
So now I wonder how to best organize and structure all these ideas into layers.
Will the “pure” background map go into a Tile layer and the obstacles into another tile layer? Will the initial resistance values for all obstacles go into an object layer? In my game engine (Flame) will I be able to access all obstacles (coordinates) and their initial resistance values? (It’s probably not a question for this forum, but maybe someone knows.)
When does it make sense to have multiple object layers?
Any other things I should consider or think about?
Thanks a lot in advance!
W.