Hello!
I have a problem. After Upgrade to Away3d 4.0.1 Alpha, I found that the option has been removed swapBackBuffer, who was in the class RenderBase, and instead added clearOnRender.
This resulted in a failure to make a screenshot scene Away3d, instead preserved white screen.
ClearOnRender parameter is kept private and access it impossible. I changed the scope of the source code on the public, then the option is available, but it did not correct the problem with the white screen.
The code I’ve used before:
var bd : BitmapData = new BitmapData( this.width, this.height );
view.renderer.swapBackBuffer = false;
view.render();
bd.draw( AppFacade.main.view.stage );
view.renderer.queueSnapshot(bd);
view.renderer.swapBackBuffer = false;
Tell me how to fix the problem with the white screen?