2010-01-19 11:31:49 +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.
|
|
|
|
#
|
|
|
|
# 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,
|
2010-02-12 13:34:04 +00:00
|
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2010-01-19 11:31:49 +00:00
|
|
|
#
|
|
|
|
# ##### END GPL LICENSE BLOCK #####
|
|
|
|
|
|
|
|
# <pep8 compliant>
|
|
|
|
|
|
|
|
# Generic Panels (Independent of DataType)
|
|
|
|
|
2011-03-21 12:35:49 +00:00
|
|
|
# NOTE:
|
|
|
|
# The specialised panel types are derived in their respective UI modules
|
|
|
|
# dont register these classes since they are only helpers.
|
|
|
|
|
2010-01-31 14:46:28 +00:00
|
|
|
|
2010-08-02 02:55:12 +00:00
|
|
|
class MotionPathButtonsPanel():
|
2010-01-19 11:31:49 +00:00
|
|
|
bl_space_type = 'PROPERTIES'
|
|
|
|
bl_region_type = 'WINDOW'
|
|
|
|
bl_label = "Motion Paths"
|
2010-08-26 01:05:37 +00:00
|
|
|
bl_options = {'DEFAULT_CLOSED'}
|
2010-01-19 11:31:49 +00:00
|
|
|
|
2010-08-06 15:17:44 +00:00
|
|
|
def draw_settings(self, context, avs, bones=False):
|
2010-01-19 11:31:49 +00:00
|
|
|
layout = self.layout
|
2010-01-31 14:46:28 +00:00
|
|
|
|
2010-08-18 08:26:18 +00:00
|
|
|
mps = avs.motion_path
|
2010-01-31 14:46:28 +00:00
|
|
|
|
2010-08-06 15:17:44 +00:00
|
|
|
layout.prop(mps, "type", expand=True)
|
2010-01-19 11:31:49 +00:00
|
|
|
|
|
|
|
split = layout.split()
|
|
|
|
|
|
|
|
col = split.column()
|
|
|
|
sub = col.column(align=True)
|
|
|
|
if (mps.type == 'CURRENT_FRAME'):
|
2010-08-20 06:09:58 +00:00
|
|
|
sub.prop(mps, "frame_before", text="Before")
|
|
|
|
sub.prop(mps, "frame_after", text="After")
|
2010-01-19 11:31:49 +00:00
|
|
|
elif (mps.type == 'RANGE'):
|
2010-04-01 21:44:56 +00:00
|
|
|
sub.prop(mps, "frame_start", text="Start")
|
|
|
|
sub.prop(mps, "frame_end", text="End")
|
2010-01-19 11:31:49 +00:00
|
|
|
|
|
|
|
sub.prop(mps, "frame_step", text="Step")
|
|
|
|
if bones:
|
|
|
|
col.row().prop(mps, "bake_location", expand=True)
|
|
|
|
|
2010-08-06 15:17:44 +00:00
|
|
|
col = split.column()
|
2010-01-19 11:31:49 +00:00
|
|
|
col.label(text="Display:")
|
|
|
|
col.prop(mps, "show_frame_numbers", text="Frame Numbers")
|
2010-08-17 17:03:52 +00:00
|
|
|
col.prop(mps, "show_keyframe_highlight", text="Keyframes")
|
2010-05-20 12:31:55 +00:00
|
|
|
if bones:
|
2010-08-17 17:03:52 +00:00
|
|
|
col.prop(mps, "show_keyframe_action_all", text="+ Non-Grouped Keyframes")
|
2010-01-19 11:31:49 +00:00
|
|
|
col.prop(mps, "show_keyframe_numbers", text="Keyframe Numbers")
|
|
|
|
|
2010-01-31 14:46:28 +00:00
|
|
|
|
2010-01-19 11:31:49 +00:00
|
|
|
# FIXME: this panel still needs to be ported so that it will work correctly with animviz
|
2010-08-02 02:55:12 +00:00
|
|
|
class OnionSkinButtonsPanel():
|
2010-01-19 11:31:49 +00:00
|
|
|
bl_space_type = 'PROPERTIES'
|
|
|
|
bl_region_type = 'WINDOW'
|
|
|
|
bl_label = "Onion Skinning"
|
2010-08-26 01:05:37 +00:00
|
|
|
bl_options = {'DEFAULT_CLOSED'}
|
2010-01-19 11:31:49 +00:00
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
arm = context.armature
|
|
|
|
|
2010-08-06 15:17:44 +00:00
|
|
|
layout.prop(arm, "ghost_type", expand=True)
|
2010-01-19 11:31:49 +00:00
|
|
|
|
|
|
|
split = layout.split()
|
|
|
|
|
|
|
|
col = split.column()
|
|
|
|
|
|
|
|
sub = col.column(align=True)
|
|
|
|
if arm.ghost_type == 'RANGE':
|
2010-04-01 21:44:56 +00:00
|
|
|
sub.prop(arm, "ghost_frame_start", text="Start")
|
|
|
|
sub.prop(arm, "ghost_frame_end", text="End")
|
2010-01-19 11:31:49 +00:00
|
|
|
sub.prop(arm, "ghost_size", text="Step")
|
|
|
|
elif arm.ghost_type == 'CURRENT_FRAME':
|
|
|
|
sub.prop(arm, "ghost_step", text="Range")
|
|
|
|
sub.prop(arm, "ghost_size", text="Step")
|
|
|
|
|
2010-08-06 15:17:44 +00:00
|
|
|
col = split.column()
|
2010-01-19 11:31:49 +00:00
|
|
|
col.label(text="Display:")
|
2010-08-17 17:03:52 +00:00
|
|
|
col.prop(arm, "show_only_ghost_selected", text="Selected Only")
|
2011-04-04 10:13:04 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__": # only for live edit.
|
2011-07-10 17:26:15 +00:00
|
|
|
import bpy
|
2011-04-04 10:13:04 +00:00
|
|
|
bpy.utils.register_module(__name__)
|