how do you make it so that you can only jump once?
![Post Post](styles/prosilver/imageset/icon_post_target.gif)
how can you make it so that you can only jump once?
they jump with (yvelocity = -1;) thx
they jump with (yvelocity = -1;) thx
Game Editor discussion board
http://game-editor.com/forum/
Jump = 1;
if (jump == 1)
{
yvelocity -= 1;
Jump = 0;
}
if (jumping == 0) yvelocity = -1;
jumping = 1;
jumping = 0;