How to change tilemap object's point

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 :slight_smile:
For arbitrary point, you’ll have to do some extra work :frowning:

THANKS :slight_smile: but I have found the the other way :wink: