freem-trg / eaze-tween

Automatically exported from code.google.com/p/eaze-tween
0 stars 0 forks source link

Easing not working with delay #23

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Create a tween eaze(this)
                .from(1, {y: -550})
                .delay(0.4)
                .easing(Bounce.easeOut)
2. Create another tween with a different order
eaze(this)
                .from(1, {y: -550})
                .easing(Bounce.easeOut)
                .delay(0.4)

What is the expected output? What do you see instead?
Both tweens to use the easing function, however the first one does not use the 
easing function

What version of the product are you using? On what operating system?
RC2-r84, Mac OSX 1.6

Please provide any additional information below.

I suspect it's because the delay is used as an endpoint for tween chaining, but 
this is a bit unclear, or not documented

Original issue reported on code.google.com by ben.beau...@mindshapes.com on 21 Oct 2011 at 10:36

GoogleCodeExporter commented 9 years ago
As stated in the documention, a .delay is a tween itself, and not a tween 
property.

Original comment by philippe...@gmail.com on 21 Oct 2011 at 11:20