I have a top down grid based game similar to pac man. The player, enemy movement and line of sight is all based on player or enemy x, y. However after I brought the graphics in I changed the image point of everything to 0,0 so the graphics would properly align with the snap to grid function. After changing the image point all of the movement got messed up. For example if I press up the player might go left, If I press left the player might do nothing.
The reason I changed the image point in the first place was because I wanted my 32x32 tiles to snap within each 32x32 grid square, as opposed to snapping onto the grid crosshairs. Is there a different way of centering my tiles within each grid square that wont effect movement and line of sight? How can I fix this? Thank you for any help.