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>2020-05-04 17:37:26 +0300
committerJulien Duroure <julien.duroure@gmail.com>2020-05-04 17:37:26 +0300
commit8a1b0edd88f3f47011acc110c684f5285b2e5555 (patch)
tree1d5736df46d14aa07afd67036ff93c0ff9bb8e92
parent841a5d882f1521c935b67da597341229d30bf033 (diff)
parent68d5831729bf9db6a0403f1d6ce9fe6cf547cf1f (diff)
Merge branch 'blender-v2.83-release'
-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
)