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-09-14 00:02:50 +0300
committerJulien Duroure <julien.duroure@gmail.com>2019-09-14 00:02:50 +0300
commit12af8a28c14b608e9b9b08568d981273c86590c1 (patch)
tree4d6f69a9ae2d289a0db1a2348fd27981f0cf99a2
parent9641357c8269e8b3a032c81f37fc8aaa771b73e6 (diff)
glTF exporter: add a warning in 'apply modifiers' export option
Applying modifiers prevents exporting shape keys
-rwxr-xr-xio_scene_gltf2/__init__.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py
index fa5903e7..6fa115e8 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, 66),
+ "version": (0, 9, 67),
'blender': (2, 81, 6),
'location': 'File > Import-Export',
'description': 'Import-Export as glTF 2.0',
@@ -219,7 +219,8 @@ class ExportGLTF2_Base:
export_apply: BoolProperty(
name='Apply Modifiers',
- description='Apply modifiers (excluding Armatures) to mesh objects',
+ description='Apply modifiers (excluding Armatures) to mesh objects -'
+ 'WARNING: prevents exporting shape keys',
default=False
)