Вы можете использовать listConnections
, чтобы получить список файлов текстур, связанных с вашим материалом, затем просто используйте getAttr
, чтобы запросить его:
# Example of having a texture file on a Blinn's color property.
texture_files = cmds.listConnections("blinn1.color", type="file")
if texture_files:
print cmds.getAttr("{}.colorSpace".format(texture_files[0]))
# Result: sRGB