IsJumpingControlsEnabled - Game
Revision as of 09:16, 7 July 2016 by imported>Hannibalektr (Created page with "Category:Scripting Category:Papyrus '''Member of:''' Game Script Checks to see if jumping controls are currently enabled or not. == Syntax == <source lang="papyr...")
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.