From 00e1a042f4ac821ef840312f4ea10570c69130bb Mon Sep 17 00:00:00 2001 From: Roy Nieterau Date: Mon, 14 Feb 2022 14:52:41 +0100 Subject: [PATCH] Add "render" family so loaders and actions work on rendered output --- openpype/hosts/fusion/plugins/load/actions.py | 6 ++++-- openpype/hosts/fusion/plugins/load/load_sequence.py | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/openpype/hosts/fusion/plugins/load/actions.py b/openpype/hosts/fusion/plugins/load/actions.py index e1cdc6a41b..6af99e4c56 100644 --- a/openpype/hosts/fusion/plugins/load/actions.py +++ b/openpype/hosts/fusion/plugins/load/actions.py @@ -12,7 +12,8 @@ class FusionSetFrameRangeLoader(api.Loader): "camera", "imagesequence", "yeticache", - "pointcache"] + "pointcache", + "render"] representations = ["*"] label = "Set frame range" @@ -45,7 +46,8 @@ class FusionSetFrameRangeWithHandlesLoader(api.Loader): "camera", "imagesequence", "yeticache", - "pointcache"] + "pointcache", + "render"] representations = ["*"] label = "Set frame range (with handles)" diff --git a/openpype/hosts/fusion/plugins/load/load_sequence.py b/openpype/hosts/fusion/plugins/load/load_sequence.py index 667d50ed45..5d9cad61bb 100644 --- a/openpype/hosts/fusion/plugins/load/load_sequence.py +++ b/openpype/hosts/fusion/plugins/load/load_sequence.py @@ -120,7 +120,7 @@ def loader_shift(loader, frame, relative=True): class FusionLoadSequence(api.Loader): """Load image sequence into Fusion""" - families = ["imagesequence", "review"] + families = ["imagesequence", "review", "render"] representations = ["*"] label = "Load sequence"