We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8771c81 commit 19c2874Copy full SHA for 19c2874
1 file changed
src/input/keyboard/KeyboardPlugin.js
@@ -167,6 +167,16 @@ var KeyboardPlugin = new Class({
167
*/
168
this.prevTime = 0;
169
170
+ /**
171
+ * Internal repeat key flag.
172
+ *
173
+ * @name Phaser.Input.Keyboard.KeyboardPlugin#prevType
174
+ * @type {string}
175
+ * @private
176
+ * @since 3.50.1
177
+ */
178
+ this.prevType = null;
179
+
180
sceneInputPlugin.pluginEvents.once(InputEvents.BOOT, this.boot, this);
181
sceneInputPlugin.pluginEvents.on(InputEvents.START, this.start, this);
182
},
0 commit comments