hello
the code is quite simple, basically, if the gamepad is at +0.99 the cursor moves. the cursor rotates around the hero, it allows you to shoot easily.
the problem is when I let go of the cursor, it is already too sensitive, when I let go of the joystick the cursor moves because it detects a movement in the joystick.. and then when I aim at something it moves too much!..
gamepad sensibility problem
the code is quite simple, basically, if the gamepad is at +0.99 the cursor moves. the cursor rotates around the hero, it allows you to shoot easily.
the problem is when I let go of the cursor, it is already too sensitive, when I let go of the joystick the cursor moves because it detects a movement in the joystick.. and then when I aim at something it moves too much!..
GML:
if obj_hero.weapon>0
{
var radius = 250;
var deadzone = 0.99;
var...