mirror of
https://github.com/photonstorm/phaser
synced 2024-12-02 17:41:06 +00:00
8 lines
185 B
TypeScript
8 lines
185 B
TypeScript
/**
|
|
* Linear Easing (no variation).
|
|
*
|
|
* @method Lazer.Easing.Linear#None
|
|
* @param {number} v - The value to be tweened.
|
|
* @returns {number} v.
|
|
*/
|
|
export default function (v: any): any;
|