I know that someone has already posted this question:
http://www.adventuregamestudio.co.uk/forums/index.php?topic=32121.msg414514
But I couldn't implement khris' code, the process keeps repeating itself when I keep the key pressed
Code: ags
Thank you for helping me
http://www.adventuregamestudio.co.uk/forums/index.php?topic=32121.msg414514
But I couldn't implement khris' code, the process keeps repeating itself when I keep the key pressed
bool down;
//rep_ex
if (IsKeyPressed(32)) {
if (!down) {
down=true;
// do stuff
}
}
else down=false;
Thank you for helping me
