Adds list objects as child of this object.
objects
Object3D addAll(List<Object3D> objects) { for (int i = 0; i < objects.length; i++) { add(objects[i]); } return this; }