SetEssential - ActorBase
Member of: ActorBase Script
Sets or clears this actor's essential flag. If the actor is protected and you set the essential flag, the protected flag will be removed.
SyntaxEdit
Function SetEssential(bool abEssential = true) native
ParametersEdit
- abEssential: Whether to set or clear this actor's essential flag.
- Default: True
Return ValueEdit
None.
ExamplesEdit
; Flag the Emperor as essential
EmperorBaseActorProperty.SetEssential()
; Flag RedShirt as non-essential
RedShirtBaseActorProperty.SetEssential(false)