You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thumbnails are being generated for files that were not just rendered.
I have images for 2 scene files (A and B) in the images directory
I've just rendered 1-10 of B
I've rendered 1-10 images for A sometime in the past
The rendering job for B will generate thumbails for both A and B frames 1-10.
In this case I should only generate thumbnails for B, not A (as they presumably already exist). It looks like this loop should also check for the against the basename of the file.
There's another bug here where if you have a filename like images/run3.exr you'll get images/run3.0001.exr. The regex here will extract 3, not 0001. And if you render frames 1-1 then it won't generate any thumbnails because 3 is not >= 1 && <= 1.
thumbnails are being generated for files that were not just rendered.
In this case I should only generate thumbnails for B, not A (as they presumably already exist). It looks like this loop should also check for the against the basename of the file.
frame-renderer/jobs/video_jobs/maya_submit.sh.erb
Lines 26 to 34 in e6dce79
The text was updated successfully, but these errors were encountered: