actionscript 3 - Tween Multiple object turn by turn in tweenlite -



have 5*5 movie clips .
want tween them slighter delay , turn turn.
best way achieve ?
think creating multiple tween may cause performance right?
confused achieve in more optimised way.
appreciated.

usually i'd this:

for (var i:int = 0; < 5; i++) {     tweenlite.to(object, duration, {delay: duration * i}); } 

it create tweens @ once, won't effect performance since active tweens noticeable.

i did on 200 objects , had no lag @ all.
you might want pool tweenlite object on mobile platforms, again - won't see difference 800+ objects.


Comments

Popular posts from this blog

c++ - Linked List error when inserting for the last time -

java - activate/deactivate sonar maven plugin by profile? -

java - What is the difference between String. and String.this. ? -