IsMenuControlsEnabled - Game

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

Member of: Game Script

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

Syntax

bool Function IsMenuControlsEnabled() native global

Parameters

None.

Return Value

If the menu controls are currently enabled or not.

Examples

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

See Also