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>2020-05-05 22:25:50 +0300
committerJulien Duroure <julien.duroure@gmail.com>2020-05-05 22:25:50 +0300
commit96fa47905e0903cd784fb915ab34561b79d3fca9 (patch)
tree5e186b5d5df9334d8d83db188aabc798f8931edd
parent0372ff2ba735f3559953753ec7f17fb8bde4ec57 (diff)
glTF: fix bad merge, this should'nt go on 2.83 branch
-rwxr-xr-xio_scene_gltf2/__init__.py17
1 files changed, 5 insertions, 12 deletions
diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py
index 927f0153..648cedc7 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": (1, 2, 74),
+ "version": (1, 2, 75),
'blender': (2, 83, 9),
'location': 'File > Import-Export',
'description': 'Import-Export as glTF 2.0',
@@ -560,14 +560,10 @@ class GLTF_PT_export_include(bpy.types.Panel):
sfile = context.space_data
operator = sfile.active_operator
- col = layout.column(heading = "Limit to", align = True)
- col.prop(operator, 'use_selection')
-
- col = layout.column(heading = "Data", align = True)
- col.prop(operator, 'export_extras')
- col.prop(operator, 'export_cameras')
- col.prop(operator, 'export_lights')
-
+ layout.prop(operator, 'use_selection')
+ layout.prop(operator, 'export_extras')
+ layout.prop(operator, 'export_cameras')
+ layout.prop(operator, 'export_lights')
class GLTF_PT_export_transform(bpy.types.Panel):
bl_space_type = 'FILE_BROWSER'
@@ -895,9 +891,6 @@ class ImportGLTF2(Operator, ImportHelper):
def draw(self, context):
layout = self.layout
- layout.use_property_split = True
- layout.use_property_decorate = False # No animation.
-
layout.prop(self, 'import_pack_images')
layout.prop(self, 'import_shading')
layout.prop(self, 'guess_original_bind_pose')