Resource:Creation Kit > SetPlayerControls - Actor
Member of: Resource:Creation Kit/Actor Script
Set the actor as being controlled (or not controlled) by the player's controls.
Syntax[edit]
Function SetPlayerControls(bool abControls) native
Parameters[edit]
- abControls: Whether this actor is controlled by the player's controls or not
Return Value[edit]
None.
Examples[edit]
; Control the puppet with the player's controls Puppet.SetPlayerControls(true)
