mirror of
https://github.com/wassname/phaser.git
synced 2026-08-09 12:20:34 +08:00
Input, Loader and Math docs tidied up.
This commit is contained in:
@@ -42,21 +42,21 @@ Phaser.Keyboard = function (game) {
|
||||
* @property {boolean} disabled - The disabled state of the Keyboard.
|
||||
* @default
|
||||
*/
|
||||
disabled: false,
|
||||
this.disabled = false;
|
||||
|
||||
/**
|
||||
* @property {function} _onKeyDown
|
||||
* @private
|
||||
* @default
|
||||
*/
|
||||
_onKeyDown: null,
|
||||
this._onKeyDown = null;
|
||||
|
||||
/**
|
||||
* @property {function} _onKeyUp
|
||||
* @private
|
||||
* @default
|
||||
*/
|
||||
_onKeyUp: null,
|
||||
this._onKeyUp = null;
|
||||
|
||||
/**
|
||||
* @property {Object} callbackContext - The context under which the callbacks are run.
|
||||
|
||||
Reference in New Issue
Block a user