SetInsideMemoryHUDMode - Game

From the Fallout4 CreationKit Wiki
Revision as of 20:12, 11 February 2018 by imported>Qazaaq (added category)
Jump to navigation Jump to search

Member of: Game Script

Sets or clears InsideMemory HUD Mode

Syntax

Function SetInsideMemoryHUDMode(bool aInsideMemory) Native Global

Parameters

  • aInsideMemory: Whether you are inside a memory

Return Value

None

Examples

; We've entered a memory, push the InsideMemory HUDMode
Game.SetInsideMemoryHUDMode(true)


; We've exited a memory, pop the InsideMemory HUDMode
Game.SetInsideMemoryHUDMode(false)

Notes

The following HUD elements are enabled when inside a Memory:

  • Crosshair
  • Subtitles
  • Rollover
  • Quest Updates
  • Tutorial Text
  • Floating Quest Markers
  • Perk Vault Boys


See Also