add photoshop create and publish options

This commit is contained in:
Milan Kolar 2021-05-19 21:03:36 +02:00
parent 0f6794e2ba
commit a2deaca800
3 changed files with 78 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{
"create": {
"CreateImage": {
"defaults": [
"Main"
]
}
},
"publish": {
"ExtractImage": {
"formats": [
"png",
"jpg"
]
}
}
}

View file

@ -82,6 +82,10 @@
"type": "schema",
"name": "schema_project_aftereffects"
},
{
"type": "schema",
"name": "schema_project_photoshop"
},
{
"type": "schema",
"name": "schema_project_harmony"

View file

@ -0,0 +1,57 @@
{
"type": "dict",
"collapsible": true,
"key": "photoshop",
"label": "Photoshop",
"is_file": true,
"children": [
{
"type": "dict",
"collapsible": true,
"key": "create",
"label": "Creator plugins",
"children": [
{
"type": "dict",
"collapsible": true,
"key": "CreateImage",
"label": "Create Image",
"children": [
{
"type": "list",
"key": "defaults",
"label": "Default Subsets",
"object_type": "text"
}
]
}
]
},
{
"type": "dict",
"collapsible": true,
"key": "publish",
"label": "Publish plugins",
"children": [
{
"type": "dict",
"collapsible": true,
"key": "ExtractImage",
"label": "Extract Image",
"children": [
{
"type": "label",
"label": "Currently only jpg and png are supported"
},
{
"type": "list",
"key": "formats",
"label": "Extract Formats",
"object_type": "text"
}
]
}
]
}
]
}