We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8968b21 commit 700c9daCopy full SHA for 700c9da
1 file changed
src/input/const.js
@@ -60,6 +60,15 @@ var INPUT_CONST = {
60
*/
61
TOUCH_END: 5,
62
63
+ /**
64
+ * The pointer lock has changed.
65
+ *
66
+ * @name Phaser.Input.POINTER_LOCK_CHANGE
67
+ * @type {integer}
68
+ * @since 3.10.0
69
+ */
70
+ POINTER_LOCK_CHANGE: 6,
71
+
72
/**
73
* A touch pointer has been been cancelled by the browser.
74
*
@@ -70,13 +79,13 @@ var INPUT_CONST = {
79
TOUCH_CANCEL: 7,
80
81
- * The pointer lock has changed.
82
+ * The mouse wheel changes.
83
75
- * @name Phaser.Input.POINTER_LOCK_CHANGE
84
+ * @name Phaser.Input.MOUSE_WHEEL
76
85
* @type {integer}
77
- * @since 3.10.0
86
+ * @since 3.18.0
78
87
- POINTER_LOCK_CHANGE: 6
88
+ MOUSE_WHEEL: 8
89
90
};
91
0 commit comments