File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -57,15 +57,15 @@ var ResetKeyCombo = require('./ResetKeyCombo');
5757 * @constructor
5858 * @since 3.0.0
5959 *
60- * @param {Phaser.Input.Keyboard.KeyboardManager } keyboardManager - A reference to the Keyboard Manager .
60+ * @param {Phaser.Input.Keyboard.KeyboardPlugin } keyboardPlugin - A reference to the Keyboard Plugin .
6161 * @param {(string|integer[]|object[]) } keys - The keys that comprise this combo.
6262 * @param {KeyComboConfig } [config] - A Key Combo configuration object.
6363 */
6464var KeyCombo = new Class ( {
6565
6666 initialize :
6767
68- function KeyCombo ( keyboardManager , keys , config )
68+ function KeyCombo ( keyboardPlugin , keys , config )
6969 {
7070 if ( config === undefined ) { config = { } ; }
7171
@@ -79,10 +79,10 @@ var KeyCombo = new Class({
7979 * A reference to the Keyboard Manager
8080 *
8181 * @name Phaser.Input.Keyboard.KeyCombo#manager
82- * @type {Phaser.Input.Keyboard.KeyboardManager }
82+ * @type {Phaser.Input.Keyboard.KeyboardPlugin }
8383 * @since 3.0.0
8484 */
85- this . manager = keyboardManager ;
85+ this . manager = keyboardPlugin ;
8686
8787 /**
8888 * A flag that controls if this Key Combo is actively processing keys or not.
Original file line number Diff line number Diff line change 55 */
66
77/**
8- * Used internally by the KeyboardManager .
8+ * Used internally by the Keyboard Plugin .
99 *
1010 * @function Phaser.Input.Keyboard.ProcessKeyDown
1111 * @private
Original file line number Diff line number Diff line change 55 */
66
77/**
8- * Used internally by the KeyboardManager .
8+ * Used internally by the Keyboard Plugin .
99 *
1010 * @function Phaser.Input.Keyboard.ProcessKeyUp
1111 * @private
You can’t perform that action at this time.
0 commit comments