From 56f2edfa53a7cf4bde01cc69b8c1ae28514d90bd Mon Sep 17 00:00:00 2001 From: Petr Kalis Date: Wed, 17 May 2023 16:56:59 +0200 Subject: [PATCH] Add prerender family to collector for RR path --- .../plugins/publish/collect_rr_path_from_instance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openpype/modules/royalrender/plugins/publish/collect_rr_path_from_instance.py b/openpype/modules/royalrender/plugins/publish/collect_rr_path_from_instance.py index e21cd7c39f..ff5040c8df 100644 --- a/openpype/modules/royalrender/plugins/publish/collect_rr_path_from_instance.py +++ b/openpype/modules/royalrender/plugins/publish/collect_rr_path_from_instance.py @@ -7,7 +7,7 @@ class CollectRRPathFromInstance(pyblish.api.InstancePlugin): order = pyblish.api.CollectorOrder label = "Collect Royal Render path name from the Instance" - families = ["render"] + families = ["render", "prerender"] def process(self, instance): instance.data["rrPathName"] = self._collect_rr_path_name(instance)