SetHeadTracking - Actor

From the Fallout4 CreationKit Wiki
Revision as of 19:54, 21 February 2011 by imported>Plplecuyer (Created page with 'Category:Scripting Category:Papyrus '''Member of:''' Actor Script Turns on and off this actor's head tracking. == Syntax == <source lang="papyrus"> Function SetHead…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Actor Script

Turns on and off this actor's head tracking.

Syntax[edit | edit source]

Function SetHeadTracking(bool abEnable = true) native

Parameters[edit | edit source]

  • abEnable: Whether to enable or disable head tracking
    • Default: True

Return Value[edit | edit source]

None.

Examples[edit | edit source]

; Tell the lying guy to stop looking at me
LyingGuy.SetHeadTracking(false)


; Tell the truthful guy to look at me
TruthfulGuy.SetHeadTracking()

See Also[edit | edit source]