mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 21:24:09 +00:00
34 lines
459 B
TypeScript
34 lines
459 B
TypeScript
/// <reference path="../../Game.ts" />
|
|
|
|
/**
|
|
* Phaser - Easing - Quadratic
|
|
*
|
|
* For use with Phaser.Tween
|
|
*/
|
|
|
|
module Phaser.Easing {
|
|
|
|
export class Quadratic {
|
|
|
|
public static In(k) {
|
|
|
|
return k * k;
|
|
|
|
}
|
|
|
|
public static Out(k) {
|
|
|
|
return k * (2 - k);
|
|
|
|
}
|
|
|
|
public static InOut(k) {
|
|
|
|
if ((k *= 2) < 1) return 0.5 * k * k;
|
|
return -0.5 * (--k * (k - 2) - 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|