aov filtering

This commit is contained in:
Kayla Man 2022-11-22 18:56:20 +08:00
parent 33974c39d4
commit 7bf1d0bc9b
2 changed files with 2 additions and 3 deletions

View file

@ -1054,7 +1054,6 @@ class RenderProductsRedshift(ARenderProducts):
# Any AOVs that still get processed, like Cryptomatte
# by themselves are not multipart files.
# aov_multipart = not multipart
# Redshift skips rendering of masterlayer without AOV suffix
# when a Beauty AOV is rendered. It overrides the main layer.

View file

@ -500,7 +500,7 @@ class ProcessSubmittedJobOnFarm(pyblish.api.InstancePlugin):
if instance_data.get("multipartExr"):
preview = True
self.log.info("preview:{}".format(preview))
self.log.debug("preview:{}".format(preview))
new_instance = deepcopy(instance_data)
new_instance["subset"] = subset_name
new_instance["subsetGroup"] = group_name
@ -543,7 +543,7 @@ class ProcessSubmittedJobOnFarm(pyblish.api.InstancePlugin):
if new_instance.get("extendFrames", False):
self._copy_extend_frames(new_instance, rep)
instances.append(new_instance)
self.log.info("instances:{}".format(instances))
self.log.debug("instances:{}".format(instances))
return instances
def _get_representations(self, instance, exp_files):