SetRestrained - Actor
Revision as of 15:27, 18 October 2011 by imported>Rhavlovick (1 revision: Clobber re-import by Henning)
Member of: Actor Script
Flags this actor as restrained or not.
Syntax
Function SetRestrained(bool abRestrained = true) native
Parameters
- abRestrained: Whether to set or clear the actor's restrained status.
- Default: True
Return Value
None.
Examples
; Set Prisoner to restrained
Prisoner.SetRestrained()
; Clear Prisoner's restrained status
Prisoner.SetRestrained(false)