I am looking BitmapViewport3D for rendering to a texture, and I am wondering if there is a way to render to a movie or film strip for later viewing. Anything like that built into PaperVision?
A:
import org.papervision3d.materials.MovieAssetMaterial;
var material:MovieAssetMaterial = new MovieAssetMaterial("material",false,true);
plane = new Plane(material,500,500); scene.addChild(plane);
"material" is the linkage ID from the asset in the library that you want to apply as the material.
antpaw
2009-12-16 19:27:51
Hmm, I don't think this answers my question. This seems to be how to use a movie as a texture. That is not the part I am confused about. I want to know how to render the whole scene into a movie clip, so I can play it back with out re-renderering. Let me know if I am missing something.
Jonathan Fischoff
2009-12-16 20:46:31
Wait, you want to record?
Tegeril
2009-12-17 23:56:34
i guess so too, but i don't think its possible.
antpaw
2009-12-18 09:11:33