• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

mouse around the player

  1. H

    GML How to Lock Mouse to a Circle Around Player ?

    Hello, guys! So, I made an object Crosshair that follows the mouse while staying in a circle around the player, using this code: var dist = min(300, point_distance(obj_player.x, obj_player.y, mouse_x, mouse_y)) var dir = point_direction(obj_player.x, obj_player.y, mouse_x, mouse_y) x =...
Top