You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AM2R-TimeTrials/scripts/scr_disableplayercontrol.gml

23 lines
379 B

global.enablecontrol = 0;
with (oCharacter) {
kLeft = 0;
kRight = 0;
kUp = 0;
kDown = 0;
kJump = 0;
kJumpPressed = 0;
kRun = 0;
kAim = 0;
kFire = 0;
kMissile = 0;
if (state == SUPERJUMP) {
state = JUMPING;
vjump = 1;
xVel = 0;
yVel = 0;
sfx_stop(sndSJLoop);
}
//state = STANDING;
}