IsJumpingControlsEnabled - Game

From the Fallout4 CreationKit Wiki
Revision as of 10: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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Game Script

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

Syntax[edit | edit source]

bool Function IsJumpingControlsEnabled() native global

Parameters[edit | edit source]

None.

Return Value[edit | edit source]

If the jumping controls are currently enabled or not.

Examples[edit | edit source]

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

Notes[edit | edit source]

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

See Also[edit | edit source]