IsActionComplete - Scene
Jump to navigation
Jump to search
Member of: Scene Script
Checks to see if the specified action in this scene is completed.
Syntax[edit | edit source]
bool Function IsActionComplete(int aiActionID) native
Parameters[edit | edit source]
- aiActionID: The ID of the action to check.
Return Value[edit | edit source]
Whether the specified action is completed or not.
Examples[edit | edit source]
; Has action 20 finished?
if (MySceneProperty.IsActionComplete(20))
Debug.Trace("Finished action 20 in my scene")
endIf