ayon-core/pype/plugins/maya/create/create_vrayproxy.py
2019-01-28 22:59:57 +01:00

20 lines
493 B
Python

import avalon.maya
class CreateVrayProxy(avalon.maya.Creator):
"""Alembic pointcache for animated data"""
name = "vrayproxy"
label = "VRay Proxy"
family = "vrayproxy"
icon = "gears"
def __init__(self, *args, **kwargs):
super(CreateVrayProxy, self).__init__(*args, **kwargs)
self.data["animation"] = False
self.data["startFrame"] = 1
self.data["endFrame"] = 1
# Write vertex colors
self.data["vertexColors"] = False