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:03:02 +0300
committerJulien Duroure <julien.duroure@gmail.com>2022-08-17 09:03:02 +0300
commit57b65bd3f485d2477998f6991422f67be6ce5158 (patch)
treee6a0103a985974b951388d79b9cf944d9055a0f5
parent94ebaf04922906924e26761b9cf408daf34c6aeb (diff)
glTF exporter: cleanup option description
-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 4c87c07b..ee60f4aa 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, 3, 25),
+ "version": (3, 3, 26),
'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
)