UNPKG

@phaserjs/phaser

Version:
8 lines (7 loc) 151 B
export function InOut(v) { if ((v *= 2) < 1) { return 0.5 * v * v * v * v * v; } else { return 0.5 * ((v -= 2) * v * v * v * v + 2); } }