mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
- `frameRate` to `fps` - `startFrame` to `frameStart` - `endFrame` to `frameEnd` - `fstart` to `frameStart` - `fend` to `frameEnd` - `handle_start` to `handleStart` - `handle_end` to `handleEnd` - `resolution_width` to `resolutionWidth` - `resolution_height` to `resolutionHeight` - `pixel_aspect` to `pixelAspect`
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["frameStart"] = 1
|
|
self.data["frameEnd"] = 1
|
|
|
|
# Write vertex colors
|
|
self.data["vertexColors"] = False
|