• 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!

Gamepad Vibration Never Stops

Not sure why the vibration isn't stopping.

I created an object called obj_shake. Events below. In my obj_player when the player dies, I am creating an instance of obj_shake. When the played dies, the controller vibrates, but it doesn't stop :(

obj_shake:

Create
GML:
gamepad_set_vibration(0, 1, 1);
alarm[0] = 1;
Alarm[0]
GML:
instance_destroy();
 
Top