I think it may be a bug in away4 alpha
Whenever I add a child to the stage, then remove it, then try to add it 
again, it doesn't work.
It's the same behavior for both adding to Scene3D and ObjectContainer3D.

numChildren property gets updated properly:

// numChildren: 3
_view.scene.addChild(_ctr);
// numChildren: 4
_view.scene.removeChild(_ctr);
// numChildren: 3
_view.scene.addChild(_ctr); // fails
// numChildren: 4

It can't be reproduced in one frame, needs to get rendered to produce the 
effect.

And since I'm already here, one small question:
Is there any way to draw 3d layer into a bitmap? I'm basically looking for a 
way to take a screenshot.

Thanks
Marpi

Reply via email to