give beauty name to RGB

This commit is contained in:
Kayla Man 2023-05-27 00:53:40 +08:00
parent c14525f371
commit 32562e0b39
2 changed files with 1 additions and 5 deletions

View file

@ -39,7 +39,7 @@ class CollectRender(pyblish.api.InstancePlugin):
full_render_list = beauty_list
files_by_aov = {
"max_beauty": beauty_list
"beauty": beauty_list
}
folder = folder.replace("\\", "/")

View file

@ -488,15 +488,11 @@ class ProcessSubmittedJobOnFarm(pyblish.api.InstancePlugin):
if cam:
if aov:
subset_name = '{}_{}_{}'.format(group_name, cam, aov)
if aov == "max_beauty":
subset_name = '{}_{}'.format(group_name, cam)
else:
subset_name = '{}_{}'.format(group_name, cam)
else:
if aov:
subset_name = '{}_{}'.format(group_name, aov)
if aov == "max_beauty":
subset_name = '{}'.format(group_name)
else:
subset_name = '{}'.format(group_name)