How Can I Fix it ?? (Isometric Tilemap Twist)
I want to make a large size Isometric Tilemap. But If you set more than a certain number of tiles The tiles are twisted. How can I solve it?
// Set Tile Code
for (int y = Map_Height; y > 0; y--)
{
for (int x = Map_Width; x > 0; x--)
{
FloorTileGrid.SetTile(new Vector3Int(x, y, 0), FloorTileBase);
}
}
,
제목-없음.png
(329.6 kB)
Comment