;

PDA

Click to See Complete Forum and Search --> : draw() vs. clips on Stage


XadormadiconL
12-11-2005, 10:50 AM
Two scenarios:

scenario one:
There are 30 movieClips on stage acting out some time-based scripted 3d.


scenario two:

There's one movieClip on stage, and every frame, a for..loop applies a matrix to it 30 times, and a BitmapData draws() the result....

Which scenario is recommended/more efficient?

McUsher
12-11-2005, 11:16 AM
We had a similar discussion lately..
http://www.flashkit.com/board/showthread.php?t=659163

I would highly guess the matrix Transform on the BitmapData will be much faster.

Sybersnake
12-11-2005, 11:41 AM
pre drawn frames will always be faster than frames generated on the fly.. until AS3, still i don't know about the improvements in the drawing abilities.

XadormadiconL
12-11-2005, 12:39 PM
yes i'm guessing the same thing too.