# # ##### 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # ##### END GPL LICENSE BLOCK ##### __author__ = "Nutti " __status__ = "production" __version__ = "6.2" __date__ = "31 Jul 2019" import bpy from ..op.texture_lock import ( MUV_OT_TextureLock_Lock, MUV_OT_TextureLock_Unlock, MUV_OT_TextureLock_Intr, ) from ..op.texture_wrap import ( MUV_OT_TextureWrap_Refer, MUV_OT_TextureWrap_Set, ) from ..op.uv_sculpt import ( MUV_OT_UVSculpt, ) from ..op.world_scale_uv import ( MUV_OT_WorldScaleUV_Measure, MUV_OT_WorldScaleUV_ApplyManual, MUV_OT_WorldScaleUV_ApplyScalingDensity, MUV_OT_WorldScaleUV_ApplyProportionalToMesh, ) from ..op.flip_rotate_uv import MUV_OT_FlipRotateUV from ..op.mirror_uv import MUV_OT_MirrorUV from ..op.move_uv import MUV_OT_MoveUV from ..op.preserve_uv_aspect import MUV_OT_PreserveUVAspect from ..utils.bl_class_registry import BlClassRegistry from ..utils import compatibility as compat from .. import common def get_apply_target_texture_name(): images = common.find_images(bpy.context.active_object) return images.keys() @BlClassRegistry() @compat.ChangeRegionType(region_type='TOOLS') class MUV_PT_View3D_UVManipulation(bpy.types.Panel): """ Panel class: UV Manipulation on Property Panel on View3D """ bl_space_type = 'VIEW_3D' bl_region_type = 'UI' bl_label = "UV Manipulation" bl_category = "Edit" bl_context = 'mesh_edit' bl_options = {'DEFAULT_CLOSED'} def draw_header(self, _): layout = self.layout layout.label(text="", icon=compat.icon('IMAGE')) def draw(self, context): sc = context.scene layout = self.layout box = layout.box() box.prop(sc, "muv_flip_rotate_uv_enabled", text="Flip/Rotate UV") if sc.muv_flip_rotate_uv_enabled: row = box.row() ops = row.operator(MUV_OT_FlipRotateUV.bl_idname, text="Flip/Rotate") ops.seams = sc.muv_flip_rotate_uv_seams row.prop(sc, "muv_flip_rotate_uv_seams", text="Seams") box = layout.box() box.prop(sc, "muv_mirror_uv_enabled", text="Mirror UV") if sc.muv_mirror_uv_enabled: row = box.row() ops = row.operator(MUV_OT_MirrorUV.bl_idname, text="Mirror") ops.axis = sc.muv_mirror_uv_axis row.prop(sc, "muv_mirror_uv_axis", text="") box = layout.box() box.prop(sc, "muv_move_uv_enabled", text="Move UV") if sc.muv_move_uv_enabled: col = box.column() if not MUV_OT_MoveUV.is_running(context): col.operator(MUV_OT_MoveUV.bl_idname, icon='PLAY', text="Start") else: col.operator(MUV_OT_MoveUV.bl_idname, icon='PAUSE', text="Stop") box = layout.box() box.prop(sc, "muv_world_scale_uv_enabled", text="World Scale UV") if sc.muv_world_scale_uv_enabled: box.prop(sc, "muv_world_scale_uv_mode", text="") if sc.muv_world_scale_uv_mode == 'MANUAL': sp = compat.layout_split(box, 0.4) col = sp.column(align=True) col.label(text="Target:") sp = compat.layout_split(sp, 1.0) col = sp.column(align=True) ops = col.operator(MUV_OT_WorldScaleUV_ApplyManual.bl_idname, text="Apply") ops.tgt_density = sc.muv_world_scale_uv_tgt_density ops.tgt_texture_size = sc.muv_world_scale_uv_tgt_texture_size ops.origin = sc.muv_world_scale_uv_origin ops.show_dialog = False sp = compat.layout_split(box, 0.5) col = sp.column() col.prop(sc, "muv_world_scale_uv_tgt_texture_size", text="Texture Size") sp = compat.layout_split(sp, 1.0) col = sp.column() col.label(text="Density:") col.prop(sc, "muv_world_scale_uv_tgt_density") box.prop(sc, "muv_world_scale_uv_origin", text="Origin") elif sc.muv_world_scale_uv_mode == 'SAME_DENSITY': sp = compat.layout_split(box, 0.4) col = sp.column(align=True) col.label(text="Source:") sp = compat.layout_split(sp, 1.0) col = sp.column(align=True) ops = col.operator(MUV_OT_WorldScaleUV_Measure.bl_idname, text="Measure") ops.tgt_texture = sc.muv_world_scale_uv_measure_tgt_texture col = box.column(align=True) col.prop(sc, "muv_world_scale_uv_measure_tgt_texture") sp = compat.layout_split(box, 0.7) col = sp.column(align=True) col.prop(sc, "muv_world_scale_uv_src_density", text="Density") col.enabled = False sp = compat.layout_split(sp, 1.0) col = sp.column(align=True) col.label(text="px2/cm2") box.separator() sp = compat.layout_split(box, 0.4) col = sp.column(align=True) col.label(text="Target:") sp = compat.layout_split(sp, 1.0) col = sp.column(align=True) ops = col.operator( MUV_OT_WorldScaleUV_ApplyScalingDensity.bl_idname, text="Apply") ops.src_density = sc.muv_world_scale_uv_src_density ops.origin = sc.muv_world_scale_uv_origin ops.same_density = True ops.show_dialog = False ops.tgt_texture = sc.muv_world_scale_uv_apply_tgt_texture box.prop(sc, "muv_world_scale_uv_origin", text="Origin") elif sc.muv_world_scale_uv_mode == 'SCALING_DENSITY': sp = compat.layout_split(box, 0.4) col = sp.column(align=True) col.label(text="Source:") sp = compat.layout_split(sp, 1.0) col = sp.column(align=True) ops = col.operator(MUV_OT_WorldScaleUV_Measure.bl_idname, text="Measure") ops.tgt_texture = sc.muv_world_scale_uv_measure_tgt_texture col = box.column(align=True) col.prop(sc, "muv_world_scale_uv_measure_tgt_texture") sp = compat.layout_split(box, 0.7) col = sp.column(align=True) col.prop(sc, "muv_world_scale_uv_src_density", text="Density") col.enabled = False sp = compat.layout_split(sp, 1.0) col = sp.column(align=True) col.label(text="px2/cm2") box.separator() sp = compat.layout_split(box, 0.4) col = sp.column(align=True) col.label(text="Target:") sp = compat.layout_split(sp, 1.0) col = sp.column(align=True) ops = col.operator( MUV_OT_WorldScaleUV_ApplyScalingDensity.bl_idname, text="Apply") ops.src_density = sc.muv_world_scale_uv_src_density ops.origin = sc.muv_world_scale_uv_origin ops.same_density = False ops.show_dialog = False ops.tgt_scaling_factor = \ sc.muv_world_scale_uv_tgt_scaling_factor ops.tgt_texture = sc.muv_world_scale_uv_apply_tgt_texture box.prop(sc, "muv_world_scale_uv_tgt_scaling_factor", text="Scaling Factor") box.prop(sc, "muv_world_scale_uv_origin", text="Origin") elif sc.muv_world_scale_uv_mode == 'PROPORTIONAL_TO_MESH': sp = compat.layout_split(box, 0.4) col = sp.column(align=True) col.label(text="Source:") sp = compat.layout_split(sp, 1.0) col = sp.column(align=True) ops = col.operator(MUV_OT_WorldScaleUV_Measure.bl_idname, text="Measure") ops.tgt_texture = sc.muv_world_scale_uv_measure_tgt_texture col = box.column(align=True) col.prop(sc, "muv_world_scale_uv_measure_tgt_texture") sp = compat.layout_split(box, 0.7) col = sp.column(align=True) col.prop(sc, "muv_world_scale_uv_src_mesh_area", text="Mesh Area") col.prop(sc, "muv_world_scale_uv_src_uv_area", text="UV Area") col.prop(sc, "muv_world_scale_uv_src_density", text="Density") col.enabled = False sp = compat.layout_split(sp, 1.0) col = sp.column(align=True) col.label(text="cm2") col.label(text="px2") col.label(text="px2/cm2") col.enabled = False box.separator() sp = compat.layout_split(box, 0.4) col = sp.column(align=True) col.label(text="Target:") sp = compat.layout_split(sp, 1.0) col = sp.column(align=True) ops = col.operator( MUV_OT_WorldScaleUV_ApplyProportionalToMesh.bl_idname, text="Apply") ops.src_density = sc.muv_world_scale_uv_src_density ops.src_uv_area = sc.muv_world_scale_uv_src_uv_area ops.src_mesh_area = sc.muv_world_scale_uv_src_mesh_area ops.origin = sc.muv_world_scale_uv_origin ops.show_dialog = False ops.tgt_texture = sc.muv_world_scale_uv_apply_tgt_texture box.prop(sc, "muv_world_scale_uv_origin", text="Origin") col = box.column(align=True) col.prop(sc, "muv_world_scale_uv_apply_tgt_texture") box = layout.box() box.prop(sc, "muv_preserve_uv_aspect_enabled", text="Preserve UV Aspect") if sc.muv_preserve_uv_aspect_enabled: row = box.row() ops = row.operator(MUV_OT_PreserveUVAspect.bl_idname, text="Change Image") ops.dest_img_name = sc.muv_preserve_uv_aspect_tex_image ops.origin = sc.muv_preserve_uv_aspect_origin row.prop(sc, "muv_preserve_uv_aspect_tex_image", text="") box.prop(sc, "muv_preserve_uv_aspect_origin", text="Origin") box = layout.box() box.prop(sc, "muv_texture_lock_enabled", text="Texture Lock") if sc.muv_texture_lock_enabled: row = box.row(align=True) col = row.column(align=True) col.label(text="Normal Mode:") col = row.column(align=True) col.operator(MUV_OT_TextureLock_Lock.bl_idname, text="Lock" if not MUV_OT_TextureLock_Lock.is_ready(context) else "ReLock") ops = col.operator(MUV_OT_TextureLock_Unlock.bl_idname, text="Unlock") ops.connect = sc.muv_texture_lock_connect col.prop(sc, "muv_texture_lock_connect", text="Connect") row = box.row(align=True) row.label(text="Interactive Mode:") box.prop(sc, "muv_texture_lock_lock", text="Unlock" if MUV_OT_TextureLock_Intr.is_running(context) else "Lock", icon='RESTRICT_VIEW_OFF' if MUV_OT_TextureLock_Intr.is_running(context) else 'RESTRICT_VIEW_ON') box = layout.box() box.prop(sc, "muv_texture_wrap_enabled", text="Texture Wrap") if sc.muv_texture_wrap_enabled: row = box.row(align=True) row.operator(MUV_OT_TextureWrap_Refer.bl_idname, text="Refer") row.operator(MUV_OT_TextureWrap_Set.bl_idname, text="Set") box.prop(sc, "muv_texture_wrap_set_and_refer") box.prop(sc, "muv_texture_wrap_selseq") box = layout.box() box.prop(sc, "muv_uv_sculpt_enabled", text="UV Sculpt") if sc.muv_uv_sculpt_enabled: box.prop(sc, "muv_uv_sculpt_enable", text="Disable"if MUV_OT_UVSculpt.is_running(context) else "Enable", icon='RESTRICT_VIEW_OFF' if MUV_OT_UVSculpt.is_running(context) else 'RESTRICT_VIEW_ON') col = box.column() col.label(text="Brush:") col.prop(sc, "muv_uv_sculpt_radius") col.prop(sc, "muv_uv_sculpt_strength") box.prop(sc, "muv_uv_sculpt_tools") if sc.muv_uv_sculpt_tools == 'PINCH': box.prop(sc, "muv_uv_sculpt_pinch_invert") elif sc.muv_uv_sculpt_tools == 'RELAX': box.prop(sc, "muv_uv_sculpt_relax_method") box.prop(sc, "muv_uv_sculpt_show_brush")