Packageorg.goasap.interfaces
Interfacepublic interface IUpdatable
SubinterfacesIManageable
ImplementorsGoItem, OnConditionTrue, OnDurationComplete

Makes any object compatible with GoEngine.



Public Properties
 PropertyDefined by
  pulseInterval : int
[read-only] Defines the pulse on which update is called.
IUpdatable
Public Methods
 MethodDefined by
  
update(currentTime:Number):void
Perform updates on a pulse.
IUpdatable
Property detail
pulseIntervalproperty
pulseInterval:int  [read-only]

Defines the pulse on which update is called.

Implementation
    public function get pulseInterval():int
Method detail
update()method
public function update(currentTime:Number):void

Perform updates on a pulse.

Parameters
currentTime:Number — A clock time that should be used instead of getTimer in performing update calculations. (The value is usually not more than a couple milliseconds different than getTimer but using it tightly syncs all items in the timer group and can make a perceptible difference.)