UNPKG

arcade-physics

Version:
19 lines 554 B
export default InOut; /** * @author Richard Davey <rich@photonstorm.com> * @copyright 2020 Photon Storm Ltd. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ /** * Back ease-in/out. * * @function Phaser.Math.Easing.Back.InOut * @since 3.0.0 * * @param {number} v - The value to be tweened. * @param {number} [overshoot=1.70158] - The overshoot amount. * * @return {number} The tweened value. */ declare function InOut(v: number, overshoot?: number | undefined): number; //# sourceMappingURL=InOut.d.ts.map