| Package | org.goasap.managers |
| Class | public class LinearGoRepeater |
| Inheritance | LinearGoRepeater Repeater |
See also
| Property | Defined by | ||
|---|---|---|---|
![]() | currentCycle : uint
Current cycle starting at 0, which will continue to increase
up to
cycles or indefinitely if cycles is set to
Repeater.INFINITE (zero). | Repeater | |
![]() | cycles : uint
Number of times the Repeater will iterate, which can be set to
zero or Repeater.INFINITE for indefinite repeating.
| Repeater | |
| direction : int [read-only]
Current play direction depending on reverseOnCycle and currentCycle.
| LinearGoRepeater | ||
![]() | done : Boolean
True if cycles is not infinite and currentCycle has reached cycles.
| Repeater | |
| easingOnCycle : Function
Storage for optional secondary easing to use on reverse cycles.
| LinearGoRepeater | ||
| extraEasingParams : Array
Additional parameters to use with easingOnCycle if the function accepts more than four.
| LinearGoRepeater | ||
| reverseOnCycle : Boolean
Whether tween direction should reverse every other cycle.
| LinearGoRepeater | ||
| Method | Defined by | ||
|---|---|---|---|
|
LinearGoRepeater(cycles:uint = 1, reverseOnCycle:Boolean = true, easingOnCycle:Function = null, extraEasingParams:Array = null)
| LinearGoRepeater | ||
| direction | property |
direction:int [read-only]Current play direction depending on reverseOnCycle and currentCycle.
Implementation public function get direction():int
| easingOnCycle | property |
easingOnCycle:Function [read-write]Storage for optional secondary easing to use on reverse cycles.
Implementation public function get easingOnCycle():Function
public function set easingOnCycle(value:Function):void
| extraEasingParams | property |
extraEasingParams:Array [read-write]Additional parameters to use with easingOnCycle if the function accepts more than four.
Implementation public function get extraEasingParams():Array
public function set extraEasingParams(value:Array):void
| reverseOnCycle | property |
reverseOnCycle:Boolean [read-write]Whether tween direction should reverse every other cycle.
Implementation public function get reverseOnCycle():Boolean
public function set reverseOnCycle(value:Boolean):void
| LinearGoRepeater | () | constructor |
public function LinearGoRepeater(cycles:uint = 1, reverseOnCycle:Boolean = true, easingOnCycle:Function = null, extraEasingParams:Array = null)Parameters
cycles:uint (default = 1) — Number of times to play the LinearGo tween.
|
|
reverseOnCycle:Boolean (default = true) — Whether tween direction should reverse every other cycle.
|
|
easingOnCycle:Function (default = null) — Storage for optional secondary easing to use on reverse cycles.
|
|
extraEasingParams:Array (default = null) — Additional parameters to use with easingOnCycle if the function accepts more than four.
|