Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <mail@jlucke.com>2018-09-27 17:21:51 +0300
committerJacques Lucke <mail@jlucke.com>2018-09-27 17:21:51 +0300
commit6791d95b1db8a2419b9534e95ea7c73c1cb4ff62 (patch)
tree7df79d02159e5d571638bf2cbd330c49ec5b656a /release/scripts/startup/bl_operators/object.py
parenta3fea397244406e2f60c388ea651a200e5b3681c (diff)
Empty Object: new "Load Image as Empty" operator
New entry in the Add Object menu. Opens a file selector and creates a new empty object from the selected image. Previously more steps were needed to archieve the same. Differential: https://developer.blender.org/D3708 Reviewer: brecht
Diffstat (limited to 'release/scripts/startup/bl_operators/object.py')
-rw-r--r--release/scripts/startup/bl_operators/object.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_operators/object.py b/release/scripts/startup/bl_operators/object.py
index 30a9943df71..98d3d0c8c6d 100644
--- a/release/scripts/startup/bl_operators/object.py
+++ b/release/scripts/startup/bl_operators/object.py
@@ -869,12 +869,41 @@ class DupliOffsetFromCursor(Operator):
return {'FINISHED'}
+class LoadImageAsEmpty(Operator):
+ """Select an image file and create a new image empty with it"""
+ bl_idname = "object.load_image_as_empty"
+ bl_label = "Load Image as Empty"
+ bl_options = {'REGISTER'}
+
+ filepath: StringProperty(
+ subtype='FILE_PATH'
+ )
+
+ filter_image: BoolProperty(default=True, options={'HIDDEN', 'SKIP_SAVE'})
+ filter_folder: BoolProperty(default=True, options={'HIDDEN', 'SKIP_SAVE'})
+
+ def invoke(self, context, event):
+ context.window_manager.fileselect_add(self)
+ return {'RUNNING_MODAL'}
+
+ def execute(self, context):
+ try:
+ image = bpy.data.images.load(self.filepath, check_existing=True)
+ except RuntimeError:
+ self.report({"ERROR"}, "cannot load image")
+ return {"CANCELLED"}
+
+ bpy.ops.object.empty_add(type='IMAGE', location=context.scene.cursor_location)
+ context.active_object.data = image
+ return {'FINISHED'}
+
classes = (
ClearAllRestrictRender,
DupliOffsetFromCursor,
IsolateTypeRender,
JoinUVs,
+ LoadImageAsEmpty,
MakeDupliFace,
SelectCamera,
SelectHierarchy,