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

NukeStudio: broken order of plugins #620

Merged
merged 1 commit into from
Oct 8, 2020
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions pype/hosts/nuke/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -1065,7 +1065,7 @@ class BuildWorkfile(WorkfileSettings):
Building first version of workfile.

Settings are taken from presets and db. It will add all subsets
in last version for defined representaions
in last version for defined representations

Arguments:
variable (type): description
Expand Down Expand Up @@ -1233,7 +1233,7 @@ def process(self,
log.info("Building Loader to: `{}`".format(name))
version = subset["version"]
log.info("Version to: `{}`".format(version["name"]))
representations = subset["representaions"]
representations = subset["representations"]
for repr in representations:
rn = self.read_loader(repr)
rn["xpos"].setValue(self.xpos)
Expand All @@ -1247,7 +1247,7 @@ def process(self,

if len(lut_subset) > 0:
lsub = lut_subset[0]
fxn = self.effect_loader(lsub["representaions"][-1])
fxn = self.effect_loader(lsub["representations"][-1])
fxn_ypos = fxn["ypos"].value()
fxn["ypos"].setValue(fxn_ypos - 100)
nodes_backdrop.append(fxn)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class CollectHierarchyInstance(pyblish.api.ContextPlugin):
"""

label = "Collect Hierarchy Clip"
order = pyblish.api.CollectorOrder + 0.101
order = pyblish.api.CollectorOrder + 0.102
families = ["clip"]

def convert_to_entity(self, key, value):
Expand Down