Blender Kitsu: Fix Don't replace existing actions during Check Action Names #75

Merged
Nick Alberelli merged 3 commits from fix/check-action-names-extra-actions into main 2023-06-07 17:08:04 +02:00
Showing only changes of commit 69a4f03415 - Show all commits

View File

@ -108,7 +108,9 @@ class KITSU_OT_anim_check_action_names(bpy.types.Operator):
"if they follow the Blender Studio naming convention"
)
wrong: List[Tuple[bpy.types.Action, str]] = []
created: List[Tuple[bpy.types.Action, str]] = []
cleanup_empty_actions: bpy.props.BoolProperty(name="Delete Empty Action Data-Blocks", default=False, description="Remove any empty action data-blocks, actions that have 0 Fcurves/Keyframes")
# List of tuples that contains the action on index 0 with the wrong name
# and the name it should have on index 1.
@ -120,7 +122,9 @@ class KITSU_OT_anim_check_action_names(bpy.types.Operator):
if bpy.data.actions.get(action_name):
return bpy.data.actions.get(action_name)
else:
return bpy.data.actions.new(action_name)
new_action = bpy.data.actions.new(action_name)
self.created.append(new_action)
return new_action
def execute(self, context: bpy.types.Context) -> Set[str]:
active_shot = cache.shot_active_get()
@ -178,7 +182,9 @@ class KITSU_OT_anim_check_action_names(bpy.types.Operator):
report_str += f" | Removed Empty Actions: {len(removed)}"
if failed:
report_state = "WARNING"
report_str += f" | Failed: {len(failed)}"
report_str += f" | Rename Failed: {len(failed)}"
if len(self.created) != 0:
report_str += f" | Created Actions: {len(self.created)}"