forked from bartvdbraak/blender
068545f3bd
-Added buttons for Mark and Clear Seam in toolbar, replacing the less useful Rotate UVs and Mirror UVs commands.
534 lines
15 KiB
Python
534 lines
15 KiB
Python
# ##### 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.
|
|
#
|
|
# 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.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software Foundation,
|
|
# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
#
|
|
# ##### END GPL LICENSE BLOCK #####
|
|
|
|
# <pep8 compliant>
|
|
import bpy
|
|
|
|
narrowui = 180
|
|
|
|
class IMAGE_MT_view(bpy.types.Menu):
|
|
bl_label = "View"
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
sima = context.space_data
|
|
# uv = sima.uv_editor
|
|
settings = context.tool_settings
|
|
|
|
show_uvedit = sima.show_uvedit
|
|
|
|
layout.itemO("image.properties", icon='ICON_MENU_PANEL')
|
|
|
|
layout.itemS()
|
|
|
|
layout.itemR(sima, "update_automatically")
|
|
if show_uvedit:
|
|
layout.itemR(settings, "uv_local_view") # Numpad /
|
|
|
|
layout.itemS()
|
|
|
|
layout.itemO("image.view_zoom_in")
|
|
layout.itemO("image.view_zoom_out")
|
|
|
|
layout.itemS()
|
|
|
|
ratios = [[1, 8], [1, 4], [1, 2], [1, 1], [2, 1], [4, 1], [8, 1]]
|
|
|
|
for a, b in ratios:
|
|
text = "Zoom %d:%d" % (a, b)
|
|
layout.item_floatO("image.view_zoom_ratio", "ratio", a / b, text=text)
|
|
|
|
layout.itemS()
|
|
|
|
if show_uvedit:
|
|
layout.itemO("image.view_selected")
|
|
|
|
layout.itemO("image.view_all")
|
|
layout.itemO("screen.screen_full_area")
|
|
|
|
|
|
class IMAGE_MT_select(bpy.types.Menu):
|
|
bl_label = "Select"
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
layout.itemO("uv.select_border")
|
|
layout.item_booleanO("uv.select_border", "pinned", True)
|
|
|
|
layout.itemS()
|
|
|
|
layout.itemO("uv.select_all_toggle")
|
|
layout.itemO("uv.select_inverse")
|
|
layout.itemO("uv.unlink_selection")
|
|
|
|
layout.itemS()
|
|
|
|
layout.itemO("uv.select_pinned")
|
|
layout.itemO("uv.select_linked")
|
|
|
|
|
|
class IMAGE_MT_image(bpy.types.Menu):
|
|
bl_label = "Image"
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
sima = context.space_data
|
|
ima = sima.image
|
|
|
|
layout.itemO("image.new")
|
|
layout.itemO("image.open")
|
|
|
|
show_render = sima.show_render
|
|
|
|
if ima:
|
|
if not show_render:
|
|
layout.itemO("image.replace")
|
|
layout.itemO("image.reload")
|
|
|
|
layout.itemO("image.save")
|
|
layout.itemO("image.save_as")
|
|
|
|
if ima.source == 'SEQUENCE':
|
|
layout.itemO("image.save_sequence")
|
|
|
|
if not show_render:
|
|
layout.itemS()
|
|
|
|
if ima.packed_file:
|
|
layout.itemO("image.unpack")
|
|
else:
|
|
layout.itemO("image.pack")
|
|
|
|
# only for dirty && specific image types, perhaps
|
|
# this could be done in operator poll too
|
|
if ima.dirty:
|
|
if ima.source in ('FILE', 'GENERATED') and ima.type != 'MULTILAYER':
|
|
layout.item_booleanO("image.pack", "as_png", True, text="Pack As PNG")
|
|
|
|
layout.itemS()
|
|
|
|
layout.itemR(sima, "image_painting")
|
|
|
|
|
|
class IMAGE_MT_uvs_showhide(bpy.types.Menu):
|
|
bl_label = "Show/Hide Faces"
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
layout.itemO("uv.reveal")
|
|
layout.itemO("uv.hide")
|
|
layout.item_booleanO("uv.hide", "unselected", True)
|
|
|
|
|
|
class IMAGE_MT_uvs_transform(bpy.types.Menu):
|
|
bl_label = "Transform"
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
layout.itemO("tfm.translate")
|
|
layout.itemO("tfm.rotate")
|
|
layout.itemO("tfm.resize")
|
|
|
|
|
|
class IMAGE_MT_uvs_mirror(bpy.types.Menu):
|
|
bl_label = "Mirror"
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
layout.operator_context = 'EXEC_REGION_WIN'
|
|
|
|
props = layout.itemO("tfm.mirror", text="X Axis", properties=True)
|
|
props.constraint_axis[0] = True
|
|
|
|
props = layout.itemO("tfm.mirror", text="Y Axis", properties=True)
|
|
props.constraint_axis[1] = True
|
|
|
|
|
|
class IMAGE_MT_uvs_weldalign(bpy.types.Menu):
|
|
bl_label = "Weld/Align"
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
layout.itemO("uv.weld") # W, 1
|
|
layout.items_enumO("uv.align", "axis") # W, 2/3/4
|
|
|
|
|
|
class IMAGE_MT_uvs(bpy.types.Menu):
|
|
bl_label = "UVs"
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
sima = context.space_data
|
|
uv = sima.uv_editor
|
|
settings = context.tool_settings
|
|
|
|
layout.itemR(uv, "snap_to_pixels")
|
|
layout.itemR(uv, "constrain_to_image_bounds")
|
|
|
|
layout.itemS()
|
|
|
|
layout.itemR(uv, "live_unwrap")
|
|
layout.itemO("uv.unwrap")
|
|
layout.item_booleanO("uv.pin", "clear", True, text="Unpin")
|
|
layout.itemO("uv.pin")
|
|
|
|
layout.itemS()
|
|
|
|
layout.itemO("uv.pack_islands")
|
|
layout.itemO("uv.average_islands_scale")
|
|
layout.itemO("uv.minimize_stretch")
|
|
layout.itemO("uv.stitch")
|
|
|
|
layout.itemS()
|
|
|
|
layout.itemM("IMAGE_MT_uvs_transform")
|
|
layout.itemM("IMAGE_MT_uvs_mirror")
|
|
layout.itemM("IMAGE_MT_uvs_weldalign")
|
|
|
|
layout.itemS()
|
|
|
|
layout.item_menu_enumR(settings, "proportional_editing")
|
|
layout.item_menu_enumR(settings, "proportional_editing_falloff")
|
|
|
|
layout.itemS()
|
|
|
|
layout.itemM("IMAGE_MT_uvs_showhide")
|
|
|
|
|
|
class IMAGE_HT_header(bpy.types.Header):
|
|
bl_space_type = 'IMAGE_EDITOR'
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
sima = context.space_data
|
|
ima = sima.image
|
|
iuser = sima.image_user
|
|
settings = context.tool_settings
|
|
|
|
# show_render = sima.show_render
|
|
# show_paint = sima.show_paint
|
|
show_uvedit = sima.show_uvedit
|
|
|
|
row = layout.row(align=True)
|
|
row.template_header()
|
|
|
|
# menus
|
|
if context.area.show_menus:
|
|
sub = row.row(align=True)
|
|
sub.itemM("IMAGE_MT_view")
|
|
|
|
if show_uvedit:
|
|
sub.itemM("IMAGE_MT_select")
|
|
|
|
if ima and ima.dirty:
|
|
sub.itemM("IMAGE_MT_image", text="Image*")
|
|
else:
|
|
sub.itemM("IMAGE_MT_image", text="Image")
|
|
|
|
if show_uvedit:
|
|
sub.itemM("IMAGE_MT_uvs")
|
|
|
|
layout.template_ID(sima, "image", new="image.new")
|
|
|
|
# uv editing
|
|
if show_uvedit:
|
|
uvedit = sima.uv_editor
|
|
|
|
layout.itemR(uvedit, "pivot", text="", icon_only=True)
|
|
layout.itemR(settings, "uv_sync_selection", text="")
|
|
|
|
if settings.uv_sync_selection:
|
|
layout.itemR(settings, "mesh_selection_mode", text="", expand=True)
|
|
else:
|
|
layout.itemR(settings, "uv_selection_mode", text="", expand=True)
|
|
layout.itemR(uvedit, "sticky_selection_mode", text="", icon_only=True)
|
|
|
|
row = layout.row(align=True)
|
|
row.itemR(settings, "snap", text="")
|
|
if settings.snap:
|
|
row.itemR(settings, "snap_mode", text="")
|
|
|
|
# mesh = context.edit_object.data
|
|
# row.item_pointerR(mesh, "active_uv_layer", mesh, "uv_textures")
|
|
|
|
if ima:
|
|
# layers
|
|
layout.template_image_layers(ima, iuser)
|
|
|
|
# painting
|
|
layout.itemR(sima, "image_painting", text="")
|
|
|
|
# draw options
|
|
row = layout.row(align=True)
|
|
row.itemR(sima, "draw_channels", text="", expand=True)
|
|
|
|
row = layout.row(align=True)
|
|
if ima.type == 'COMPOSITE':
|
|
row.itemO("image.record_composite", icon='ICON_REC')
|
|
if ima.type == 'COMPOSITE' and ima.source in ('MOVIE', 'SEQUENCE'):
|
|
row.itemO("image.play_composite", icon='ICON_PLAY')
|
|
|
|
if show_uvedit or sima.image_painting:
|
|
layout.itemR(sima, "update_automatically", text="")
|
|
|
|
|
|
class IMAGE_PT_image_properties(bpy.types.Panel):
|
|
bl_space_type = 'IMAGE_EDITOR'
|
|
bl_region_type = 'UI'
|
|
bl_label = "Image"
|
|
|
|
def poll(self, context):
|
|
sima = context.space_data
|
|
return (sima.image)
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
sima = context.space_data
|
|
# ima = sima.image
|
|
iuser = sima.image_user
|
|
|
|
layout.template_image(sima, "image", iuser, compact=True)
|
|
|
|
|
|
class IMAGE_PT_game_properties(bpy.types.Panel):
|
|
bl_space_type = 'IMAGE_EDITOR'
|
|
bl_region_type = 'UI'
|
|
bl_label = "Game Properties"
|
|
|
|
def poll(self, context):
|
|
rd = context.scene.render_data
|
|
sima = context.space_data
|
|
return (sima and sima.image) and (rd.engine == 'BLENDER_GAME')
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
sima = context.space_data
|
|
ima = sima.image
|
|
col2 = context.region.width > narrowui
|
|
|
|
split = layout.split()
|
|
|
|
col = split.column()
|
|
|
|
sub = col.column(align=True)
|
|
sub.itemR(ima, "animated")
|
|
|
|
subsub = sub.column()
|
|
subsub.active = ima.animated
|
|
subsub.itemR(ima, "animation_start", text="Start")
|
|
subsub.itemR(ima, "animation_end", text="End")
|
|
subsub.itemR(ima, "animation_speed", text="Speed")
|
|
|
|
col.itemR(ima, "tiles")
|
|
sub = col.column(align=True)
|
|
sub.active = ima.tiles or ima.animated
|
|
sub.itemR(ima, "tiles_x", text="X")
|
|
sub.itemR(ima, "tiles_y", text="Y")
|
|
|
|
if col2:
|
|
col = split.column()
|
|
col.itemL(text="Clamp:")
|
|
col.itemR(ima, "clamp_x", text="X")
|
|
col.itemR(ima, "clamp_y", text="Y")
|
|
col.itemS()
|
|
col.itemR(ima, "mapping", expand=True)
|
|
|
|
|
|
class IMAGE_PT_view_properties(bpy.types.Panel):
|
|
bl_space_type = 'IMAGE_EDITOR'
|
|
bl_region_type = 'UI'
|
|
bl_label = "Display"
|
|
|
|
def poll(self, context):
|
|
sima = context.space_data
|
|
return (sima and (sima.image or sima.show_uvedit))
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
sima = context.space_data
|
|
ima = sima.image
|
|
show_uvedit = sima.show_uvedit
|
|
uvedit = sima.uv_editor
|
|
col2 = context.region.width > narrowui
|
|
|
|
split = layout.split()
|
|
|
|
col = split.column()
|
|
if ima:
|
|
col.itemR(ima, "display_aspect", text="Aspect Ratio")
|
|
|
|
if col2:
|
|
col = split.column()
|
|
col.itemL(text="Coordinates:")
|
|
col.itemR(sima, "draw_repeated", text="Repeat")
|
|
if show_uvedit:
|
|
col.itemR(uvedit, "normalized_coordinates", text="Normalized")
|
|
elif show_uvedit:
|
|
col.itemL(text="Coordinates:")
|
|
col.itemR(uvedit, "normalized_coordinates", text="Normalized")
|
|
|
|
if show_uvedit:
|
|
|
|
col = layout.column()
|
|
col.itemL(text="UVs:")
|
|
row = col.row()
|
|
if col2:
|
|
row.itemR(uvedit, "edge_draw_type", expand=True)
|
|
else:
|
|
row.itemR(uvedit, "edge_draw_type", text="")
|
|
|
|
split = layout.split()
|
|
col = split.column()
|
|
col.itemR(uvedit, "draw_smooth_edges", text="Smooth")
|
|
col.itemR(uvedit, "draw_modified_edges", text="Modified")
|
|
#col.itemR(uvedit, "draw_edges")
|
|
#col.itemR(uvedit, "draw_faces")
|
|
|
|
if col2:
|
|
col = split.column()
|
|
col.itemR(uvedit, "draw_stretch", text="Stretch")
|
|
sub = col.column()
|
|
sub.active = uvedit.draw_stretch
|
|
sub.row().itemR(uvedit, "draw_stretch_type", expand=True)
|
|
|
|
class IMAGE_PT_paint(bpy.types.Panel):
|
|
bl_space_type = 'IMAGE_EDITOR'
|
|
bl_region_type = 'UI'
|
|
bl_label = "Paint"
|
|
|
|
def poll(self, context):
|
|
sima = context.space_data
|
|
return sima.show_paint
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
settings = context.tool_settings.image_paint
|
|
brush = settings.brush
|
|
col2 = context.region.width > narrowui
|
|
|
|
col = layout.split().column()
|
|
row = col.row()
|
|
row.template_list(settings, "brushes", settings, "active_brush_index", rows=2)
|
|
|
|
col.template_ID(settings, "brush", new="brush.add")
|
|
|
|
if col2:
|
|
sub = layout.row(align=True)
|
|
else:
|
|
sub = layout.column(align=True)
|
|
sub.item_enumR(settings, "tool", 'DRAW')
|
|
sub.item_enumR(settings, "tool", 'SOFTEN')
|
|
sub.item_enumR(settings, "tool", 'CLONE')
|
|
sub.item_enumR(settings, "tool", 'SMEAR')
|
|
|
|
if brush:
|
|
col = layout.column()
|
|
col.itemR(brush, "color", text="")
|
|
|
|
row = col.row(align=True)
|
|
row.itemR(brush, "size", slider=True)
|
|
row.itemR(brush, "use_size_pressure", toggle=True, text="")
|
|
|
|
row = col.row(align=True)
|
|
row.itemR(brush, "strength", slider=True)
|
|
row.itemR(brush, "use_strength_pressure", toggle=True, text="")
|
|
|
|
row = col.row(align=True)
|
|
row.itemR(brush, "jitter", slider=True)
|
|
row.itemR(brush, "use_jitter_pressure", toggle=True, text="")
|
|
|
|
col.itemR(brush, "blend", text="Blend")
|
|
|
|
|
|
class IMAGE_PT_paint_stroke(bpy.types.Panel):
|
|
bl_space_type = 'IMAGE_EDITOR'
|
|
bl_region_type = 'UI'
|
|
bl_label = "Paint Stroke"
|
|
bl_default_closed = True
|
|
|
|
def poll(self, context):
|
|
sima = context.space_data
|
|
settings = context.tool_settings.image_paint
|
|
return sima.show_paint and settings.brush
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
settings = context.tool_settings.image_paint
|
|
brush = settings.brush
|
|
|
|
layout.itemR(brush, "use_airbrush")
|
|
col = layout.column()
|
|
col.active = brush.use_airbrush
|
|
col.itemR(brush, "rate", slider=True)
|
|
|
|
layout.itemR(brush, "use_space")
|
|
row = layout.row(align=True)
|
|
row.active = brush.use_space
|
|
row.itemR(brush, "spacing", text="Distance", slider=True)
|
|
row.itemR(brush, "use_spacing_pressure", toggle=True, text="")
|
|
|
|
|
|
class IMAGE_PT_paint_curve(bpy.types.Panel):
|
|
bl_space_type = 'IMAGE_EDITOR'
|
|
bl_region_type = 'UI'
|
|
bl_label = "Paint Curve"
|
|
bl_default_closed = True
|
|
|
|
def poll(self, context):
|
|
sima = context.space_data
|
|
settings = context.tool_settings.image_paint
|
|
return sima.show_paint and settings.brush
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
settings = context.tool_settings.image_paint
|
|
brush = settings.brush
|
|
|
|
layout.template_curve_mapping(brush, "curve")
|
|
layout.item_menu_enumO("brush.curve_preset", property="shape")
|
|
|
|
bpy.types.register(IMAGE_MT_view)
|
|
bpy.types.register(IMAGE_MT_select)
|
|
bpy.types.register(IMAGE_MT_image)
|
|
bpy.types.register(IMAGE_MT_uvs_showhide)
|
|
bpy.types.register(IMAGE_MT_uvs_transform)
|
|
bpy.types.register(IMAGE_MT_uvs_mirror)
|
|
bpy.types.register(IMAGE_MT_uvs_weldalign)
|
|
bpy.types.register(IMAGE_MT_uvs)
|
|
bpy.types.register(IMAGE_HT_header)
|
|
bpy.types.register(IMAGE_PT_image_properties)
|
|
bpy.types.register(IMAGE_PT_paint)
|
|
bpy.types.register(IMAGE_PT_paint_stroke)
|
|
bpy.types.register(IMAGE_PT_paint_curve)
|
|
bpy.types.register(IMAGE_PT_game_properties)
|
|
bpy.types.register(IMAGE_PT_view_properties)
|