mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 22:02:15 +01:00
fix the bug of failing to extract the look with the UDIMs format in AiImage
This commit is contained in:
parent
ed13f96a12
commit
13bc6cab8e
1 changed files with 2 additions and 2 deletions
|
|
@ -430,11 +430,11 @@ class ExtractLook(openpype.api.Extractor):
|
|||
color_space = "Raw"
|
||||
else:
|
||||
try:
|
||||
if files_metadata[source]["color_space"] == "Raw":
|
||||
if files_metadata[source]["color_space"] == "Raw":
|
||||
# set color space to raw if we linearized it
|
||||
color_space = "Raw"
|
||||
except KeyError:
|
||||
#set color space to Raw if the attribute of the color space is raw.
|
||||
# set color space to Raw if the attribute of the color space is raw.
|
||||
if cmds.getAttr(color_space_attr) == "Raw":
|
||||
color_space = "Raw"
|
||||
# Remap file node filename to destination
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue