IsFavoritesControlsEnabled - Game

From the Fallout4 CreationKit Wiki
Revision as of 20:54, 11 February 2018 by imported>Qazaaq (added category)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Game Script

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

Syntax

bool Function IsFavoritesControlsEnabled() Native Global

Parameters

None.

Return Value

If the favorites controls are currently enabled or not.

Examples

; Can the player fight?
If Game.IsFavoritesControlsEnabled()
    Debug.Trace("Player can use quickkeys!")
EndIf

See Also