IsJumpingControlsEnabled - Game

Member of: Game Script

Checks to see if jumping controls are currently enabled or not.

SyntaxEdit

bool Function IsJumpingControlsEnabled() native global

ParametersEdit

None.

Return ValueEdit

If the jumping controls are currently enabled or not.

ExamplesEdit

; Can the player use the journal menu?
if Game.IsJumpingControlsEnabled()
  Debug.Trace("Player can jump!")
endIf

NotesEdit

Jumping controls are also disabled/enabled by the movement controls.

See AlsoEdit