@quenty/inputmode 13.19.0-canary.ae8d76d.0 → 13.19.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 +1 -1
- package/package.json +10 -10
- package/src/Client/InputMode.lua +1 -1
- package/src/Client/InputModeProcessor.lua +1 -1
- package/src/Client/InputModeServiceClient.lua +5 -5
- package/src/Client/InputModeTypeSelector.lua +7 -7
- package/src/Shared/InputModeType.lua +1 -1
- package/src/Shared/InputModeTypes.lua +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
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
|
-
# [13.19.0
|
|
6
|
+
# [13.19.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/inputmode@13.18.3...@quenty/inputmode@13.19.0) (2025-05-10)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/inputmode",
|
|
3
|
-
"version": "13.19.0
|
|
3
|
+
"version": "13.19.0",
|
|
4
4
|
"description": "Trace input mode state and trigger changes correctly",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,17 +25,17 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/ducktype": "5.
|
|
29
|
-
"@quenty/loader": "10.
|
|
30
|
-
"@quenty/maid": "3.
|
|
31
|
-
"@quenty/rx": "13.18.0
|
|
32
|
-
"@quenty/servicebag": "11.12.0
|
|
33
|
-
"@quenty/signal": "7.
|
|
34
|
-
"@quenty/table": "3.
|
|
35
|
-
"@quenty/valueobject": "13.18.0
|
|
28
|
+
"@quenty/ducktype": "^5.9.0",
|
|
29
|
+
"@quenty/loader": "^10.9.0",
|
|
30
|
+
"@quenty/maid": "^3.5.0",
|
|
31
|
+
"@quenty/rx": "^13.18.0",
|
|
32
|
+
"@quenty/servicebag": "^11.12.0",
|
|
33
|
+
"@quenty/signal": "^7.11.0",
|
|
34
|
+
"@quenty/table": "^3.8.0",
|
|
35
|
+
"@quenty/valueobject": "^13.18.0"
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
|
|
41
41
|
}
|
package/src/Client/InputMode.lua
CHANGED
|
@@ -6,15 +6,15 @@
|
|
|
6
6
|
|
|
7
7
|
local require = require(script.Parent.loader).load(script)
|
|
8
8
|
|
|
9
|
-
local UserInputService = game:GetService("UserInputService")
|
|
10
9
|
local GuiService = game:GetService("GuiService")
|
|
11
10
|
local RunService = game:GetService("RunService")
|
|
11
|
+
local UserInputService = game:GetService("UserInputService")
|
|
12
12
|
|
|
13
|
-
local
|
|
14
|
-
local Maid = require("Maid")
|
|
13
|
+
local InputMode = require("InputMode")
|
|
15
14
|
local InputModeProcessor = require("InputModeProcessor")
|
|
15
|
+
local InputModeType = require("InputModeType")
|
|
16
16
|
local InputModeTypes = require("InputModeTypes")
|
|
17
|
-
local
|
|
17
|
+
local Maid = require("Maid")
|
|
18
18
|
local ServiceBag = require("ServiceBag")
|
|
19
19
|
|
|
20
20
|
local THUMBSTICK_DEADZONE = 0.14
|
|
@@ -178,4 +178,4 @@ function InputModeServiceClient.Destroy(self: InputModeServiceClient)
|
|
|
178
178
|
self._maid:DoCleaning()
|
|
179
179
|
end
|
|
180
180
|
|
|
181
|
-
return InputModeServiceClient
|
|
181
|
+
return InputModeServiceClient
|
|
@@ -6,16 +6,16 @@
|
|
|
6
6
|
|
|
7
7
|
local require = require(script.Parent.loader).load(script)
|
|
8
8
|
|
|
9
|
-
local
|
|
10
|
-
local Maid = require("Maid")
|
|
11
|
-
local ValueObject = require("ValueObject")
|
|
9
|
+
local Brio = require("Brio")
|
|
12
10
|
local InputModeServiceClient = require("InputModeServiceClient")
|
|
13
|
-
local ServiceBag = require("ServiceBag")
|
|
14
|
-
local Rx = require("Rx")
|
|
15
11
|
local InputModeType = require("InputModeType")
|
|
12
|
+
local InputModeTypes = require("InputModeTypes")
|
|
13
|
+
local Maid = require("Maid")
|
|
16
14
|
local Observable = require("Observable")
|
|
15
|
+
local Rx = require("Rx")
|
|
16
|
+
local ServiceBag = require("ServiceBag")
|
|
17
17
|
local Signal = require("Signal")
|
|
18
|
-
local
|
|
18
|
+
local ValueObject = require("ValueObject")
|
|
19
19
|
|
|
20
20
|
local InputModeTypeSelector = {}
|
|
21
21
|
InputModeTypeSelector.ClassName = "InputModeTypeSelector"
|
|
@@ -309,4 +309,4 @@ function InputModeTypeSelector.Destroy(self: InputModeTypeSelector)
|
|
|
309
309
|
setmetatable(self :: any, nil)
|
|
310
310
|
end
|
|
311
311
|
|
|
312
|
-
return InputModeTypeSelector
|
|
312
|
+
return InputModeTypeSelector
|