Among Us clone, should I use tilemap or alternatives?

Godot Version

4.2

Question

Godot (gamedev) beginner here!

I want to create an Among Us clone, for learning purpose, but I am unsure how to create the starship (world environment).

Should I use tilemap or is that more ment for pixel art games?
What other alternative ways is there to create the environment?

Thanks in advanced! :slight_smile:

I think a Tilemap is a good candidate, especially if you think your environment can be broken into discrete chunks and the layout can conform generally to a tiling. Take some time and look up some tutorials to learn how autotiling and Tilemap layers work (you might want to check out the 4.3 beta since that has revamped how Tilemap layers work)… there’s more complexity, but you’ll be able to do more, more easily, once you learn it.

To follow up, i don’t think there’s an inherent connection between tile maps and pixel art per se, they just work well together. But tile maps can work with any art style. I think you can separate it into logistics of where things are vs the style of the graphics displayed.

Thank you for your answer!
I will try using Tilemap then.

I’ve been following the Godot beginner video from a youtuber called Brackeys which I found very good. There is go through using Tilemap, albeit sidescroller, but the concept is the same so I should not have a problem with that.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.