@quenty/particleengine 13.21.0 → 13.21.1
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,14 @@
|
|
|
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.21.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/particleengine@13.21.0...@quenty/particleengine@13.21.1) (2025-11-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/particleengine
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [13.21.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/particleengine@13.20.0...@quenty/particleengine@13.21.0) (2025-09-26)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @quenty/particleengine
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/particleengine",
|
|
3
|
-
"version": "13.21.
|
|
3
|
+
"version": "13.21.1",
|
|
4
4
|
"description": "Adds GUI based particle engine to Roblox",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@quenty/loader": "^10.9.0",
|
|
30
|
-
"@quenty/remoting": "^12.21.
|
|
30
|
+
"@quenty/remoting": "^12.21.1",
|
|
31
31
|
"@quenty/table": "^3.8.0"
|
|
32
32
|
},
|
|
33
33
|
"publishConfig": {
|
|
34
34
|
"access": "public"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "f14f6bf0f8ca2b041c70ed27b68ad385a76e6164"
|
|
37
37
|
}
|
|
@@ -314,8 +314,8 @@ function ParticleEngineClient:_particleRender(
|
|
|
314
314
|
end
|
|
315
315
|
end
|
|
316
316
|
|
|
317
|
-
frame.Position = UDim2.
|
|
318
|
-
frame.Size = UDim2.
|
|
317
|
+
frame.Position = UDim2.fromOffset((px + lsp.X - sx) / 2, (py + lsp.Y - sy) / 2)
|
|
318
|
+
frame.Size = UDim2.fromOffset(sx, sy)
|
|
319
319
|
frame.Rotation = 90 + math.atan2(rppy, rppx) * 57.295779513082
|
|
320
320
|
frame.BackgroundColor3 = particle.Color
|
|
321
321
|
frame.BackgroundTransparency = bgt + (1 - bgt) * (1 - preSizeY / sy)
|