TweenX Documentation
Back | Index
class tweenx909.TweenX
extends tweenx909.advanced.CommandX
@author shohei909
var backward(default,null) : Bool
var currentTime(accessor,null) : Float
var id(default,null) : Int
var playing(default,null) : Bool
var singleTime(accessor,null) : Float
var timeScale(default,accessor) : Float
var totalTime(accessor,null) : Float
function addEventListener(type : EventX, listener : TweenX -> Void) : TweenX
function autoPlay(?value : Bool) : TweenX
function delay(value : Float) : TweenX
function ease(value : Float -> Float) : TweenX
function goto(?time : Float, ?andPlay : Bool) : TweenX
function interval(value : Float) : TweenX
function onDelay(handler : Void -> Void) : TweenX
function onFinish(handler : Void -> Void) : TweenX
function onFoot(handler : Void -> Void) : TweenX
function onHead(handler : Void -> Void) : TweenX
function onInterval(handler : Void -> Void) : TweenX
function onPlay(handler : Void -> Void) : TweenX
function onRepeat(handler : Void -> Void) : TweenX
function onRest(handler : Void -> Void) : TweenX
function onStop(handler : Void -> Void) : TweenX
function onUpdate(handler : Void -> Void) : TweenX
function play() : TweenX
function removeEventListener(type : EventX, listener : TweenX -> Void) : TweenX
function repeat(?value : Int) : TweenX
function rest(value : Float) : TweenX
function setTimeScale(?value : Float) : TweenX
function skip(?delay : Float) : TweenX
function stop() : TweenX
function time(value : Float) : TweenX
function update(time : Float) : TweenX
function yoyo(?value : Bool) : TweenX
function zigzag(?value : Bool) : TweenX
static inline var DEFAULT_AUTO_PLAY : Bool
static inline var DEFAULT_DELAY : Float
static inline var DEFAULT_INTERVAL : Int
static inline var DEFAULT_REPEAT : Int
static inline var DEFAULT_TIME : Float
static inline var DEFAULT_YOYO : Bool
static inline var DEFAULT_ZIGZAG : Bool
static var defaultAutoPlay : Bool
static var defaultDelay : Float
static var defaultInterval : Float
static var defaultRepeat : Int
static var defaultTime : Float
static var defaultYoyo : Bool
static var defaultZigZag : Bool
static var idCounter : Int
static var rules(accessor,null) : Iterable<tweenx909.rule.RuleX<Dynamic, Dynamic>>
static var topLevelTimeScale : Float
static var tweens(accessor,null) : Iterable<TweenX>
static var updateMode(default,accessor) : tweenx909.advanced.UpdateModeX
static var DEFAULT_EASE(default,null) : Float -> Float
static function addRule(rule : tweenx909.rule.RuleX<Dynamic, Dynamic>) : Void
static function addRules(rules : Iterable<tweenx909.rule.RuleX<Dynamic, Dynamic>>) : Void
static function clear() : Void
static var defaultEase : Float -> Float
static function dumpDefaults() : tweenx909.advanced.DefaultsX
static function from<T>(target : T, ?to : Dynamic, ?delay : Float, ?repeat : Int, ?interval : Float, ?autoPlay : Bool, ?posInfos : haxe.PosInfos) : tweenx909.advanced.StandardTweenX<T>
static function func(func : Void -> Void, ?delay : Float, ?repeat : Int, ?interval : Float, ?posInfos : haxe.PosInfos) : TweenX
static function gotoAll(tweens : Iterable<TweenX>, ?time : Float, ?andPlay : Bool) : Void
static function initDefaults() : Void
static function lag(tweens : Iterable<tweenx909.advanced.CommandX>, ?delay : Float, ?defaults : tweenx909.advanced.DefaultsX, ?posInfos : haxe.PosInfos) : TweenX
static function manualUpdate(time : Float) : Void
static function parallel(tweens : Iterable<tweenx909.advanced.CommandX>, ?defaults : tweenx909.advanced.DefaultsX, ?posInfos : haxe.PosInfos) : TweenX
static function playAll(tweens : Iterable<TweenX>) : Void
static function serial(tweens : Iterable<tweenx909.advanced.CommandX>, ?defaults : tweenx909.advanced.DefaultsX, ?posInfos : haxe.PosInfos) : TweenX
static function setDefaults(defaults : tweenx909.advanced.DefaultsX) : Void
static function stopAll(tweens : Iterable<TweenX>) : Void
static function to<T>(target : T, ?to : Dynamic, ?time : Float, ?ease : Float -> Float, ?delay : Float, ?repeat : Int, ?yoyo : Bool, ?zigzag : Bool, ?interval : Float, ?autoPlay : Bool, ?posInfos : haxe.PosInfos) : tweenx909.advanced.StandardTweenX<T>
static function tweenFunc(func : Dynamic, from : Iterable<Dynamic>, to : Iterable<Dynamic>, ?time : Float, ?ease : Float -> Float, ?delay : Float, ?repeat : Int, ?yoyo : Bool, ?zigzag : Bool, ?interval : Float, ?autoPlay : Bool, ?posInfos : haxe.PosInfos) : TweenX
static function tweenFunc1(func : Float -> Void, from1 : Float, to1 : Float, ?time : Float, ?ease : Float -> Float, ?delay : Float, ?repeat : Int, ?yoyo : Bool, ?zigzag : Bool, ?interval : Float, ?autoPlay : Bool, ?posInfos : haxe.PosInfos) : TweenX
static function tweenFunc2(func : Float -> Float -> Void, from1 : Float, from2 : Float, to1 : Float, to2 : Float, ?time : Float, ?ease : Float -> Float, ?delay : Float, ?repeat : Int, ?yoyo : Bool, ?zigzag : Bool, ?interval : Float, ?autoPlay : Bool, ?posInfos : haxe.PosInfos) : TweenX
static function tweenFunc3(func : Float -> Float -> Float -> Void, from1 : Float, from2 : Float, from3 : Float, to1 : Float, to2 : Float, to3 : Float, ?time : Float, ?ease : Float -> Float, ?delay : Float, ?repeat : Int, ?yoyo : Bool, ?zigzag : Bool, ?interval : Float, ?autoPlay : Bool, ?posInfos : haxe.PosInfos) : TweenX
static function tweenFunc4(func : Float -> Float -> Float -> Float -> Void, from1 : Float, from2 : Float, from3 : Float, from4 : Float, to1 : Float, to2 : Float, to3 : Float, to4 : Float, ?time : Float, ?ease : Float -> Float, ?delay : Float, ?repeat : Int, ?yoyo : Bool, ?zigzag : Bool, ?interval : Float, ?autoPlay : Bool, ?posInfos : haxe.PosInfos) : TweenX
static function updateAll(tweens : Iterable<TweenX>, time : Float) : Void
static function wait(?delay : Float, ?posInfos : haxe.PosInfos) : tweenx909.advanced.CommandX
Back | Index