@quenty/firstpersoncharactertransparency 14.19.0-canary.ae8d76d.0 → 14.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 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
- # [14.19.0-canary.ae8d76d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/firstpersoncharactertransparency@14.18.3...@quenty/firstpersoncharactertransparency@14.19.0-canary.ae8d76d.0) (2025-05-10)
6
+ # [14.19.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/firstpersoncharactertransparency@14.18.3...@quenty/firstpersoncharactertransparency@14.19.0) (2025-05-10)
7
7
 
8
8
  **Note:** Version bump only for package @quenty/firstpersoncharactertransparency
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/firstpersoncharactertransparency",
3
- "version": "14.19.0-canary.ae8d76d.0",
3
+ "version": "14.19.0",
4
4
  "description": "Allows transparency to manually be controlled for a character in first-person mode",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -26,20 +26,20 @@
26
26
  "Quenty"
27
27
  ],
28
28
  "dependencies": {
29
- "@quenty/baseobject": "10.8.3",
30
- "@quenty/brio": "14.18.0-canary.ae8d76d.0",
31
- "@quenty/humanoidtracker": "13.18.0-canary.ae8d76d.0",
32
- "@quenty/instanceutils": "13.18.0-canary.ae8d76d.0",
33
- "@quenty/loader": "10.8.3",
34
- "@quenty/maid": "3.4.3",
35
- "@quenty/r15utils": "13.18.0-canary.ae8d76d.0",
36
- "@quenty/rx": "13.18.0-canary.ae8d76d.0",
37
- "@quenty/statestack": "14.19.0-canary.ae8d76d.0",
38
- "@quenty/transparencyservice": "11.9.0-canary.ae8d76d.0",
39
- "@quenty/ugcsanitize": "1.5.0-canary.ae8d76d.0"
29
+ "@quenty/baseobject": "^10.9.0",
30
+ "@quenty/brio": "^14.18.0",
31
+ "@quenty/humanoidtracker": "^13.18.0",
32
+ "@quenty/instanceutils": "^13.18.0",
33
+ "@quenty/loader": "^10.9.0",
34
+ "@quenty/maid": "^3.5.0",
35
+ "@quenty/r15utils": "^13.18.0",
36
+ "@quenty/rx": "^13.18.0",
37
+ "@quenty/statestack": "^14.19.0",
38
+ "@quenty/transparencyservice": "^11.9.0",
39
+ "@quenty/ugcsanitize": "^1.5.0"
40
40
  },
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  },
44
- "gitHead": "ae8d76d996594e017ac4bfa19f3c064ebe307cd8"
44
+ "gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
45
45
  }
@@ -7,8 +7,8 @@ local require = require(script.Parent.loader).load(script)
7
7
  local BaseObject = require("BaseObject")
8
8
  local RxBrioUtils = require("RxBrioUtils")
9
9
  local RxInstanceUtils = require("RxInstanceUtils")
10
- local TransparencyService = require("TransparencyService")
11
10
  local RxR15Utils = require("RxR15Utils")
11
+ local TransparencyService = require("TransparencyService")
12
12
 
13
13
  local HideHead = setmetatable({}, BaseObject)
14
14
  HideHead.ClassName = "HideHead"
@@ -20,7 +20,6 @@ function HideHead.new(character, serviceBag)
20
20
  self._serviceBag = assert(serviceBag, "No serviceBag")
21
21
  self._transparencyService = self._serviceBag:GetService(TransparencyService)
22
22
 
23
-
24
23
  self._maid:GiveTask(self:_observeHeadAndFaceAccessoryPartsBrio():Subscribe(function(brio)
25
24
  if brio:IsDead() then
26
25
  return
@@ -66,14 +65,14 @@ function HideHead:_observeHeadAndFaceAccessoryPartsBrio()
66
65
  or accessoryType == Enum.AccessoryType.Eyebrow
67
66
  or accessoryType == Enum.AccessoryType.Eyelash
68
67
  end):Pipe({
69
- RxBrioUtils.onlyLastBrioSurvives();
68
+ RxBrioUtils.onlyLastBrioSurvives(),
70
69
  RxBrioUtils.switchMapBrio(function()
71
70
  return RxInstanceUtils.observeDescendantsBrio(accessory, function(child)
72
71
  return child:IsA("BasePart")
73
72
  end)
74
- end);
73
+ end),
75
74
  })
76
- end)
75
+ end),
77
76
  })
78
77
  end
79
78
 
@@ -83,4 +82,4 @@ function HideHead:_observeAccessoriesBrio()
83
82
  end)
84
83
  end
85
84
 
86
- return HideHead
85
+ return HideHead
@@ -58,21 +58,20 @@ function ShowBody:_observeNonHeadParts()
58
58
  end)
59
59
  end
60
60
 
61
-
62
61
  function ShowBody:_observeNonHeadAndFaceAccessoryPartsBrio()
63
62
  return self:_observeAccessoriesBrio():Pipe({
64
63
  RxBrioUtils.flatMapBrio(function(accessory)
65
64
  return RxInstanceUtils.observePropertyBrio(accessory, "AccessoryType", function(accessoryType)
66
65
  return accessoryType ~= Enum.AccessoryType.Hat and accessoryType ~= Enum.AccessoryType.Face
67
66
  end):Pipe({
68
- RxBrioUtils.onlyLastBrioSurvives();
67
+ RxBrioUtils.onlyLastBrioSurvives(),
69
68
  RxBrioUtils.switchMapBrio(function()
70
69
  return RxInstanceUtils.observeDescendantsBrio(accessory, function(child)
71
70
  return child:IsA("BasePart")
72
71
  end)
73
- end);
72
+ end),
74
73
  })
75
- end)
74
+ end),
76
75
  })
77
76
  end
78
77
 
@@ -82,4 +81,4 @@ function ShowBody:_observeAccessoriesBrio()
82
81
  end)
83
82
  end
84
83
 
85
- return ShowBody
84
+ return ShowBody