mirror of
https://github.com/photonstorm/phaser
synced 2024-12-23 19:43:28 +00:00
21 lines
240 B
TypeScript
21 lines
240 B
TypeScript
/// <reference path="../../_definitions.ts" />
|
|
|
|
/**
|
|
* Phaser - Easing - Linear
|
|
*
|
|
* For use with Phaser.Tween
|
|
*/
|
|
|
|
module Phaser.Easing {
|
|
|
|
export class Linear {
|
|
|
|
public static None(k) {
|
|
|
|
return k;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|