Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Duroure <julien.duroure@gmail.com>2022-08-17 09:04:31 +0300
committerJulien Duroure <julien.duroure@gmail.com>2022-08-17 09:04:31 +0300
commit4f050118742e44fc7884bcc31fbe54c50981e336 (patch)
treeb0e60865d011d0a732c6aa9b0a1031fa47ae2f66
parent9638ec565580fd611577249fda938a5cd1146694 (diff)
parent57b65bd3f485d2477998f6991422f67be6ce5158 (diff)
Merge branch 'blender-v3.3-release'
-rwxr-xr-xio_scene_gltf2/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py
index b3923d3f..ecc5a499 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, 4, 8),
+ "version": (3, 4, 9),
'blender': (3, 3, 0),
'location': 'File > Import-Export',
'description': 'Import-Export as glTF 2.0',
@@ -406,8 +406,8 @@ class ExportGLTF2_Base:
export_anim_single_armature: BoolProperty(
name='Export all Armature Actions',
description=(
- "Export all actions of a single armature. "
- "WARNING: works only if you exports a single armature"
+ "Export all actions, bound to a single armature. "
+ "WARNING: Option does not support exports including multiple armatures"
),
default=True
)