Composite.java
.. .. @@ -286,6 +286,8 @@ 286 286 for (int i = 0; i < Children().size(); i++) 287 287 { 288 288 Object3D obj = (Object3D) Children().reserve(i); 289 + if (obj == null)290 + continue;289 291 compo.addChild(obj.copyExpand()); 290 292 Children().release(i); 291 293 }