Link to home
Start Free TrialLog in
Avatar of JPardoe
JPardoe

asked on

Which is faster - Actionscript Tween or in-flash animation?

I am working on a new Flash game, and have currently animated the 'peeps' walking using the actionscript Tween class. The movements are stored in an array and executed one after the other.

However, performance is a big issue in this game, and I was wondering if it would be less CPU intensive if I created the animations in flash and then did a gotoAndPlay('walk') instead?
Avatar of asaivan
asaivan
Flag of United States of America image

Not that I'm aware of.  Things on the timeline just compile down to binary anyway, same as AS.  My thought is, that it's less intensive overall to use ActionScript.  But it may just be the same.
ASKER CERTIFIED SOLUTION
Avatar of trypt
trypt
Flag of Taiwan, Province of China image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of JPardoe
JPardoe

ASKER

Many thanks for your input! That info was very useful!