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-04 22:44:07 +0300
committerJulien Duroure <julien.duroure@gmail.com>2019-09-04 22:44:07 +0300
commite2311a730bce5b946af40bf4c9ed14eddf27ffcb (patch)
treeafc5c0ce8a831187fe759a682aca88b2a942b4db
parentb022000d22d2e99f97209124c70169f210060e8b (diff)
glTF exporter: Change version after UI change
-rwxr-xr-xio_scene_gltf2/__init__.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py
index 19cf4560..56745a5f 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, 54),
+ "version": (0, 9, 55),
'blender': (2, 81, 6),
'location': 'File > Import-Export',
'description': 'Import-Export as glTF 2.0',
@@ -411,6 +411,11 @@ class ExportGLTF2_Base:
return gltf2_blender_export.save(context, export_settings)
+
+
+
+
+
def draw(self, context):
pass