added initial settings for families

This commit is contained in:
iLLiCiTiT 2021-09-17 18:43:07 +02:00
parent 9433ffe049
commit 7ccc1bc010
3 changed files with 71 additions and 0 deletions

View file

@ -287,6 +287,15 @@
"textures"
]
}
},
"loader": {
"family_filter_profiles": [
{
"hosts": [],
"task_types": [],
"filter_families": []
}
]
}
},
"project_folder_structure": "{\"__project_root__\": {\"prod\": {}, \"resources\": {\"footage\": {\"plates\": {}, \"offline\": {}}, \"audio\": {}, \"art_dept\": {}}, \"editorial\": {}, \"assets[ftrack.Library]\": {\"characters[ftrack]\": {}, \"locations[ftrack]\": {}}, \"shots[ftrack.Sequence]\": {\"scripts\": {}, \"editorial[ftrack.Folder]\": {}}}}",

View file

@ -190,6 +190,48 @@
}
}
]
},
{
"type": "dict",
"collapsible": true,
"key": "loader",
"label": "Loader",
"children": [
{
"type": "list",
"key": "family_filter_profiles",
"label": "Family filtering",
"use_label_wrap": true,
"object_type": {
"type": "dict",
"children": [
{
"type": "hosts-enum",
"key": "hosts",
"label": "Hosts",
"multiselection": true
},
{
"type": "task-types-enum",
"key": "task_types",
"label": "Task types"
},
{
"type": "splitter"
},
{
"type": "template",
"name": "template_publish_families",
"template_data": {
"key": "filter_families",
"label": "Filter families",
"multiselection": true
}
}
]
}
}
]
}
]
}

View file

@ -0,0 +1,20 @@
[
{
"__default_values__": {
"multiselection": true
}
},
{
"key": "{key}",
"label": "{label}",
"multiselection": "{multiselection}",
"type": "enum",
"enum_items": [
{"family1": "family1"},
{"family2": "family2"},
{"family3": "family3"},
{"family4": "family4"},
{"family5": "family5"}
]
}
]