We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6167f6 commit 4c116c0Copy full SHA for 4c116c0
1 file changed
src/cameras/controls/index.js
@@ -10,7 +10,26 @@
10
11
module.exports = {
12
13
+ /**
14
+ * This alias will be removed in a future version.
15
+ * Use `FixedKeyControl` instead.
16
+ *
17
+ * @deprecated
18
+ * @name Phaser.Cameras.Controls.Fixed
19
+ */
20
+ Fixed: require('./FixedKeyControl'),
21
+
22
FixedKeyControl: require('./FixedKeyControl'),
23
24
25
26
+ * Use `SmoothedKeyControl` instead.
27
28
29
+ * @name Phaser.Cameras.Controls.Smoothed
30
31
+ Smoothed: require('./SmoothedKeyControl'),
32
33
SmoothedKeyControl: require('./SmoothedKeyControl')
34
35
};
0 commit comments