Skip to content
Snippets Groups Projects
Commit 18f9eae9 authored by Julien Duroure's avatar Julien Duroure
Browse files

Merge branch 'blender-v3.3-release'

parents 31d54b33 a24be978
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
bl_info = { bl_info = {
'name': 'glTF 2.0 format', 'name': 'glTF 2.0 format',
'author': 'Julien Duroure, Scurest, Norbert Nopper, Urs Hanselmann, Moritz Becher, Benjamin Schmithüsen, Jim Eckerlein, and many external contributors', 'author': 'Julien Duroure, Scurest, Norbert Nopper, Urs Hanselmann, Moritz Becher, Benjamin Schmithüsen, Jim Eckerlein, and many external contributors',
"version": (3, 4, 2), "version": (3, 4, 3),
'blender': (3, 3, 0), 'blender': (3, 3, 0),
'location': 'File > Import-Export', 'location': 'File > Import-Export',
'description': 'Import-Export as glTF 2.0', 'description': 'Import-Export as glTF 2.0',
......
...@@ -17,6 +17,7 @@ def create_gltf_ao_group(operator, group_name): ...@@ -17,6 +17,7 @@ def create_gltf_ao_group(operator, group_name):
class NODE_OT_GLTF_SETTINGS(bpy.types.Operator): class NODE_OT_GLTF_SETTINGS(bpy.types.Operator):
bl_idname = "node.gltf_settings_node_operator" bl_idname = "node.gltf_settings_node_operator"
bl_label = "glTF Settings" bl_label = "glTF Settings"
bl_description = "Add a node to the active tree for glTF export"
@classmethod @classmethod
...@@ -46,6 +47,7 @@ def add_gltf_settings_to_menu(self, context) : ...@@ -46,6 +47,7 @@ def add_gltf_settings_to_menu(self, context) :
class NODE_OT_GLTF_PBR_NON_CONVERTED_EXTENSIONS(bpy.types.Operator): class NODE_OT_GLTF_PBR_NON_CONVERTED_EXTENSIONS(bpy.types.Operator):
bl_idname = "node.gltf_pbr_non_converted_extensions_operator" bl_idname = "node.gltf_pbr_non_converted_extensions_operator"
bl_label = "glTF Original PBR data" bl_label = "glTF Original PBR data"
bl_description = "Add a node to the active tree for glTF export"
@classmethod @classmethod
def poll(cls, context): def poll(cls, context):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment