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>2019-10-03 19:51:48 +0300
committerJulien Duroure <julien.duroure@gmail.com>2019-10-03 19:52:31 +0300
commitc402af6e27ca743657a66cc635f4993b3f324819 (patch)
tree61e355db68a6aa3996528ed42f7ba8879ad5bdae /io_scene_gltf2
parentb57772a8831e1f618d37ac4a3386c070dbc425b6 (diff)
glTF export: sample animation is on by default
Diffstat (limited to 'io_scene_gltf2')
-rwxr-xr-xio_scene_gltf2/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py
index 749a0b0b..7ebb964a 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": (0, 9, 81),
+ "version": (0, 9, 82),
'blender': (2, 81, 6),
'location': 'File > Import-Export',
'description': 'Import-Export as glTF 2.0',
@@ -247,7 +247,7 @@ class ExportGLTF2_Base:
export_force_sampling: BoolProperty(
name='Always Sample Animations',
description='Apply sampling to all animations',
- default=False
+ default=True
)
export_nla_strips: BoolProperty(