Home
last modified time | relevance | path

Searched refs:tween (Results 1 – 5 of 5) sorted by relevance

/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
DTween.java208 Tween tween = pool.get(); in to() local
209 tween.setup(target, tweenType, duration); in to()
210 tween.ease(Quad.INOUT); in to()
211 tween.path(TweenPaths.catmullRom); in to()
212 return tween; in to()
246 Tween tween = pool.get(); in from() local
247 tween.setup(target, tweenType, duration); in from()
248 tween.ease(Quad.INOUT); in from()
249 tween.path(TweenPaths.catmullRom); in from()
250 tween.isFrom = true; in from()
[all …]
DTimeline.java143 public Timeline push(Tween tween) { in push() argument
145 current.children.add(tween); in push()
/external/universal-tween-engine/
DREADME.md1 ![](http://www.aurelienribon.com/blog/wp-content/uploads/2012/05/tween-engine-big-logo.jpg)
6 …op application](http://code.google.com/p/java-universal-tween-engine/downloads/detail?name=tween-e…
7 …* [WebGL html5 page](http://www.aurelienribon.com/universal-tween-engine/gwt/demo.html) (requires …
98 …* Tweens can act on more than one value at a time, so a single tween can change the whole position…
DAndroid.mk23 LOCAL_MODULE := universal-tween-engine
/external/universal-tween-engine/java/applets/src/aurelienribon/tweenengine/applets/
DTweenApplet.java168 Tween tween = Tween.to(vialSprite, SpriteAccessor.POSITION_XY, duration)
172 if (easing != null) tween.ease(easing);
173 if (isYoyo) tween.repeatYoyo(rptCnt, rptDelay);
174 else tween.repeat(rptCnt, rptDelay);
176 tween.start(tweenManager);