@quenty/adorneevalue 10.19.0-canary.559.b31717d.0 → 10.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 +1 -1
- package/package.json +8 -8
- package/src/Shared/AdorneeValue.lua +10 -6
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
|
-
# [10.19.0
|
|
6
|
+
# [10.19.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/adorneevalue@10.18.3...@quenty/adorneevalue@10.19.0) (2025-05-10)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/adorneevalue",
|
|
3
|
-
"version": "10.19.0
|
|
3
|
+
"version": "10.19.0",
|
|
4
4
|
"description": "Adorneevalue - Helper class to transform a an adornee into relative positions/information.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,15 +25,15 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/adorneeutils": "3.3.3",
|
|
29
|
-
"@quenty/baseobject": "10.
|
|
30
|
-
"@quenty/blend": "12.19.0
|
|
31
|
-
"@quenty/loader": "10.
|
|
32
|
-
"@quenty/maid": "3.
|
|
33
|
-
"@quenty/valueobject": "13.18.0
|
|
28
|
+
"@quenty/adorneeutils": "^3.3.3",
|
|
29
|
+
"@quenty/baseobject": "^10.9.0",
|
|
30
|
+
"@quenty/blend": "^12.19.0",
|
|
31
|
+
"@quenty/loader": "^10.9.0",
|
|
32
|
+
"@quenty/maid": "^3.5.0",
|
|
33
|
+
"@quenty/valueobject": "^13.18.0"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
|
|
39
39
|
}
|
|
@@ -216,7 +216,11 @@ end
|
|
|
216
216
|
@param observeRadius Observable<number>
|
|
217
217
|
@return Observable
|
|
218
218
|
]=]
|
|
219
|
-
function AdorneeValue.ObservePositionTowards(
|
|
219
|
+
function AdorneeValue.ObservePositionTowards(
|
|
220
|
+
self: AdorneeValue,
|
|
221
|
+
observeTargetPosition: Observable.Observable<Vector3>,
|
|
222
|
+
observeRadius: Observable.Observable<number>
|
|
223
|
+
)
|
|
220
224
|
-- TODO: Some sort of de-duplication/multicast.
|
|
221
225
|
|
|
222
226
|
return Blend.Computed(
|
|
@@ -315,11 +319,11 @@ function AdorneeValue.RenderPositionAttachment(self: AdorneeValue, props)
|
|
|
315
319
|
end)
|
|
316
320
|
|
|
317
321
|
return Blend.New "Attachment" {
|
|
318
|
-
Name = props.Name or "AdorneeValueAttachment"
|
|
319
|
-
Parent = observeParentPart
|
|
320
|
-
CFrame = observeCFrame
|
|
321
|
-
[Blend.Children] = props[Blend.Children]
|
|
322
|
+
Name = props.Name or "AdorneeValueAttachment",
|
|
323
|
+
Parent = observeParentPart,
|
|
324
|
+
CFrame = observeCFrame,
|
|
325
|
+
[Blend.Children] = props[Blend.Children],
|
|
322
326
|
}
|
|
323
327
|
end
|
|
324
328
|
|
|
325
|
-
return AdorneeValue
|
|
329
|
+
return AdorneeValue
|