@quenty/inputkeymaputils 4.1.0-canary.252.9753dcc.0 → 4.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -1
- package/package.json +5 -5
- package/src/Client/InputKeyMapUtils.lua +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,15 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
# [4.
|
|
6
|
+
# [4.2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputkeymaputils@4.1.0...@quenty/inputkeymaputils@4.2.0) (2022-03-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/inputkeymaputils
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [4.1.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputkeymaputils@4.0.0...@quenty/inputkeymaputils@4.1.0) (2022-03-10)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @quenty/inputkeymaputils
|
|
9
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/inputkeymaputils",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"description": "Utility methods for input map",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -26,12 +26,12 @@
|
|
|
26
26
|
"Quenty"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@quenty/inputmode": "4.1.0
|
|
30
|
-
"@quenty/loader": "4.0.0",
|
|
31
|
-
"@quenty/table": "2.1.1"
|
|
29
|
+
"@quenty/inputmode": "^4.1.0",
|
|
30
|
+
"@quenty/loader": "^4.0.0",
|
|
31
|
+
"@quenty/table": "^2.1.1"
|
|
32
32
|
},
|
|
33
33
|
"publishConfig": {
|
|
34
34
|
"access": "public"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "126c7a7e01245332b3e7622600b3528c5e0e97ae"
|
|
37
37
|
}
|
|
@@ -247,7 +247,11 @@ end
|
|
|
247
247
|
@return SlottedTouchButton
|
|
248
248
|
]=]
|
|
249
249
|
function InputKeyMapUtils.createSlottedTouchButton(slotId)
|
|
250
|
-
assert(slotId == "primary1"
|
|
250
|
+
assert(slotId == "primary1"
|
|
251
|
+
or slotId == "primary2"
|
|
252
|
+
or slotId == "primary3"
|
|
253
|
+
or slotId == "primary4"
|
|
254
|
+
or slotId == "touchpad1", "Bad slotId")
|
|
251
255
|
|
|
252
256
|
return {
|
|
253
257
|
type = "SlottedTouchButton";
|