How do you remove every tile on a 2000x2000 tilemap without placing 4mil tiles.
In script you need to iterate over the whole map to clear it. Alternatively you can spawn a new clean map and delete the old one, if your use case allows it.
1 Like
Spawning a new one sound like a good idea. Or use a coroutine and clear it over several frames.