From 43477e00ce44cf561a38365d35c769010392c102 Mon Sep 17 00:00:00 2001 From: Julien Duroure Date: Sun, 13 Mar 2022 11:28:02 +0100 Subject: glTF exporter: add filter hook for user extensions. You can change filter tag to change default filtering --- io_scene_gltf2/__init__.py | 2 +- io_scene_gltf2/blender/exp/gltf2_blender_gather_tree.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py index a9bf80b5..369090e5 100755 --- a/io_scene_gltf2/__init__.py +++ b/io_scene_gltf2/__init__.py @@ -4,7 +4,7 @@ bl_info = { 'name': 'glTF 2.0 format', 'author': 'Julien Duroure, Scurest, Norbert Nopper, Urs Hanselmann, Moritz Becher, Benjamin Schmithüsen, Jim Eckerlein, and many external contributors', - "version": (3, 2, 11), + "version": (3, 2, 12), 'blender': (3, 1, 0), 'location': 'File > Import-Export', 'description': 'Import-Export as glTF 2.0', diff --git a/io_scene_gltf2/blender/exp/gltf2_blender_gather_tree.py b/io_scene_gltf2/blender/exp/gltf2_blender_gather_tree.py index 549c4ed0..643cbea0 100644 --- a/io_scene_gltf2/blender/exp/gltf2_blender_gather_tree.py +++ b/io_scene_gltf2/blender/exp/gltf2_blender_gather_tree.py @@ -5,6 +5,7 @@ import bpy import uuid from . import gltf2_blender_export_keys +from io_scene_gltf2.io.exp.gltf2_io_user_extensions import export_user_extensions from mathutils import Quaternion, Matrix class VExportNode: @@ -255,6 +256,7 @@ class VExportTree: def filter(self): self.filter_tag() + export_user_extensions('gather_tree_filter_tag_hook', self.export_settings, self) self.filter_perform() -- cgit v1.2.3