How to make cell size different for different size tiles in tilemap?

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

I have a tile map with 16 by 16 blocks and one 64 by 64 block. I set the cell size to 16 so when I put down a 64 by 64 block then get_cell() it only gives back the tile for the top left corner not all of the tile. How can I get the whole tile?

:bust_in_silhouette: Reply From: MrDudeIII

It still considers that 64 x 64 block as a single 16x16 tile for mapping purposes. If you were, say, trying to replace the four tile spaces of the 64x64 tile with four 16x16 blocks, you would need to replace each of the tiles individually.