AS3:截取3D对象的屏幕截图

时间:2013-04-04 09:35:55

标签: actionscript-3 3d

我想截取一个3d对象的截图, 我尝试了以下方法:

var screenshot:BitmapData = new BitmapData(ViewerWidth, ViewerHeight);
screenshot.draw(Viewer3D); 
var imageTaken:Bitmap = new Bitmap(screenshot); 
addChild(imageTaken);

但它不适用于3d对象!

我该怎么做或如何将3D对象绘制到位图数据? 感谢。

0 个答案:

没有答案