UNPKG

image-wife

Version:

A library for compile-time and runtime procedural modification of photographic images.

9 lines (8 loc) 230 B
export const tickUpdate = ( tick: number, setTick: (tick: number) => void, realDelayTime: number, ) => { const update = () => setTimeout(() => setTick(tick + 1), realDelayTime); requestAnimationFrame(update); };