>From the docs it appears that in Away3DLite that Object3D has no .visible property? Is this correct? The following code does not hide the primitive for me in Away3DLite;
-- var sphere:Sphere = new Sphere(null, 900, 10, 10); sphere.visible = false; scene.addChild(sphere); view.render(); -- Am I missing something OR is that correct? I'm still very new at this. This omission of core display object functionality had me scratching my head... If this is the case, do folks use addChild / removeChild for memory management?