flame: add bool to settings to control if range will be added to repres

This commit is contained in:
Jakub Jezek 2022-01-14 12:57:26 +01:00
parent 183acf4bd3
commit aa39f98ae6
No known key found for this signature in database
GPG key ID: D8548FBF690B100A
3 changed files with 8 additions and 0 deletions

View file

@ -21,12 +21,14 @@ class ExtractSubsetResources(openpype.api.Extractor):
"ext": "jpg",
"xmlPresetFile": "Jpeg (8-bit).xml",
"xmlPresetDir": "",
"representationAddRange": False,
"representationTags": ["thumbnail"]
},
"ftrackpreview": {
"ext": "mov",
"xmlPresetFile": "Apple iPad (1920x1080).xml",
"xmlPresetDir": "",
"representationAddRange": False,
"representationTags": [
"review",
"delete"

View file

@ -24,6 +24,7 @@
"ext": "exr",
"xmlPresetDir": "",
"xmlPresetFile": "OpenEXR (16-bit fp DWAA).xml",
"representationAddRange": false,
"representationTags": []
}
}

View file

@ -159,6 +159,11 @@
{
"type": "separator"
},
{
"type": "boolean",
"key": "representationAddRange",
"label": "Add frame range to representation"
},
{
"type": "list",
"key": "representationTags",