IsActionComplete - Scene

Revision as of 16:27, 18 October 2011 by imported>Rhavlovick (1 revision: Clobber re-import by Henning)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

See AlsoEdit