IsEssential - Actor
Jump to navigation
Jump to search
Member of: Actor Script
Is this actor currently essential?
Syntax[edit | edit source]
bool Function IsEssential() native
Parameters[edit | edit source]
None.
Return Value[edit | edit source]
If the actor is currently essential.
Examples[edit | edit source]
; Is the important person essential?
if (ImportantPerson.IsEssential())
Debug.Trace("The important person is essential")
endIf