Browse Source

Blender Exporter: I don't think parsing the groups is needed. It exports the objects twice (or more) otherwise.

Mr.doob 12 years ago
parent
commit
6c7be88141

+ 0 - 5
utils/exporters/blender/2.65/scripts/addons/io_mesh_threejs/export_threejs.py

@@ -2242,11 +2242,6 @@ def export_scene(scene, filepath, flipyz, option_colors, option_lights, option_c
     for obj in sceneobjects:
       objects.append(obj)
 
-    # get linked group objcts
-    for group in bpy.data.groups:
-       for object in group.objects:
-          objects.append(object)
-
     scene_text = ""
     data = {
     "scene"        : scene,