[Bf-extensions-cvs] [1679f2fd] master: Fix T94122: Export to X3D Fails.

Andreas Plesch noreply at git.blender.org
Mon Dec 27 15:44:20 CET 2021


Commit: 1679f2fdbb1373a255b98b69c6dc2f8a90e7170a
Author: Andreas Plesch
Date:   Mon Dec 27 15:41:38 2021 +0100
Branches: master
https://developer.blender.org/rBA1679f2fdbb1373a255b98b69c6dc2f8a90e7170a

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