Fix off-by-1 error for computing step sizes (#184)

This commit is contained in:
Jani Patokallio 2015-05-07 00:14:41 +10:00
parent feccf2809b
commit 3940f4b598

View File

@ -194,7 +194,8 @@
opt = opt || {};
if (this.options.steps !== steps) {
this.options.steps = steps;
this.options.step = (this.options.end - this.options.start)/this.getSteps();
// If you have N frames, there are N-1 steps between them
this.options.step = (this.options.end - this.options.start) / (this.getSteps() - 1);
this.options.step = this.options.step || 1;
if (!opt.silent) this.reload();
}