Packagenet.flashpunk.tweens.motion
Classpublic class LinearMotion
InheritanceLinearMotion Inheritance Motion Inheritance Tween Inheritance Object

Determines motion along a line, from one point to another.



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] Length of the current line of movement.
LinearMotion
 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
  
LinearMotion(complete:Function = null, type:uint = 0)
Constructor.
LinearMotion
 Inherited
cancel():void
Immediately stops the Tween and removes it from its Tweener without calling the complete callback.
Tween
  
setMotion(fromX:Number, fromY:Number, toX:Number, toY:Number, duration:Number, ease:Function = null):void
Starts moving along a line.
LinearMotion
  
setMotionSpeed(fromX:Number, fromY:Number, toX:Number, toY:Number, speed:Number, ease:Function = null):void
Starts moving along a line at the speed.
LinearMotion
 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]

Length of the current line of movement.


Implementation
    public function get distance():Number
Constructor Detail
LinearMotion()Constructor
public function LinearMotion(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, toX:Number, toY:Number, duration:Number, ease:Function = null):void

Starts moving along a line.

Parameters

fromX:Number — X start.
 
fromY:Number — Y start.
 
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, toX:Number, toY:Number, speed:Number, ease:Function = null):void

Starts moving along a line at the speed.

Parameters

fromX:Number — X start.
 
fromY:Number — Y start.
 
toX:Number — X finish.
 
toY:Number — Y finish.
 
speed:Number — Speed of the movement.
 
ease:Function (default = null) — Optional easer function.