phaser/src/math/GetSpeed.js
2018-02-12 16:01:21 +00:00

23 lines
665 B
JavaScript

/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2018 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
/**
* [description]
*
* @function Phaser.Math.GetSpeed
* @since 3.0.0
*
* @param {number} distance - The distance to travel in pixels.
* @param {integer} time - The time, in ms, to cover the distance in.
*
* @return {number} The amount you will need to increment the position by each step in order to cover the distance in the time given.
*/
var GetSpeed = function (distance, time)
{
return (distance / time) / 1000;
};
module.exports = GetSpeed;