SetHeadTracking - Actor
Revision as of 18:54, 21 February 2011 by imported>Jlundin (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…')
Member of: Actor Script
Turns on and off this actor's head tracking.
SyntaxEdit
Function SetHeadTracking(bool abEnable = true) native
ParametersEdit
- abEnable: Whether to enable or disable head tracking
- Default: True
Return ValueEdit
None.
ExamplesEdit
; Tell the lying guy to stop looking at me
LyingGuy.SetHeadTracking(false)
; Tell the truthful guy to look at me
TruthfulGuy.SetHeadTracking()