road0001 / tweener

Automatically exported from code.google.com/p/tweener
0 stars 0 forks source link

//"easeoutback" #39

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Hi is is minor bug,but when you use easeInBack, easeOutBack, easeInOutBack,
easeOutInBack,easeInBounce...I did not test every transitions it gives you 
error:
1120: Access of undefined property easeOutInBack.

but when you write it like "easeoutback" is OK. Maybe samo const value have
to be change.

10x for best classes!!!!

Original issue reported on code.google.com by Dreamwor...@gmail.com on 12 Apr 2008 at 11:58

GoogleCodeExporter commented 8 years ago
I mean when you use it in
Tweener.addTween(this, { time:0.6, scaleX:1, scaleY:1, alpha:1, x:nowX, y:nowY,
transition:easeOutInBack} );

Original comment by Dreamwor...@gmail.com on 12 Apr 2008 at 11:59

GoogleCodeExporter commented 8 years ago
You have to write it in quotes.

Tweener.addTween(this, { time:0.6, scaleX:1, scaleY:1, alpha:1, x:nowX, y:nowY,
transition:"easeOutInBack"} );

Or use the Equation properties if you imported it.

Tweener.addTween(this, { time:0.6, scaleX:1, scaleY:1, alpha:1, x:nowX, y:nowY,
transition:Equations.easeOutInBack} );

Original comment by zisfor...@gmail.com on 14 Apr 2008 at 3:27

GoogleCodeExporter commented 8 years ago

Original comment by zisfor...@gmail.com on 18 Apr 2008 at 2:42