0.0.0 • Published 9 years ago

time-accumulator v0.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

time-accumulator

Call a function at a constant rate no matter what the rate the accumulator is called at.

Example

This causes the render function to be called every 5 milliseconds no matter what rate requestAnimationFrame calls accum at:

var timeAccumulator = require("time-accumulator");
var accum = timeAccumulator(5.0);

var render = function(elapsed) { /* ... */ };

window.requestAnimationFrame(function(elapsed) {
	accum(elapsed, render);
});

Install

With npm do:

npm install time-accumulator

License

MIT