From 43f1574719e630bfe9c43a1ec75063498b59eb8d Mon Sep 17 00:00:00 2001 From: Jakub Jezek Date: Tue, 8 Feb 2022 14:43:45 +0100 Subject: [PATCH] hiero: fix effect collector name and order --- .../{precollect_clip_effects.py => collect_clip_effects.py} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename openpype/hosts/hiero/plugins/publish/{precollect_clip_effects.py => collect_clip_effects.py} (97%) diff --git a/openpype/hosts/hiero/plugins/publish/precollect_clip_effects.py b/openpype/hosts/hiero/plugins/publish/collect_clip_effects.py similarity index 97% rename from openpype/hosts/hiero/plugins/publish/precollect_clip_effects.py rename to openpype/hosts/hiero/plugins/publish/collect_clip_effects.py index 9ade7603e01..8d2ed9a9c26 100644 --- a/openpype/hosts/hiero/plugins/publish/precollect_clip_effects.py +++ b/openpype/hosts/hiero/plugins/publish/collect_clip_effects.py @@ -2,11 +2,11 @@ import pyblish.api -class PreCollectClipEffects(pyblish.api.InstancePlugin): +class CollectClipEffects(pyblish.api.InstancePlugin): """Collect soft effects instances.""" - order = pyblish.api.CollectorOrder - 0.479 - label = "Precollect Clip Effects Instances" + order = pyblish.api.CollectorOrder - 0.078 + label = "Collect Clip Effects Instances" families = ["clip"] def process(self, instance):