Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

What would be the name for the mouse crosshair? I am making accuracy increase/decrease depending on the distance between the player and the mouse.

Mouse coordinates are stored in global arrays mouse_x[]\mouse_y[], so you'd do something like point_distance(x, y, mouse_x[index], mouse_y[index]) if it's on Player object.