just wanna ask if you know a way to draw using tilemap object. just a really simple drawing.
I tried to use something like this (just one event):
On left mouse button is down, then set tile (Mouse.X,Mouse.Y) to tile 0
the tilemap is just a 2x2 dot, it start to draw but dont follow the mouse cursor.
maybe I am using it in a wrong way.
do you know how to do it?
****
just got how to do it!
should divide by the size of the tilemap.. as my tilemap is 2x2, should divide it by 2:
On left mouse button is down, then set tile (Mouse.X/2,Mouse.Y/2) to tile 0
problem solved