OnEndState - ScriptObject
Member of: ScriptObject
Event called when the state the event is in about to be switched away from.
SyntaxEdit
Event OnEndState(string asNewState)
ParametersEdit
- asNewState: The state that the script will be switching to after this one ends.
ExampleEdit
State Running
Event OnEndState(string asNewState)
Debug.Trace("Leaving the running state and going to the " + asNewState+ " state!")
EndEvent
EndState