I am looking BitmapViewport3D for rendering to a texture, and I am won开发者_如何学运维dering if there is a way to render to a movie or film strip for later viewing. Anything like that built into PaperVision?
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.
There is a way to do this... someone made a really cool library called FilmStrip.
I haven't tried it yet myself, but essentially it outputs each frame to a jpeg and you can turn it into a movie with ffmpeg etc.
精彩评论