SetCharGenHUDMode - Game

From the Fallout4 CreationKit Wiki
Revision as of 15:52, 23 September 2014 by imported>HEECFYAHOOCA (Created page with "Category:Scripting Category:Papyrus '''Member of:''' Game Script Sets or clears CharGen-specific HUD modes. == Syntax == <source lang="papyrus"> Function SetCharGenH...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Game Script

Sets or clears CharGen-specific HUD modes.

Syntax

Function SetCharGenHUDMode(int aiCGHUDMode) native global

Parameters

  • aiCGHUDMode: Which HUD mode to set. Valid values:
    • 0 -- Clears all CharGen HUD modes
    • 1 -- From CharGen start to leaving the house. Most of HUD invisible except for crosshairs.
    • 2 -- From leaving the house to entering the cryo-pod. Crosshairs and compass.

Return Value

None

Examples

; We're starting CharGen
Game.SetCharGenHUDMode(1)


; CharGen over!  Back to standard HUD mode
Game.SetCharGenHUDMode(0)

See Also