If your plugin has self.SingleFramesOnly = True, plugin is called for individual frames, then
using self.GetStartFrame() and self.GetEndFrame() gives you just one frame even if chunksize is > 1
Is it possible somehow get real task frame range even with self.SingleFramesOnly = True ?
I need to recalculate progress as progress resets after each frame. I’m wondering how others solved this because if the chunksize >1 and many plugins has self.SingleFramesOnly = True out of the box so you must have same behavior too.