Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-10-11 15:22:59 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-10-11 15:22:59 +0300
commit874eebc2e5cf3b7c11adb431f0b4e42cf40bf663 (patch)
tree0aaa8f4d5cabdfb5f175c062d54141b87391cb50 /io_scene_x3d
parentbedcd9acba3e63e00c564a7f8edefa88e907c52f (diff)
Remove free_derived_objects import
This caused script_load_modules to fail, properly supporting duplicates is still needed.
Diffstat (limited to 'io_scene_x3d')
-rw-r--r--io_scene_x3d/export_x3d.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/io_scene_x3d/export_x3d.py b/io_scene_x3d/export_x3d.py
index 5ac7e557..746567f8 100644
--- a/io_scene_x3d/export_x3d.py
+++ b/io_scene_x3d/export_x3d.py
@@ -39,7 +39,7 @@ import os
import bpy
import mathutils
-from bpy_extras.io_utils import create_derived_objects, free_derived_objects
+from bpy_extras.io_utils import create_derived_objects
# h3d defines
@@ -1469,9 +1469,6 @@ def export(file,
#print "Info: Ignoring [%s], object type [%s] not handle yet" % (object.name,object.getType)
pass
- if free:
- free_derived_objects(obj_main)
-
# ---------------------------------------------------------------------
# write out children recursively
# ---------------------------------------------------------------------