Is it possible to have individual tiles in an Autotile be larger than one grid space?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Alzter

Is it possible to have individual tiles in an Autotile be larger than one grid space? If so, how can I achieve this?

I want to make an Autotile where the corner tiles extend past the grid boundaries like this:

Rather than having the tiles cut off at the edge like this:

I don’t want to fit my tiles within a square box, I want them to jut out past the edges a bit to look more organic.

To achieve this effect I will need to make individual tiles within my Autotile be larger than one grid space. May I please have some help figuring out how to do this?

Thank you!!

I don’t think currently there will be an easy solution for this. You can use code to draw those missing tiles based on the tilemap data.

dethland | 2022-12-12 05:48

The easier way is to redesign your tile. Try not to reach the border of the tile. Increase the size of the tile until finding a sweet spot. If you want to keep the art design, you can use static_body rather than tilemap.

dethland | 2022-12-12 06:04