From a417dd56dc2235b76c93e5d1912132087cb2d6f0 Mon Sep 17 00:00:00 2001 From: Spiderguy-F Date: Tue, 2 Jul 2024 16:33:01 +0200 Subject: [PATCH] Update addons/io_hubs_addon/io/utils.py Requested Changes Co-authored-by: Exairnous --- addons/io_hubs_addon/io/utils.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/addons/io_hubs_addon/io/utils.py b/addons/io_hubs_addon/io/utils.py index 5956b7dd..c5b62c84 100644 --- a/addons/io_hubs_addon/io/utils.py +++ b/addons/io_hubs_addon/io/utils.py @@ -376,9 +376,10 @@ def gather_lightmap_texture_info(blender_material, export_settings): tex_transform, tex_coord = gltf2_blender_gather_texture_info.__gather_texture_transform_and_tex_coord( socket, export_settings) else: - print("processing __gather_texture_transform_and_tex_coord") + socket = gltf2_blender_search_node_tree.NodeSocket(texture_socket, blender_material) tex_transform, tex_coord = gltf2_blender_gather_texture_info.__gather_texture_transform_and_tex_coord( - texture_socket, export_settings) + socket, export_settings) + texture_info = gltf2_io.TextureInfo( extensions=gltf2_blender_gather_texture_info.__gather_extensions( tex_transform, export_settings),