2009-11-01 15:21:20 +00:00
|
|
|
# ##### BEGIN GPL LICENSE BLOCK #####
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
2009-11-03 07:23:02 +00:00
|
|
|
#
|
2009-11-01 15:21:20 +00:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2009-11-03 07:23:02 +00:00
|
|
|
#
|
2009-11-01 15:21:20 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software Foundation,
|
2010-02-12 13:34:04 +00:00
|
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2009-11-01 15:21:20 +00:00
|
|
|
#
|
|
|
|
# ##### END GPL LICENSE BLOCK #####
|
2009-10-31 20:16:59 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
# <pep8 compliant>
|
2009-05-11 17:34:31 +00:00
|
|
|
import bpy
|
2011-08-12 06:57:00 +00:00
|
|
|
from bpy.types import Panel
|
2009-11-14 13:35:44 +00:00
|
|
|
|
2011-09-20 18:29:19 +00:00
|
|
|
|
2010-08-02 02:55:12 +00:00
|
|
|
class DataButtonsPanel():
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_space_type = 'PROPERTIES'
|
|
|
|
bl_region_type = 'WINDOW'
|
|
|
|
bl_context = "data"
|
|
|
|
|
2010-08-09 01:37:09 +00:00
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
2009-10-31 19:31:45 +00:00
|
|
|
return (context.object and context.object.type == 'EMPTY')
|
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class DATA_PT_empty(DataButtonsPanel, Panel):
|
2011-09-15 13:20:18 +00:00
|
|
|
bl_label = "Empty"
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
ob = context.object
|
2009-05-11 17:34:31 +00:00
|
|
|
|
2011-09-21 15:18:38 +00:00
|
|
|
layout.prop(ob, "empty_draw_type", text="Display")
|
2011-05-09 16:31:54 +00:00
|
|
|
|
|
|
|
if ob.empty_draw_type == 'IMAGE':
|
2014-08-21 07:00:35 +00:00
|
|
|
layout.template_ID(ob, "data", open="image.open", unlink="object.unlink_data")
|
2014-01-13 20:57:05 +00:00
|
|
|
layout.template_image(ob, "data", ob.image_user, compact=True)
|
|
|
|
|
|
|
|
row = layout.row(align=True)
|
|
|
|
row = layout.row(align=True)
|
2011-05-09 16:31:54 +00:00
|
|
|
|
2011-09-21 15:18:38 +00:00
|
|
|
layout.prop(ob, "color", text="Transparency", index=3, slider=True)
|
2011-05-26 09:33:51 +00:00
|
|
|
row = layout.row(align=True)
|
2011-09-21 15:18:38 +00:00
|
|
|
row.prop(ob, "empty_image_offset", text="Offset X", index=0)
|
|
|
|
row.prop(ob, "empty_image_offset", text="Offset Y", index=1)
|
2011-05-09 16:31:54 +00:00
|
|
|
|
2011-09-21 15:18:38 +00:00
|
|
|
layout.prop(ob, "empty_draw_size", text="Size")
|
2011-04-04 10:13:04 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__": # only for live edit.
|
|
|
|
bpy.utils.register_module(__name__)
|