From 4b5b725521fdc849b8bfcb3322a81cf326ffa625 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Wed, 11 Nov 2020 17:13:10 +0100 Subject: [PATCH] export first frame all the time --- pype/plugins/tvpaint/publish/extract_sequence.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pype/plugins/tvpaint/publish/extract_sequence.py b/pype/plugins/tvpaint/publish/extract_sequence.py index 906c183b90..de0a547540 100644 --- a/pype/plugins/tvpaint/publish/extract_sequence.py +++ b/pype/plugins/tvpaint/publish/extract_sequence.py @@ -264,6 +264,11 @@ class ExtractSequence(pyblish.api.Extractor): new_layer_id, first_frame, last_frame ) + # TODO what if there is not exposue frames? + # - this force to have first frame all the time + if first_frame not in exposure_frames: + exposure_frames.insert(0, first_frame) + # Restart george script lines george_script_lines = [] george_script_lines.append(save_mode)