How do you change the modulate of a tile in the tileset at a specific atlas (like for example Vector2i(2,0) ) via script, because tile_set_modulate() doesn’t exist anymore.
I want it to modulate all instances of that tile, not just a single tile.
Get TileSetSource object via TileSet.get_source(). Then get TileData object from the source object via get_tile_data(). TileData has the modulate property which you can set.