From e2311a730bce5b946af40bf4c9ed14eddf27ffcb Mon Sep 17 00:00:00 2001 From: Julien Duroure <julien.duroure@gmail.com> Date: Wed, 4 Sep 2019 21:44:07 +0200 Subject: [PATCH] glTF exporter: Change version after UI change --- io_scene_gltf2/__init__.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py index 19cf45605..56745a5fa 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 -- GitLab