2009-05-24 12:37:55 +00:00
|
|
|
|
2009-05-19 15:38:36 +00:00
|
|
|
import bpy
|
|
|
|
|
|
|
|
class DataButtonsPanel(bpy.types.Panel):
|
2009-05-20 02:17:53 +00:00
|
|
|
__space_type__ = "BUTTONS_WINDOW"
|
|
|
|
__region_type__ = "WINDOW"
|
|
|
|
__context__ = "data"
|
|
|
|
|
|
|
|
def poll(self, context):
|
2009-06-03 00:17:35 +00:00
|
|
|
return (context.armature != None)
|
2009-05-20 02:17:53 +00:00
|
|
|
|
2009-07-09 09:42:34 +00:00
|
|
|
class DATA_PT_context_arm(DataButtonsPanel):
|
|
|
|
__idname__ = "DATA_PT_context_arm"
|
2009-07-09 19:45:27 +00:00
|
|
|
__no_header__ = True
|
2009-06-13 21:22:21 +00:00
|
|
|
|
2009-05-20 02:17:53 +00:00
|
|
|
def draw(self, context):
|
2009-06-13 21:22:21 +00:00
|
|
|
layout = self.layout
|
|
|
|
|
2009-06-07 13:36:12 +00:00
|
|
|
ob = context.object
|
2009-06-03 00:17:35 +00:00
|
|
|
arm = context.armature
|
2009-06-07 13:36:12 +00:00
|
|
|
space = context.space_data
|
2009-05-20 02:17:53 +00:00
|
|
|
|
2009-06-07 13:36:12 +00:00
|
|
|
split = layout.split(percentage=0.65)
|
|
|
|
|
|
|
|
if ob:
|
2009-06-23 00:19:10 +00:00
|
|
|
split.template_ID(ob, "data")
|
2009-06-07 13:36:12 +00:00
|
|
|
split.itemS()
|
|
|
|
elif arm:
|
2009-06-23 00:19:10 +00:00
|
|
|
split.template_ID(space, "pin_id")
|
2009-06-07 13:36:12 +00:00
|
|
|
split.itemS()
|
|
|
|
|
2009-07-09 09:07:25 +00:00
|
|
|
class DATA_PT_skeleton(DataButtonsPanel):
|
|
|
|
__idname__ = "DATA_PT_skeleton"
|
|
|
|
__label__ = "Skeleton"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
ob = context.object
|
|
|
|
arm = context.armature
|
|
|
|
space = context.space_data
|
|
|
|
|
|
|
|
|
2009-06-07 13:36:12 +00:00
|
|
|
if arm:
|
|
|
|
split = layout.split()
|
|
|
|
|
2009-07-14 17:59:26 +00:00
|
|
|
col = split.column()
|
|
|
|
col.itemR(arm, "rest_position")
|
|
|
|
|
|
|
|
sub = col.column()
|
2009-06-07 13:36:12 +00:00
|
|
|
sub.itemL(text="Deform:")
|
|
|
|
sub.itemR(arm, "deform_vertexgroups", text="Vertes Groups")
|
|
|
|
sub.itemR(arm, "deform_envelope", text="Envelopes")
|
|
|
|
sub.itemR(arm, "deform_quaternion", text="Quaternion")
|
|
|
|
sub.itemR(arm, "deform_bbone_rest", text="B-Bones Rest")
|
|
|
|
#sub.itemR(arm, "x_axis_mirror")
|
|
|
|
#sub.itemR(arm, "auto_ik")
|
|
|
|
|
|
|
|
sub = split.column()
|
|
|
|
sub.itemL(text="Layers:")
|
2009-06-13 11:21:02 +00:00
|
|
|
sub.template_layers(arm, "layer")
|
|
|
|
sub.itemL(text="Protected Layers:")
|
|
|
|
sub.template_layers(arm, "layer_protection")
|
2009-05-19 15:38:36 +00:00
|
|
|
|
|
|
|
class DATA_PT_display(DataButtonsPanel):
|
2009-05-20 02:17:53 +00:00
|
|
|
__idname__ = "DATA_PT_display"
|
|
|
|
__label__ = "Display"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2009-06-13 21:22:21 +00:00
|
|
|
arm = context.armature
|
2009-05-20 02:17:53 +00:00
|
|
|
|
2009-07-14 17:59:26 +00:00
|
|
|
layout.row().itemR(arm, "drawtype", expand=True)
|
2009-05-19 15:38:36 +00:00
|
|
|
|
2009-07-14 17:59:26 +00:00
|
|
|
sub = layout.column_flow()
|
2009-05-19 15:38:36 +00:00
|
|
|
sub.itemR(arm, "draw_names", text="Names")
|
|
|
|
sub.itemR(arm, "draw_axes", text="Axes")
|
|
|
|
sub.itemR(arm, "draw_custom_bone_shapes", text="Shapes")
|
|
|
|
sub.itemR(arm, "draw_group_colors", text="Colors")
|
2009-07-14 17:59:26 +00:00
|
|
|
sub.itemR(arm, "delay_deform", text="Delay Refresh")
|
2009-05-19 15:38:36 +00:00
|
|
|
|
2009-07-21 10:18:08 +00:00
|
|
|
class DATA_PT_bone_groups(DataButtonsPanel):
|
|
|
|
__idname__ = "DATA_PT_bone_groups"
|
|
|
|
__label__ = "Bone Groups"
|
|
|
|
|
|
|
|
def poll(self, context):
|
|
|
|
return (context.object and context.object.type=='ARMATURE' and context.object.pose)
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
ob = context.object
|
|
|
|
pose= ob.pose
|
|
|
|
|
|
|
|
row = layout.row()
|
|
|
|
|
|
|
|
row.template_list(pose, "bone_groups", pose, "active_bone_group_index")
|
|
|
|
|
|
|
|
col = row.column(align=True)
|
|
|
|
col.itemO("pose.group_add", icon="ICON_ZOOMIN", text="")
|
|
|
|
col.itemO("pose.group_remove", icon="ICON_ZOOMOUT", text="")
|
|
|
|
|
|
|
|
group = pose.active_bone_group
|
|
|
|
if group:
|
|
|
|
row = layout.row()
|
|
|
|
row.itemR(group, "name")
|
|
|
|
|
|
|
|
row = layout.row(align=True)
|
|
|
|
|
|
|
|
row.itemO("pose.group_assign", text="Assign")
|
|
|
|
row.itemO("pose.group_remove", text="Remove") #row.itemO("pose.bone_group_remove_from", text="Remove")
|
|
|
|
#row.itemO("object.bone_group_select", text="Select")
|
|
|
|
#row.itemO("object.bone_group_deselect", text="Deselect")
|
|
|
|
|
2009-05-19 15:38:36 +00:00
|
|
|
class DATA_PT_paths(DataButtonsPanel):
|
2009-05-20 02:17:53 +00:00
|
|
|
__idname__ = "DATA_PT_paths"
|
|
|
|
__label__ = "Paths"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2009-06-13 21:22:21 +00:00
|
|
|
arm = context.armature
|
2009-05-20 02:17:53 +00:00
|
|
|
|
|
|
|
split = layout.split()
|
2009-05-19 15:38:36 +00:00
|
|
|
|
|
|
|
sub = split.column()
|
|
|
|
sub.itemR(arm, "paths_show_around_current_frame", text="Around Frame")
|
2009-07-14 17:59:26 +00:00
|
|
|
col = sub.column(align=True)
|
2009-05-19 15:38:36 +00:00
|
|
|
if (arm.paths_show_around_current_frame):
|
2009-07-14 17:59:26 +00:00
|
|
|
col.itemR(arm, "path_before_current", text="Before")
|
|
|
|
col.itemR(arm, "path_after_current", text="After")
|
2009-05-19 15:38:36 +00:00
|
|
|
else:
|
2009-07-14 17:59:26 +00:00
|
|
|
col.itemR(arm, "path_start_frame", text="Start")
|
|
|
|
col.itemR(arm, "path_end_frame", text="End")
|
2009-05-19 15:38:36 +00:00
|
|
|
|
2009-07-14 17:59:26 +00:00
|
|
|
col.itemR(arm, "path_size", text="Step")
|
2009-05-19 15:38:36 +00:00
|
|
|
sub.itemR(arm, "paths_calculate_head_positions", text="Head")
|
|
|
|
|
|
|
|
sub = split.column()
|
|
|
|
sub.itemL(text="Show:")
|
|
|
|
sub.itemR(arm, "paths_show_frame_numbers", text="Frame Numbers")
|
|
|
|
sub.itemR(arm, "paths_highlight_keyframes", text="Keyframes")
|
|
|
|
sub.itemR(arm, "paths_show_keyframe_numbers", text="Keyframe Numbers")
|
|
|
|
|
|
|
|
class DATA_PT_ghost(DataButtonsPanel):
|
2009-05-20 02:17:53 +00:00
|
|
|
__idname__ = "DATA_PT_ghost"
|
|
|
|
__label__ = "Ghost"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2009-06-13 21:22:21 +00:00
|
|
|
arm = context.armature
|
2009-05-20 02:17:53 +00:00
|
|
|
|
|
|
|
split = layout.split()
|
|
|
|
|
2009-05-19 15:38:36 +00:00
|
|
|
sub = split.column()
|
|
|
|
sub.itemR(arm, "ghost_type", text="Scope")
|
2009-07-14 17:59:26 +00:00
|
|
|
|
|
|
|
col = sub.column(align=True)
|
2009-05-19 15:38:36 +00:00
|
|
|
if arm.ghost_type == 'RANGE':
|
2009-07-14 17:59:26 +00:00
|
|
|
col.itemR(arm, "ghost_start_frame", text="Start")
|
|
|
|
col.itemR(arm, "ghost_end_frame", text="End")
|
|
|
|
col.itemR(arm, "ghost_size", text="Step")
|
2009-05-19 15:38:36 +00:00
|
|
|
elif arm.ghost_type == 'CURRENT_FRAME':
|
2009-07-14 17:59:26 +00:00
|
|
|
col.itemR(arm, "ghost_step", text="Range")
|
|
|
|
col.itemR(arm, "ghost_size", text="Step")
|
2009-05-19 15:38:36 +00:00
|
|
|
|
|
|
|
sub = split.column()
|
|
|
|
sub.itemR(arm, "ghost_only_selected", text="Selected Only")
|
|
|
|
|
2009-07-09 09:42:34 +00:00
|
|
|
bpy.types.register(DATA_PT_context_arm)
|
2009-05-19 15:38:36 +00:00
|
|
|
bpy.types.register(DATA_PT_skeleton)
|
|
|
|
bpy.types.register(DATA_PT_display)
|
2009-07-21 10:18:08 +00:00
|
|
|
bpy.types.register(DATA_PT_bone_groups)
|
2009-05-19 15:38:36 +00:00
|
|
|
bpy.types.register(DATA_PT_paths)
|
2009-06-18 14:20:25 +00:00
|
|
|
bpy.types.register(DATA_PT_ghost)
|