IsJournalControlsEnabled - Game

From the Fallout4 CreationKit Wiki
Revision as of 16:37, 12 February 2013 by imported>Plplecuyer (Undo revision 27380 by Jlundin (talk))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Game Script

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

Syntax

bool Function IsJournalControlsEnabled() native global

Parameters

None.

Return Value

If the journal menu controls are currently enabled or not.

Examples

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

See Also