From c7be9834895821678616edbc78d54ea8006d096e Mon Sep 17 00:00:00 2001 From: Andreas Plesch Date: Mon, 27 Dec 2021 15:41:38 +0100 Subject: 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 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 -- cgit v1.2.3