IsActionComplete - Scene
Member of: Scene Script
Checks to see if the specified action in this scene is completed.
SyntaxEdit
bool Function IsActionComplete(int aiActionID) native
ParametersEdit
- aiActionID: The ID of the action to check.
Return ValueEdit
Whether the specified action is completed or not.
ExamplesEdit
; Has action 20 finished?
if (MySceneProperty.IsActionComplete(20))
Debug.Trace("Finished action 20 in my scene")
endIf