mirror of
https://github.com/wassname/phaser.git
synced 2026-07-10 00:30:50 +08:00
26 lines
452 B
TypeScript
26 lines
452 B
TypeScript
/// <reference path="../../Game.ts" />
|
|
|
|
/**
|
|
* Phaser - Easing
|
|
*
|
|
* @desc Based heavily on tween.js by sole (https://github.com/sole/tween.js)
|
|
*
|
|
* @version 1.0 - 11th January 2013
|
|
*
|
|
* @author Richard Davey, TypeScript conversion and Phaser integration. See Phaser.TweenManager for the full tween.js author list
|
|
*/
|
|
|
|
module Phaser.Easing {
|
|
|
|
export class Linear {
|
|
|
|
public static None(k) {
|
|
|
|
return k;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|