Not yet rated

Problem

Because of many Tween tools default ease transition didn’t meet our needs so I create it.

Solution

I create a custom tween transition effect tools for any tween tools or other.

Detailed explanation

This is a custom tween ease transition effect,you can use it for your any tween tools.
When you need a ease effect but your tween tools didn't achieve the transition of you want,then you can use Easer Tools for it.
It's really very practical and convenient.

Features:

1.Fully customizable EASE effect
2.Support tween,tweener,tweenlite,tweenMax etc...

Use Method:

step 1.You just use Easer Tools set yourself custom ease effect for your tween.
step 2.copy the code for your project.

 

Here is a Examplete for your project:
--------------------------------------------------------------------------------------
import com.activetofocus.easer.Easer;
import caurina.transitions.Tweener;

var easerArr:Array = [{Nx:100,Ny:-100,Mx:0,My:0},{Mx:200,My:-200}];
// easerArr array for your custome Easer effect

Tweener.addTween(mc,{y:29, time:1, transition:Easer.getEaseFun(easerArr)});

//If you use tweenlite
//TweenLite.to(mc,1,{y:29,ease:Easer.getEaseFun(easerArr)});
--------------------------------------------------------------------------------------

< ---    Click Here Down All Assets --- >

source from : http://activetofocus.com/blog/easer-custom-ease-effect-for-tween-tools-47/


+
This work is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License. Permissions beyond the scope of this license, pertaining to the examples of code included within this work are available at Adobe.

Report abuse

Related recipes