IsMovementControlsEnabled - Game

From the Fallout4 CreationKit Wiki
Revision as of 19:41, 2 August 2011 by imported>Plplecuyer (Created page with 'Category:Scripting Category:Papyrus '''Member of:''' Game Script Checks to see if movement controls are currently enabled or not. == Syntax == <source lang="papyrus…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Game Script

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

Syntax[edit | edit source]

bool Function IsMovementControlsEnabled() native global

Parameters[edit | edit source]

None.

Return Value[edit | edit source]

If the movement controls are currently enabled or not.

Examples[edit | edit source]

; Can the player move?
if Game.IsMovementControlsEnabled()
  Debug.Trace("Player can move!")
endIf

See Also[edit | edit source]