mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 22:02:15 +01:00
19 lines
560 B
Python
19 lines
560 B
Python
# Metadata ID of loaded container into scene
|
|
AVALON_CONTAINER_ID = AYON_CONTAINER_ID = "pyblish.avalon.container"
|
|
|
|
# TODO get extensions from host implementations
|
|
HOST_WORKFILE_EXTENSIONS = {
|
|
"blender": [".blend"],
|
|
"celaction": [".scn"],
|
|
"tvpaint": [".tvpp"],
|
|
"fusion": [".comp"],
|
|
"harmony": [".zip"],
|
|
"houdini": [".hip", ".hiplc", ".hipnc"],
|
|
"maya": [".ma", ".mb"],
|
|
"nuke": [".nk"],
|
|
"hiero": [".hrox"],
|
|
"photoshop": [".psd", ".psb"],
|
|
"premiere": [".prproj"],
|
|
"resolve": [".drp"],
|
|
"aftereffects": [".aep"]
|
|
}
|