0.0.0 • Published 11 years ago
time-accumulator v0.0.0
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-accumulatorLicense
MIT
0.0.0
11 years ago