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 d48007b273 - Show all commits

View File

@ -17,7 +17,7 @@ def get_task_type(task_type: TaskType) -> str:
def get_shot_task_name(shot: Shot, task_type: TaskType) -> str:
return f"{shot.name}{bkglobals.IN_FILE_DELIMITER}{get_task_type(task_type)}"
return f"{shot.name}{bkglobals.FILE_DELIMITER}{get_task_type(task_type)}"
def get_file_dir(seq: Sequence, shot: Shot, task_type: TaskType) -> Path: