added aftereffects to application schemas

This commit is contained in:
iLLiCiTiT 2020-11-25 15:56:55 +01:00
parent c77946c181
commit 576c359b4f
3 changed files with 110 additions and 2 deletions

View file

@ -862,8 +862,11 @@
"is_host": true,
"environment": {
"__environment_keys__": {
"tvpaint": []
}
"tvpaint": [
"PYPE_LOG_NO_COLORS"
]
},
"PYPE_LOG_NO_COLORS": "True"
},
"variants": {
"tvpaint_Animation 11 (64bits)": {
@ -944,6 +947,66 @@
}
}
},
"aftereffects": {
"enabled": true,
"label": "Adobe AfterEffects",
"icon": "{}/app_icons/aftereffects.png",
"is_host": true,
"environment": {
"__environment_keys__": {
"aftereffects": [
"AVALON_AFTEREFFECTS_WORKFILES_ON_LAUNCH",
"PYTHONPATH",
"PYPE_LOG_NO_COLORS",
"WEBSOCKET_URL",
"WORKFILES_SAVE_AS"
]
},
"AVALON_AFTEREFFECTS_WORKFILES_ON_LAUNCH": "1",
"PYTHONPATH": "{PYTHONPATH}",
"PYPE_LOG_NO_COLORS": "Yes",
"WEBSOCKET_URL": "ws://localhost:8097/ws/",
"WORKFILES_SAVE_AS": "Yes"
},
"variants": {
"aftereffects_2020": {
"enabled": true,
"label": "",
"variant_label": "2020",
"icon": "",
"executables": {
"windows": [
"C:\\Program Files\\Adobe\\Adobe After Effects 2020\\Support Files\\AfterFX.exe"
],
"darwin": [],
"linux": []
},
"environment": {
"__environment_keys__": {
"aftereffects_2020": []
}
}
},
"aftereffects_2021": {
"enabled": true,
"label": "",
"variant_label": "2021",
"icon": "",
"executables": {
"windows": [
"C:\\Program Files\\Adobe\\Adobe After Effects 2021\\Support Files\\AfterFX.exe"
],
"darwin": [],
"linux": []
},
"environment": {
"__environment_keys__": {
"aftereffects_2021": []
}
}
}
}
},
"celaction": {
"enabled": true,
"label": "CelAction 2D",

View file

@ -0,0 +1,41 @@
{
"type": "dict",
"key": "aftereffects",
"label": "Adobe AfterEffects",
"collapsable": true,
"checkbox_key": "enabled",
"children": [{
"type": "boolean",
"key": "enabled",
"label": "Enabled"
},
{
"type": "schema_template",
"name": "template_host_unchangables"
},
{
"key": "environment",
"label": "Environment",
"type": "raw-json",
"env_group_key": "aftereffects"
},
{
"type": "dict-invisible",
"key": "variants",
"children": [{
"type": "schema_template",
"name": "template_host_variant",
"template_data": [
{
"host_version": "2020",
"host_name": "aftereffects"
},
{
"host_version": "2021",
"host_name": "aftereffects"
}
]
}]
}
]
}

View file

@ -73,6 +73,10 @@
"type": "schema",
"name": "schema_photoshop"
},
{
"type": "schema",
"name": "schema_aftereffects"
},
{
"type": "schema",
"name": "schema_celaction"