fix(nks): preview to review tag on representation

order of hierarchy context was wrong
This commit is contained in:
Jakub Jezek 2020-10-08 12:52:55 +02:00
parent b1af132508
commit c2fcfd0aaf
No known key found for this signature in database
GPG key ID: C4B96E101D2A47F3
4 changed files with 4 additions and 4 deletions

View file

@ -217,7 +217,7 @@ class CollectHierarchyContext(pyblish.api.ContextPlugin):
'''
label = "Collect Hierarchy Context"
order = pyblish.api.CollectorOrder + 0.102
order = pyblish.api.CollectorOrder + 0.103
def update_dict(self, ex_dict, new_dict):
for key in ex_dict:

View file

@ -183,7 +183,7 @@ class CollectPlatesData(api.InstancePlugin):
"frameEnd": instance.data["sourceOut"] - instance.data["sourceIn"] + 1,
'step': 1,
'fps': instance.context.data["fps"],
'tags': ["preview"],
'tags': ["review"],
'name': "preview",
'ext': "mov",
}

View file

@ -99,7 +99,7 @@ class CollectReviews(api.InstancePlugin):
"step": 1,
"fps": rev_inst.data.get("fps"),
"name": "preview",
"tags": ["preview"],
"tags": ["review"],
"ext": ext
}

View file

@ -227,7 +227,7 @@ class ExtractReviewCutUpVideo(pype.api.Extractor):
"step": 1,
"fps": fps,
"name": "cut_up_preview",
"tags": ["review", "delete"] + self.tags_addition,
"tags": ["review"] + self.tags_addition,
"ext": ext,
"anatomy_template": "publish"
}