flame: adding clip loader to current batch

This commit is contained in:
Jakub Jezek 2022-03-25 15:56:12 +01:00
parent 585d53deee
commit ed4388184a
No known key found for this signature in database
GPG key ID: D8548FBF690B100A
3 changed files with 199 additions and 0 deletions

View file

@ -92,6 +92,28 @@
"reel_group_name": "OpenPype_Reels",
"reel_name": "Loaded",
"clip_name_template": "{asset}_{subset}_{representation}"
},
"LoadClipBatch": {
"enabled": true,
"families": [
"render2d",
"source",
"plate",
"render",
"review"
],
"representations": [
"exr",
"dpx",
"jpg",
"jpeg",
"png",
"h264",
"mov",
"mp4"
],
"reel_name": "OP_LoadedReel",
"clip_name_template": "{asset}_{subset}_{representation}"
}
}
}

View file

@ -376,6 +376,48 @@
"label": "Clip name template"
}
]
},
{
"type": "dict",
"collapsible": true,
"key": "LoadClipBatch",
"label": "Load as clip to current batch",
"checkbox_key": "enabled",
"children": [
{
"type": "boolean",
"key": "enabled",
"label": "Enabled"
},
{
"type": "list",
"key": "families",
"label": "Families",
"object_type": "text"
},
{
"type": "list",
"key": "representations",
"label": "Representations",
"object_type": "text"
},
{
"type": "separator"
},
{
"type": "text",
"key": "reel_name",
"label": "Reel name"
},
{
"type": "separator"
},
{
"type": "text",
"key": "clip_name_template",
"label": "Clip name template"
}
]
}
]
}