[Bf-extensions-cvs] [c7be9834] blender-v3.0-release: Fix T94122: Export to X3D Fails.

Andreas Plesch noreply at git.blender.org
Tue Jan 11 10:45:44 CET 2022


Commit: c7be9834895821678616edbc78d54ea8006d096e
Author: Andreas Plesch
Date:   Mon Dec 27 15:41:38 2021 +0100
Branches: blender-v3.0-release
https://developer.blender.org/rBAc7be9834895821678616edbc78d54ea8006d096e

Fix T94122: Export to X3D Fails.

Fixes call to `create_derived_objects()` in x3d export.

rBa82c9e1e405c84b9 introduced a change in the signature and return value of
the `create_derived_objects()` utility. This change lead to failure of the x3d
export addon.

Reviewed By: mont29

Differential Revision: https://developer.blender.org/D13667

===================================================================

M	io_scene_x3d/export_x3d.py

===================================================================

diff --git a/io_scene_x3d/export_x3d.py b/io_scene_x3d/export_x3d.py
index 746567f8..6a4daf91 100644
--- a/io_scene_x3d/export_x3d.py
+++ b/io_scene_x3d/export_x3d.py
@@ -1378,7 +1378,8 @@ def export(file,
     def export_object(ident, obj_main_parent, obj_main, obj_children):
         matrix_fallback = mathutils.Matrix()
         world = scene.world
-        free, derived = create_derived_objects(scene, obj_main)
+        derived_dict = create_derived_objects(depsgraph, [obj_main])
+        derived = derived_dict.get(obj_main)
 
         if use_hierarchy:
             obj_main_matrix_world = obj_main.matrix_world



More information about the Bf-extensions-cvs mailing list