Package | com.boostworthy.animation.management.types |
Class | public class MoveAnimation |
Inheritance | MoveAnimation ![]() |
See also
Property | Defined by | ||
---|---|---|---|
m_fncTransition : Function
Holds a reference to the transition function being used for this animation.
| MoveAnimation | ||
m_nChangeValueX : Number
Holds the change in value for the 'x' property.
| MoveAnimation | ||
m_nChangeValueY : Number
Holds the change in value for the 'y' property.
| MoveAnimation | ||
m_nDuration : Number
Holds the duration of the animation in milliseconds.
| MoveAnimation | ||
m_nStartTime : Number
Holds the starting time of the animation in milliseconds.
| MoveAnimation | ||
m_nStartValueX : Number
Holds the starting value for the 'x' property.
| MoveAnimation | ||
m_nStartValueY : Number
Holds the starting value for the 'y' property.
| MoveAnimation | ||
m_nTargetValueX : Number
Holds the target value for the 'x' property.
| MoveAnimation | ||
m_nTargetValueY : Number
Holds the target value for the 'y' property.
| MoveAnimation | ||
![]() | m_objTarget : Object
Holds a reference to the target object being animated.
| Animation | |
![]() | m_strProperty : String
Holds the property of the target object that is being animated.
| Animation | |
![]() | m_uRenderMethod : uint
Holds the method being used to render this animation.
| Animation |
Method | Defined by | ||
---|---|---|---|
MoveAnimation(objTarget:DisplayObject, nTargetValueX:Number, nTargetValueY:Number, nDuration:Number, strTransition:String, uRenderMethod:uint)
Constructor.
| MoveAnimation | ||
render():Boolean
Renders the animation.
| MoveAnimation |
Constant | Defined by | ||
---|---|---|---|
PROPERTY : String = "x, y" [static]
Meta data for representing the property being animated.
| MoveAnimation |
m_fncTransition | property |
protected var m_fncTransition:Function
Holds a reference to the transition function being used for this animation.
m_nChangeValueX | property |
protected var m_nChangeValueX:Number
Holds the change in value for the 'x' property.
m_nChangeValueY | property |
protected var m_nChangeValueY:Number
Holds the change in value for the 'y' property.
m_nDuration | property |
protected var m_nDuration:Number
Holds the duration of the animation in milliseconds.
m_nStartTime | property |
protected var m_nStartTime:Number
Holds the starting time of the animation in milliseconds.
m_nStartValueX | property |
protected var m_nStartValueX:Number
Holds the starting value for the 'x' property.
m_nStartValueY | property |
protected var m_nStartValueY:Number
Holds the starting value for the 'y' property.
m_nTargetValueX | property |
protected var m_nTargetValueX:Number
Holds the target value for the 'x' property.
m_nTargetValueY | property |
protected var m_nTargetValueY:Number
Holds the target value for the 'y' property.
MoveAnimation | () | constructor |
public function MoveAnimation(objTarget:DisplayObject, nTargetValueX:Number, nTargetValueY:Number, nDuration:Number, strTransition:String, uRenderMethod:uint)
Constructor.
ParametersobjTarget:DisplayObject — The target object being animated.
|
|
nTargetValueX:Number — The target value for the 'x' property of the target object.
|
|
nTargetValueY:Number — The target value for the 'y' property of the target object.
|
|
nDuration:Number — The duration of the animation in milliseconds.
|
|
strTransition:String — The transition to be used for the animation.
|
|
uRenderMethod:uint — The method being used to render this animation.
|
See also
render | () | method |
public override function render():Boolean
Renders the animation.
ReturnsBoolean — A boolean value that is 'true' if the animation was updated successfully, 'false' if it was not.
|
PROPERTY | constant |
public static const PROPERTY:String = "x, y"
Meta data for representing the property being animated.