Its’s possible to change the images points but how to change tile object points to center of it
Tilemaps doesn’t support points, but you can get the centre with the expression “Tile.X() + Tile.Width() / 2”, and center it with “Do = CenterX() - Tile.Width() / 2 ; CenterY() - Tile.Height() / 2 to the position of Tile” with the Tile object already created
For arbitrary point, you’ll have to do some extra work
THANKS but I have found the the other way