class Delay: public Transition
Implements a delay that behaves like a regular atomic transition. Atomic transitions can then be ordered temporally by creating delay-transition sequences. The delay time in milliseconds is converted into steps according to UPDATE_RATE_IN_MS.
Inherits from Transition.
void Update()
Updates the transition by idling in this step. Inherited from Transition.
bool Complete()
Checks if the transition is completed. Inherited from Transition.
A boolean value indicating if the transition is completed.
Implements a delay that behaves like a regular atomic transition.
class Delay: public Transition
Initializes the object.
Delay( int iDelayInMs )
Releases all allocated resources.
~Delay()
Updates the transition by idling in this step.
void Update()
Checks if the transition is completed.
bool Complete()
Abstract class that implements the skeleton of a transition.
class Transition