Blender Kitsu: Refactor Shot Builder #183

Merged
Nick Alberelli merged 55 commits from TinyNick/blender-studio-pipeline:feature/shot-builder-2 into main 2023-12-21 23:58:21 +01:00
Showing only changes of commit a0030aeb81 - Show all commits

View File

@ -254,10 +254,7 @@ class KITSU_OT_build_new_shot(bpy.types.Operator):
# Save File # Save File
if self.save_file: if self.save_file:
save_shot_builder_file(file_path=shot_file_path_str) save_shot_builder_file(file_path=shot_file_path_str)
print("Create shot with the following details") # TODO Remove
print(f"Seq Name: '{seq.name}' Seq ID: '{self.seq_id}'")
print(f"Shot Name: '{shot.name}' Shot ID: '{self.shot_id}'")
print(f"Task Type Name: '{task_type.name}' Task Type ID: `{self.task_type}`")
self.report( self.report(
{"INFO"}, f"Successfully Built Shot:`{shot.name}` Task: `{task_type.name}`" {"INFO"}, f"Successfully Built Shot:`{shot.name}` Task: `{task_type.name}`"
) )