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:
Diffstat (limited to 'io_import_images_as_planes.py')
-rw-r--r--io_import_images_as_planes.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/io_import_images_as_planes.py b/io_import_images_as_planes.py
index 4770ceb9..7c5c6fd1 100644
--- a/io_import_images_as_planes.py
+++ b/io_import_images_as_planes.py
@@ -314,18 +314,21 @@ class IMPORT_OT_image_to_plane(bpy.types.Operator, ImportHelper, AddObjectHelper
## DRAW ##
def draw(self, context):
layout = self.layout
+
box = layout.box()
box.label('Import Options:', icon='FILTER')
box.prop(self, 'all_in_directory')
box.prop(self, 'extension', icon='FILE_IMAGE')
box.prop(self, 'align')
box.prop(self, 'align_offset')
+
box = layout.box()
box.label('Material mappings:', icon='MATERIAL')
box.prop(self, 'use_shadeless')
box.prop(self, 'use_transparency')
box.prop(self, 'use_premultiply')
box.prop(self, 'transparency_method', expand=True)
+
box = layout.box()
box.label('Plane dimensions:', icon='ARROW_LEFTRIGHT')
box.prop(self, 'use_dimension')