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

Need quick help with gamepad!

D

Doooooli

Guest
if (gamepad_button_check_pressed(4,gp_face1))
{
image_index = 1;
}

that is my clicking code, but the sprite starts at image_index 1 before I'm even pressing it!

image_speed is set to 0 in create event!

Why is that?

thx
 
R

Rocket35

Guest
Check that both image_speed and image_index is set to 0 in the create event.
 
Top