@quenty/modeltransparencyeffect 11.8.1 → 11.8.2-canary.545.2374fb2.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,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
|
+
## [11.8.2-canary.545.2374fb2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/modeltransparencyeffect@11.8.1...@quenty/modeltransparencyeffect@11.8.2-canary.545.2374fb2.0) (2025-04-05)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Add types to packages ([2374fb2](https://github.com/Quenty/NevermoreEngine/commit/2374fb2b043cfbe0e9b507b3316eec46a4e353a0))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [11.8.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/modeltransparencyeffect@11.8.0...@quenty/modeltransparencyeffect@11.8.1) (2025-03-21)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/modeltransparencyeffect
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/modeltransparencyeffect",
|
|
3
|
-
"version": "11.8.
|
|
3
|
+
"version": "11.8.2-canary.545.2374fb2.0",
|
|
4
4
|
"description": "Allows a model to have transparent set locally on the client",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/acceltween": "
|
|
29
|
-
"@quenty/baseobject": "
|
|
30
|
-
"@quenty/loader": "
|
|
31
|
-
"@quenty/steputils": "
|
|
32
|
-
"@quenty/transparencyservice": "
|
|
28
|
+
"@quenty/acceltween": "2.5.1-canary.545.2374fb2.0",
|
|
29
|
+
"@quenty/baseobject": "10.8.1-canary.545.2374fb2.0",
|
|
30
|
+
"@quenty/loader": "10.8.1-canary.545.2374fb2.0",
|
|
31
|
+
"@quenty/steputils": "3.5.4-canary.545.2374fb2.0",
|
|
32
|
+
"@quenty/transparencyservice": "11.8.2-canary.545.2374fb2.0"
|
|
33
33
|
},
|
|
34
34
|
"publishConfig": {
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "2374fb2b043cfbe0e9b507b3316eec46a4e353a0"
|
|
38
38
|
}
|
|
@@ -132,7 +132,7 @@ function ModelTransparencyEffect:_setupParts()
|
|
|
132
132
|
self._parts[self._obj] = true
|
|
133
133
|
end
|
|
134
134
|
|
|
135
|
-
for _, part in
|
|
135
|
+
for _, part in self._obj:GetDescendants() do
|
|
136
136
|
if part:IsA("BasePart") or part:IsA("Decal") then
|
|
137
137
|
self._parts[part] = true
|
|
138
138
|
end
|
|
@@ -161,7 +161,7 @@ function ModelTransparencyEffect:_setupParts()
|
|
|
161
161
|
return
|
|
162
162
|
end
|
|
163
163
|
|
|
164
|
-
for part, _ in
|
|
164
|
+
for part, _ in self._parts do
|
|
165
165
|
self._transparencyService[self._transparencyServiceMethodName](self._transparencyService, self, part, nil)
|
|
166
166
|
end
|
|
167
167
|
end)
|