arcade-physics
Version:
Use Arcade Physics without Phaser.
18 lines • 458 B
TypeScript
export default Out;
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2020 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Quadratic ease-out.
*
* @function Phaser.Math.Easing.Quadratic.Out
* @since 3.0.0
*
* @param {number} v - The value to be tweened.
*
* @return {number} The tweened value.
*/
declare function Out(v: number): number;
//# sourceMappingURL=Out.d.ts.map