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:
Diffstat (limited to 'io_scene_gltf2/__init__.py')
-rwxr-xr-xio_scene_gltf2/__init__.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py
index 3cdde69a..666883f4 100755
--- a/io_scene_gltf2/__init__.py
+++ b/io_scene_gltf2/__init__.py
@@ -15,7 +15,7 @@
bl_info = {
'name': 'glTF 2.0 format',
'author': 'Julien Duroure, Norbert Nopper, Urs Hanselmann, Moritz Becher, Benjamin Schmithüsen, Jim Eckerlein, and many external contributors',
- "version": (1, 3, 7),
+ "version": (1, 2, 70),
'blender': (2, 83, 9),
'location': 'File > Import-Export',
'description': 'Import-Export as glTF 2.0',
@@ -274,8 +274,12 @@ class ExportGLTF2_Base:
)
export_nla_strips: BoolProperty(
- name='NLA Strips',
- description='Export NLA Strip animations',
+ name='Group by NLA Track',
+ description=(
+ "When on, multiple actions become part of the same glTF animation if\n"
+ "they're pushed onto NLA tracks with the same name.\n"
+ "When off, all the currently assigned actions become one glTF animation"
+ ),
default=True
)