How to find out on which cell of TileMap the cursor is located

Godot Version 4.3 Beta 1

Question

I would like to customize the interaction between the user and TileMap by using a cursor. For example remove a tile, place a tile, etc. However, I have not found any official information about translating mouse coordinates to grid system. I know I can do it manually, ie:

Pseudocode

global_mouse_pos = gms;
coord.x = round_down(gms.x // tile_size)
coord.y = round_down(gms.y // tile_size)

But it seems to me that constantly getting coordinates in this way would cause unnecessary resource consumption.

Is there some built-in method to get mouse grid coordinates?

tilemap.local_to_map(get_global_mouse_position())

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.