mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 21:32:15 +01:00
20 lines
493 B
Python
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
|