Files
SerpentRace/node_modules/motion-utils/dist/es/velocity-per-second.mjs
T
2025-08-23 00:05:18 +02:00

12 lines
278 B
JavaScript

/*
Convert velocity into velocity per second
@param [number]: Unit per frame
@param [number]: Frame duration in ms
*/
function velocityPerSecond(velocity, frameDuration) {
return frameDuration ? velocity * (1000 / frameDuration) : 0;
}
export { velocityPerSecond };