arcade-physics
Version:
Use Arcade Physics without Phaser.
27 lines • 675 B
JavaScript
;
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2020 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Exponential ease-in/out.
*
* @function Phaser.Math.Easing.Expo.InOut
* @since 3.0.0
*
* @param {number} v - The value to be tweened.
*
* @return {number} The tweened value.
*/
const InOut = v => {
if ((v *= 2) < 1) {
return 0.5 * Math.pow(2, 10 * (v - 1));
}
else {
return 0.5 * (2 - Math.pow(2, -10 * (v - 1)));
}
};
exports.default = InOut;
//# sourceMappingURL=InOut.js.map