mirror of https://github.com/H-uru/korman.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
3.6 KiB
92 lines
3.6 KiB
# This file is part of Korman. |
|
# |
|
# Korman 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 3 of the License, or |
|
# (at your option) any later version. |
|
# |
|
# Korman 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 Korman. If not, see <http://www.gnu.org/licenses/>. |
|
|
|
import bpy |
|
|
|
def _check_for_anim(layout, context): |
|
if context.object.animation_data is None or context.object.animation_data.action is None: |
|
layout.label("Object has no animation data", icon="ERROR") |
|
return False |
|
return True |
|
|
|
def animation(modifier, layout, context): |
|
if not _check_for_anim(layout, context): |
|
return |
|
action = context.object.animation_data.action |
|
|
|
split = layout.split() |
|
col = split.column() |
|
col.prop(modifier, "auto_start") |
|
col = split.column() |
|
col.prop(modifier, "loop") |
|
|
|
layout.prop_search(modifier, "initial_marker", action, "pose_markers", icon="PMARKER") |
|
col = layout.column() |
|
col.enabled = modifier.loop |
|
col.prop_search(modifier, "loop_start", action, "pose_markers", icon="PMARKER") |
|
col.prop_search(modifier, "loop_end", action, "pose_markers", icon="PMARKER") |
|
|
|
|
|
class GroupListUI(bpy.types.UIList): |
|
def draw_item(self, context, layout, data, item, icon, active_data, active_property, index=0, flt_flag=0): |
|
layout.prop_search(item, "object_name", bpy.data, "objects", icon="ACTION") |
|
|
|
|
|
def animation_group(modifier, layout, context): |
|
if not _check_for_anim(layout, context): |
|
return |
|
|
|
row = layout.row() |
|
row.template_list("GroupListUI", "children", modifier, "children", modifier, "active_child_index", |
|
rows=3, maxrows=4) |
|
col = row.column(align=True) |
|
op = col.operator("object.plasma_modifier_collection_add", icon="ZOOMIN", text="") |
|
op.modifier = modifier.pl_id |
|
op.collection = "children" |
|
op = col.operator("object.plasma_modifier_collection_remove", icon="ZOOMOUT", text="") |
|
op.modifier = modifier.pl_id |
|
op.collection = "children" |
|
op.index = modifier.active_child_index |
|
|
|
|
|
class LoopListUI(bpy.types.UIList): |
|
def draw_item(self, context, layout, data, item, icon, active_data, active_property, index=0, flt_flag=0): |
|
layout.prop(item, "loop_name", emboss=False, text="", icon="PMARKER_ACT") |
|
|
|
|
|
def animation_loop(modifier, layout, context): |
|
if not _check_for_anim(layout, context): |
|
return |
|
|
|
row = layout.row() |
|
row.template_list("LoopListUI", "loops", modifier, "loops", modifier, "active_loop_index", |
|
rows=2, maxrows=3) |
|
col = row.column(align=True) |
|
op = col.operator("object.plasma_modifier_collection_add", icon="ZOOMIN", text="") |
|
op.modifier = modifier.pl_id |
|
op.collection = "loops" |
|
op.name_prefix = "Loop" |
|
op.name_prop = "loop_name" |
|
op = col.operator("object.plasma_modifier_collection_remove", icon="ZOOMOUT", text="") |
|
op.modifier = modifier.pl_id |
|
op.collection = "loops" |
|
op.index = modifier.active_loop_index |
|
|
|
# Modify the loop points |
|
if modifier.loops: |
|
action = context.object.animation_data.action |
|
loop = modifier.loops[modifier.active_loop_index] |
|
layout.prop_search(loop, "loop_start", action, "pose_markers", icon="PMARKER") |
|
layout.prop_search(loop, "loop_end", action, "pose_markers", icon="PMARKER")
|
|
|