@quenty/adorneevalue 4.26.1-canary.402.5852ffd.0 → 4.26.1-canary.402.a911cda.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 +1 -1
- package/package.json +7 -7
- package/src/Shared/AdorneeValue.lua +1 -1
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
|
-
## [4.26.1-canary.402.
|
|
6
|
+
## [4.26.1-canary.402.a911cda.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/adorneevalue@4.26.0...@quenty/adorneevalue@4.26.1-canary.402.a911cda.0) (2023-08-23)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @quenty/adorneevalue
|
|
9
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/adorneevalue",
|
|
3
|
-
"version": "4.26.1-canary.402.
|
|
3
|
+
"version": "4.26.1-canary.402.a911cda.0",
|
|
4
4
|
"description": "Adorneevalue - Helper class to transform a an adornee into relative positions/information.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -26,14 +26,14 @@
|
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@quenty/adorneeutils": "3.1.0",
|
|
29
|
-
"@quenty/baseobject": "6.2.2-canary.402.
|
|
30
|
-
"@quenty/blend": "6.26.1-canary.402.
|
|
31
|
-
"@quenty/loader": "6.2.2-canary.402.
|
|
32
|
-
"@quenty/maid": "2.5.0",
|
|
33
|
-
"@quenty/valueobject": "7.21.1-canary.402.
|
|
29
|
+
"@quenty/baseobject": "6.2.2-canary.402.a911cda.0",
|
|
30
|
+
"@quenty/blend": "6.26.1-canary.402.a911cda.0",
|
|
31
|
+
"@quenty/loader": "6.2.2-canary.402.a911cda.0",
|
|
32
|
+
"@quenty/maid": "2.5.1-canary.402.a911cda.0",
|
|
33
|
+
"@quenty/valueobject": "7.21.1-canary.402.a911cda.0"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "a911cdaf4f1039b599528cec17b027f4660e4fd8"
|
|
39
39
|
}
|
|
@@ -264,7 +264,7 @@ function AdorneeValue:ObserveAttachmentParent()
|
|
|
264
264
|
else
|
|
265
265
|
return nil
|
|
266
266
|
end
|
|
267
|
-
elseif typeof(adornee) == "Vector3" or typeof(adornee) == "CFrame"
|
|
267
|
+
elseif typeof(adornee) == "Vector3" or typeof(adornee) == "CFrame" then
|
|
268
268
|
return Workspace.Terrain
|
|
269
269
|
elseif adornee then
|
|
270
270
|
warn("Bad adornee")
|