ShowFirstPersonGeometry - Game

Revision as of 03:48, 15 January 2019 by imported>XJDHDR (→‎Notes: Added note on scenario where this function will cause the game to crash.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Member of: Game Script

Show/Hide the players first person geometry.

SyntaxEdit

Function ShowFirstPersonGeometry(bool abShow = True) native global

ParametersEdit

  • abShow: True to show the geometry, false to hide it.
    • Default: True

Return ValueEdit

None.

ExamplesEdit

; Hide the 1st person geometry
Game.ShowFirstPersonGeometry(false)


; Show the 1st person geometry
Game.ShowFirstPersonGeometry()

NotesEdit

  • The game will crash if this function is called while the player is transformed into a werewolf.

See AlsoEdit