elsassph / eaze-tween

Automatically exported from http://code.google.com/p/eaze-tween - see also active fork in development: https://github.com/mayakwd/as3-eaze-tween
1 stars 0 forks source link

Another Delay Bug #17

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Take a look at this piece of code:
eaze(mc).delay(0).to(...);

It seems that it will delay forever - it won't tween."delay(0)"should mean
no delay.

The actual code I wrote is:
eaze(mc[i]).to(0.1)
.colorMatrix(-1)
.delay(tween[1] * (i+1))
.to(tween[0])
.colorMatrix(0, 0, 0);

It's in a for-loop.When i==0,mc[0] will turn into all black,and never turn
to white.

Also,tweening color is kinda wired for me.
This line:
eaze(mc[i]).to(0.1).colorMatrix(-1)
I was trying to make mc[i] black immediately,But if I use this:
eaze(mc[i]).to(0).colorMatrix(-1)
it wont work.
And can I code like this:
apply().colorMatrix()
or it would be nice if I can do this:
to(1,colorMatrix:[0,0,0])

Original issue reported on code.google.com by LiangM...@gmail.com on 14 Apr 2010 at 8:42

GoogleCodeExporter commented 9 years ago
Delay issue was fixed previously.
Now fixed: eaze(mc[i]).to(0).colorMatrix(-1)

Original comment by philippe...@gmail.com on 9 May 2010 at 6:09