@quenty/firstpersoncharactertransparency 14.23.6-canary.90b99a0.0 → 14.23.6-canary.9a4e7b7.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 +5 -2
- package/package.json +10 -9
- package/src/Client/HideHead.lua +2 -1
- package/src/Client/ShowBody.lua +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,9 +3,12 @@
|
|
|
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
|
-
## [14.23.6-canary.
|
|
6
|
+
## [14.23.6-canary.9a4e7b7.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/firstpersoncharactertransparency@14.23.5...@quenty/firstpersoncharactertransparency@14.23.6-canary.9a4e7b7.0) (2026-01-02)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Fix missing servicebag dependencies ([9a4e7b7](https://github.com/Quenty/NevermoreEngine/commit/9a4e7b734bdd71d5ba5c38742d37402ce2158ebc))
|
|
9
12
|
|
|
10
13
|
|
|
11
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/firstpersoncharactertransparency",
|
|
3
|
-
"version": "14.23.6-canary.
|
|
3
|
+
"version": "14.23.6-canary.9a4e7b7.0",
|
|
4
4
|
"description": "Allows transparency to manually be controlled for a character in first-person mode",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -27,19 +27,20 @@
|
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@quenty/baseobject": "10.9.0",
|
|
30
|
-
"@quenty/brio": "14.20.4-canary.
|
|
31
|
-
"@quenty/humanoidtracker": "13.21.6-canary.
|
|
32
|
-
"@quenty/instanceutils": "13.20.5-canary.
|
|
30
|
+
"@quenty/brio": "14.20.4-canary.9a4e7b7.0",
|
|
31
|
+
"@quenty/humanoidtracker": "13.21.6-canary.9a4e7b7.0",
|
|
32
|
+
"@quenty/instanceutils": "13.20.5-canary.9a4e7b7.0",
|
|
33
33
|
"@quenty/loader": "10.9.0",
|
|
34
34
|
"@quenty/maid": "3.5.0",
|
|
35
|
-
"@quenty/r15utils": "13.21.5-canary.
|
|
36
|
-
"@quenty/rx": "13.20.3-canary.
|
|
37
|
-
"@quenty/
|
|
35
|
+
"@quenty/r15utils": "13.21.5-canary.9a4e7b7.0",
|
|
36
|
+
"@quenty/rx": "13.20.3-canary.9a4e7b7.0",
|
|
37
|
+
"@quenty/servicebag": "11.13.3",
|
|
38
|
+
"@quenty/statestack": "14.22.6-canary.9a4e7b7.0",
|
|
38
39
|
"@quenty/transparencyservice": "11.9.0",
|
|
39
|
-
"@quenty/ugcsanitize": "1.7.6-canary.
|
|
40
|
+
"@quenty/ugcsanitize": "1.7.6-canary.9a4e7b7.0"
|
|
40
41
|
},
|
|
41
42
|
"publishConfig": {
|
|
42
43
|
"access": "public"
|
|
43
44
|
},
|
|
44
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "9a4e7b734bdd71d5ba5c38742d37402ce2158ebc"
|
|
45
46
|
}
|
package/src/Client/HideHead.lua
CHANGED
|
@@ -8,13 +8,14 @@ local BaseObject = require("BaseObject")
|
|
|
8
8
|
local RxBrioUtils = require("RxBrioUtils")
|
|
9
9
|
local RxInstanceUtils = require("RxInstanceUtils")
|
|
10
10
|
local RxR15Utils = require("RxR15Utils")
|
|
11
|
+
local ServiceBag = require("ServiceBag")
|
|
11
12
|
local TransparencyService = require("TransparencyService")
|
|
12
13
|
|
|
13
14
|
local HideHead = setmetatable({}, BaseObject)
|
|
14
15
|
HideHead.ClassName = "HideHead"
|
|
15
16
|
HideHead.__index = HideHead
|
|
16
17
|
|
|
17
|
-
function HideHead.new(character, serviceBag)
|
|
18
|
+
function HideHead.new(character, serviceBag: ServiceBag.ServiceBag)
|
|
18
19
|
local self = setmetatable(BaseObject.new(character), HideHead)
|
|
19
20
|
|
|
20
21
|
self._serviceBag = assert(serviceBag, "No serviceBag")
|
package/src/Client/ShowBody.lua
CHANGED
|
@@ -8,13 +8,14 @@ local require = require(script.Parent.loader).load(script)
|
|
|
8
8
|
local BaseObject = require("BaseObject")
|
|
9
9
|
local RxBrioUtils = require("RxBrioUtils")
|
|
10
10
|
local RxInstanceUtils = require("RxInstanceUtils")
|
|
11
|
+
local ServiceBag = require("ServiceBag")
|
|
11
12
|
local TransparencyService = require("TransparencyService")
|
|
12
13
|
|
|
13
14
|
local ShowBody = setmetatable({}, BaseObject)
|
|
14
15
|
ShowBody.ClassName = "ShowBody"
|
|
15
16
|
ShowBody.__index = ShowBody
|
|
16
17
|
|
|
17
|
-
function ShowBody.new(character, serviceBag)
|
|
18
|
+
function ShowBody.new(character, serviceBag: ServiceBag.ServiceBag)
|
|
18
19
|
local self = setmetatable(BaseObject.new(character), ShowBody)
|
|
19
20
|
|
|
20
21
|
self._serviceBag = assert(serviceBag, "No serviceBag")
|