diff --git a/colorbleed/maya/lib.py b/colorbleed/maya/lib.py index 3c75e6c14d..efb29ed35c 100644 --- a/colorbleed/maya/lib.py +++ b/colorbleed/maya/lib.py @@ -40,6 +40,22 @@ SHAPE_ATTRS = ["castsShadows", "doubleSided", "opposite"] +RENDER_ATTRS = {"vray": + { + "node": "vraySettings", + "prefix": "fileNamePrefix", + "padding": "fileNamePadding", + "ext": "imageFormatStr" + }, + "default": + { + "node": "defaultRenderGlobals", + "prefix": "imageFilePrefix", + "padding": "extensionPadding" + } + } + + SHAPE_ATTRS = set(SHAPE_ATTRS)