There is any way to render one view to a bitmap using Away3D 4?
Thanks!
render to a bitmapSoftware: Away3D 4.x |
||
louis87, Jr. Member
Posted: 04 November 2011 11:21 AM Total Posts: 46 There is any way to render one view to a bitmap using Away3D 4? Thanks! |
||
theMightyAtom, Sr. Member
Posted: 07 November 2011 07:56 PM Total Posts: 669 [ # 1 ]
var bmd:BitmapData = new BitmapData(_view.width, _view.height, false, 0x00); This will place the content of the 3D window into the bitmapData, bmd. Good Luck! |
||
|