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

Commit

Permalink
Merge pull request #1984 from pypeclub/bugfix/precolletor-order
Browse files Browse the repository at this point in the history
nuke, resolve, hiero: precollector order lest then 0.5
  • Loading branch information
jakubjezek001 authored Sep 13, 2021
2 parents c431d86 + 8399de9 commit e2bcd23
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
class PreCollectClipEffects(pyblish.api.InstancePlugin):
"""Collect soft effects instances."""

order = pyblish.api.CollectorOrder - 0.579
order = pyblish.api.CollectorOrder - 0.479
label = "Precollect Clip Effects Instances"
families = ["clip"]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
class PrecollectInstances(pyblish.api.ContextPlugin):
"""Collect all Track items selection."""

order = pyblish.api.CollectorOrder - 0.59
order = pyblish.api.CollectorOrder - 0.49
label = "Precollect Instances"
hosts = ["hiero"]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class PrecollectWorkfile(pyblish.api.ContextPlugin):
"""Inject the current working file into context"""

label = "Precollect Workfile"
order = pyblish.api.CollectorOrder - 0.6
order = pyblish.api.CollectorOrder - 0.5

def process(self, context):

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class PreCollectNukeInstances(pyblish.api.ContextPlugin):
"""Collect all nodes with Avalon knob."""

order = pyblish.api.CollectorOrder - 0.59
order = pyblish.api.CollectorOrder - 0.49
label = "Pre-collect Instances"
hosts = ["nuke", "nukeassist"]

Expand Down
2 changes: 1 addition & 1 deletion openpype/hosts/nuke/plugins/publish/precollect_workfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class CollectWorkfile(pyblish.api.ContextPlugin):
"""Collect current script for publish."""

order = pyblish.api.CollectorOrder - 0.60
order = pyblish.api.CollectorOrder - 0.50
label = "Pre-collect Workfile"
hosts = ['nuke']

Expand Down
2 changes: 1 addition & 1 deletion openpype/hosts/nuke/plugins/publish/precollect_writes.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class CollectNukeWrites(pyblish.api.InstancePlugin):
"""Collect all write nodes."""

order = pyblish.api.CollectorOrder - 0.58
order = pyblish.api.CollectorOrder - 0.48
label = "Pre-collect Writes"
hosts = ["nuke", "nukeassist"]
families = ["write"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class PrecollectInstances(pyblish.api.ContextPlugin):
"""Collect all Track items selection."""

order = pyblish.api.CollectorOrder - 0.59
order = pyblish.api.CollectorOrder - 0.49
label = "Precollect Instances"
hosts = ["resolve"]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class PrecollectWorkfile(pyblish.api.ContextPlugin):
"""Precollect the current working file into context"""

label = "Precollect Workfile"
order = pyblish.api.CollectorOrder - 0.6
order = pyblish.api.CollectorOrder - 0.5

def process(self, context):

Expand Down

0 comments on commit e2bcd23

Please sign in to comment.