mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
🐛 handle single frames
This commit is contained in:
parent
20400b51c9
commit
a209140cd6
2 changed files with 3 additions and 10 deletions
|
|
@ -100,13 +100,11 @@ class ExtractAssStandin(publish.Extractor):
|
|||
representation = {
|
||||
'name': 'ass',
|
||||
'ext': 'ass',
|
||||
'files': filenames,
|
||||
"stagingDir": staging_dir
|
||||
'files': filenames if len(filenames) > 1 else filenames[0],
|
||||
"stagingDir": staging_dir,
|
||||
'frameStart': kwargs["start"]
|
||||
}
|
||||
|
||||
if sequence:
|
||||
representation['frameStart'] = kwargs["start"]
|
||||
|
||||
instance.data["representations"].append(representation)
|
||||
|
||||
self.log.info("Extracted instance '%s' to: %s"
|
||||
|
|
|
|||
|
|
@ -218,11 +218,6 @@
|
|||
"label": "Default Subsets",
|
||||
"object_type": "text"
|
||||
},
|
||||
{
|
||||
"type": "boolean",
|
||||
"key": "exportSequence",
|
||||
"label": "Export Sequence"
|
||||
},
|
||||
{
|
||||
"type": "boolean",
|
||||
"key": "expandProcedurals",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue