Allow lower frame rates

This commit is contained in:
Jeremy Bullock 2020-11-13 23:09:46 -07:00
parent 5a6e8346a3
commit 13078e4a47
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ DatExporter::DatExporter(const ShapeSet& targetShapeSet, double frameRate, bool
// Animation works with a fixed frame rate of 100.
// Downsampling to much less than 25 fps may result in dropped frames.
// Upsampling to more than 100 fps doesn't make sense.
const double minFrameRate = 24.0;
const double minFrameRate = 10.0;
const double maxFrameRate = 100.0;
if (frameRate < minFrameRate || frameRate > maxFrameRate) {