Packagenet.flashpunk.tweens.motion
Classpublic class QuadMotion
InheritanceQuadMotion Inheritance Motion Inheritance Tween Inheritance Object

Determines motion along a quadratic curve.



Public Properties
 PropertyDefined By
 Inheritedactive : Boolean
If the tween should update.
Tween
 Inheritedcomplete : Function
Tween completion callback.
Tween
 Inheriteddelay : Number = 0
Length of time to wait before starting this tween.
Tween
  distance : Number
[read-only] The distance of the entire curve.
QuadMotion
 Inheritedobject : Object
Target object for the tween.
Motion
 Inheritedpercent : Number
The completion percentage of the Tween.
Tween
 Inheritedscale : Number
[read-only] The current time scale of the Tween (after easer has been applied).
Tween
 Inheritedx : Number
Current x position of the Tween.
Motion
 Inheritedy : Number
Current y position of the Tween.
Motion
Protected Properties
 PropertyDefined By
 Inherited_object : Object
Motion
 Inherited_x : Number = 0
Motion
 Inherited_y : Number = 0
Motion
Public Methods
 MethodDefined By
  
QuadMotion(complete:Function = null, type:uint = 0)
Constructor.
QuadMotion
 Inherited
cancel():void
Immediately stops the Tween and removes it from its Tweener without calling the complete callback.
Tween
  
setMotion(fromX:Number, fromY:Number, controlX:Number, controlY:Number, toX:Number, toY:Number, duration:Number, ease:Function = null):void
Starts moving along the curve.
QuadMotion
  
setMotionSpeed(fromX:Number, fromY:Number, controlX:Number, controlY:Number, toX:Number, toY:Number, speed:Number, ease:Function = null):void
Starts moving along the curve at the speed.
QuadMotion
 Inherited
start():void
Starts the Tween, or restarts it if it's currently running.
Tween
 Inherited
update():void
Updates the Tween, called by World.
Tween
Public Constants
 ConstantDefined By
 InheritedLOOPING : uint = 1
[static] Looping Tween type, will restart immediately when it finishes.
Tween
 InheritedONESHOT : uint = 2
[static] Oneshot Tween type, will stop and remove itself from its core container when it finishes.
Tween
 InheritedPERSIST : uint = 0
[static] Persistent Tween type, will stop when it finishes.
Tween
Property Detail
distanceproperty
distance:Number  [read-only]

The distance of the entire curve.


Implementation
    public function get distance():Number
Constructor Detail
QuadMotion()Constructor
public function QuadMotion(complete:Function = null, type:uint = 0)

Constructor.

Parameters
complete:Function (default = null) — Optional completion callback.
 
type:uint (default = 0) — Tween type.
Method Detail
setMotion()method
public function setMotion(fromX:Number, fromY:Number, controlX:Number, controlY:Number, toX:Number, toY:Number, duration:Number, ease:Function = null):void

Starts moving along the curve.

Parameters

fromX:Number — X start.
 
fromY:Number — Y start.
 
controlX:Number — X control, used to determine the curve.
 
controlY:Number — Y control, used to determine the curve.
 
toX:Number — X finish.
 
toY:Number — Y finish.
 
duration:Number — Duration of the movement.
 
ease:Function (default = null) — Optional easer function.

setMotionSpeed()method 
public function setMotionSpeed(fromX:Number, fromY:Number, controlX:Number, controlY:Number, toX:Number, toY:Number, speed:Number, ease:Function = null):void

Starts moving along the curve at the speed.

Parameters

fromX:Number — X start.
 
fromY:Number — Y start.
 
controlX:Number — X control, used to determine the curve.
 
controlY:Number — Y control, used to determine the curve.
 
toX:Number — X finish.
 
toY:Number — Y finish.
 
speed:Number — Speed of the movement.
 
ease:Function (default = null) — Optional easer function.