From 1679f2fdbb1373a255b98b69c6dc2f8a90e7170a Mon Sep 17 00:00:00 2001
From: Andreas Plesch <andreasplesch>
Date: Mon, 27 Dec 2021 15:41:38 +0100
Subject: [PATCH] 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
---
 io_scene_x3d/export_x3d.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/io_scene_x3d/export_x3d.py b/io_scene_x3d/export_x3d.py
index 746567f83..6a4daf910 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
-- 
GitLab