skip savemode filling

This commit is contained in:
iLLiCiTiT 2021-03-03 10:04:55 +01:00
parent e4fc43a1f6
commit 1bf02c5153

View file

@ -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 = []