@quenty/coreguienabler 12.22.0 → 12.23.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 +11 -0
- package/package.json +2 -2
- package/src/Client/CoreGuiEnabler.lua +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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
|
+
# [12.23.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/coreguienabler@12.22.0...@quenty/coreguienabler@12.23.0) (2025-11-07)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Fix misc things ([6d071f6](https://github.com/Quenty/NevermoreEngine/commit/6d071f61b1f49baa72bf227f37e67d31cfc839a9))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [12.22.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/coreguienabler@12.21.0...@quenty/coreguienabler@12.22.0) (2025-09-26)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/coreguienabler
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/coreguienabler",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.23.0",
|
|
4
4
|
"description": "Key based CoreGuiEnabler, singleton Use this class to load/unload CoreGuis / other GUIs, by disabling based upon keys Keys are additive, so if you have more than 1 disabled, it's ok.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"publishConfig": {
|
|
34
34
|
"access": "public"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "2ac8824cc65912cc0b3323b19fa79e2e05986dc6"
|
|
37
37
|
}
|
|
@@ -97,8 +97,9 @@ function CoreGuiEnabler.new(): CoreGuiEnabler
|
|
|
97
97
|
UserInputService.ModalEnabled = not isEnabled
|
|
98
98
|
end)
|
|
99
99
|
|
|
100
|
+
local wasEnabled = StarterPlayer.EnableMouseLockOption
|
|
100
101
|
self:AddState("EnableMouseLockOption", function(isEnabled)
|
|
101
|
-
StarterPlayer.EnableMouseLockOption = isEnabled
|
|
102
|
+
StarterPlayer.EnableMouseLockOption = wasEnabled and isEnabled
|
|
102
103
|
end)
|
|
103
104
|
|
|
104
105
|
self:AddState("MouseIconEnabled", function(isEnabled)
|