From 1bf02c515347ec0c350618c22aa2aa6d5755f33f Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Wed, 3 Mar 2021 10:04:55 +0100 Subject: [PATCH] skip savemode filling --- pype/hosts/tvpaint/plugins/publish/extract_sequence.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pype/hosts/tvpaint/plugins/publish/extract_sequence.py b/pype/hosts/tvpaint/plugins/publish/extract_sequence.py index 576d294c42..6efa22d1cd 100644 --- a/pype/hosts/tvpaint/plugins/publish/extract_sequence.py +++ b/pype/hosts/tvpaint/plugins/publish/extract_sequence.py @@ -190,8 +190,8 @@ class ExtractSequence(pyblish.api.Extractor): return "{{:0>{}}}".format(frame_padding) + ".png" def render( - self, save_mode, filename_template, output_dir, layers, - first_frame, last_frame, thumbnail_filename + self, filename_template, output_dir, layers, + frame_start, frame_end, thumbnail_filename ): """ Export images from TVPaint. @@ -210,9 +210,6 @@ class ExtractSequence(pyblish.api.Extractor): dict: Mapping frame to output filepath. """ - # Add save mode arguments to function - save_mode = "tv_SaveMode {}".format(save_mode) - # Map layers by position layers_by_position = {} layer_ids = []