Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

hiero: fix effect collector name and order #2673

Merged
merged 1 commit into from
Feb 9, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down