diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py index 5c620c8798ef108f106accef0c6e7988a76807f7..336a35df1dbad3d659e6df01666ee0c5f167b9cf 100755 --- a/io_scene_gltf2/__init__.py +++ b/io_scene_gltf2/__init__.py @@ -26,6 +26,7 @@ bl_info = { 'category': 'Import-Export', } + def get_version_string(): return str(bl_info['version'][0]) + '.' + str(bl_info['version'][1]) + '.' + str(bl_info['version'][2]) @@ -568,7 +569,6 @@ class GLTF_PT_export_include(bpy.types.Panel): col.prop(operator, 'export_cameras') col.prop(operator, 'export_lights') - class GLTF_PT_export_transform(bpy.types.Panel): bl_space_type = 'FILE_BROWSER' bl_region_type = 'TOOL_PROPS'