frames_to_render are now list of integers

Co-authored-by: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com>
This commit is contained in:
Petr Kalis 2024-11-21 12:50:36 +01:00 committed by GitHub
parent de88260dda
commit 630d2d4913
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -371,8 +371,8 @@ def prepare_representations(
" This may cause issues on farm."
).format(staging))
frame_start = int(frames_to_render[0])
frame_end = int(frames_to_render[-1])
frame_start = frames_to_render[0]
frame_end = frames_to_render[-1]
if skeleton_data.get("slate"):
frame_start -= 1