Blender Kitsu: Include Episode in Shot Builder Paths & Improve 3d_start #192

Merged
Nick Alberelli merged 6 commits from TinyNick/blender-studio-pipeline:feature/shot-builder-episode-support into main 2024-01-05 21:27:24 +01:00
Showing only changes of commit 6adf7cdd30 - Show all commits

View File

@ -49,7 +49,7 @@ class KITSU_PT_vi3d_anim_tools(bpy.types.Panel):
def poll(cls, context: bpy.types.Context) -> bool: def poll(cls, context: bpy.types.Context) -> bool:
return bool( return bool(
prefs.session_auth(context) prefs.session_auth(context)
and cache.task_type_active_get().name == 'Animation' and cache.task_type_active_get().name in ['Animation', 'Layout']
) )
def draw(self, context: bpy.types.Context) -> None: def draw(self, context: bpy.types.Context) -> None: