phaser/v3/typings/input/keyboard/state/UpDuration.d.ts
2017-01-16 22:43:07 +01:00

9 lines
461 B
TypeScript

/**
* Returns `true` if the Key was released within the `duration` value given, or `false` if it either isn't up,
* or was released longer ago than then given duration.
*
* @method Phaser.Key#upDuration
* @param {number} [duration=50] - The duration within which the key is considered as being just released. Given in ms.
* @return {boolean} True if the key was released within the given duration.
*/
export default function (key: any, duration: any): boolean;