IsInKillMove - Actor
Member of: Actor Script
Is this actor currently in a kill move?
SyntaxEdit
bool Function IsInKillMove() native
ParametersEdit
None.
Return ValueEdit
Whether this actor is currently in a kill move or not.
ExamplesEdit
; Is Bandit currently in a kill move?
if Bandit.IsInKillMove()
Debug.Trace("The bandit is in a kill move")
endIf