@quenty/adorneevalue 10.18.4-canary.559.339cfa7.0 → 10.19.0-canary.0a5db80.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 +2 -10
- package/package.json +7 -7
- package/src/Shared/AdorneeValue.lua +6 -10
package/CHANGELOG.md
CHANGED
|
@@ -3,20 +3,12 @@
|
|
|
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
|
-
|
|
6
|
+
# [10.19.0-canary.0a5db80.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/adorneevalue@10.18.2...@quenty/adorneevalue@10.19.0-canary.0a5db80.0) (2025-05-10)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
|
10
10
|
|
|
11
|
-
* Additional type checking updates ([
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
## [10.18.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/adorneevalue@10.18.2...@quenty/adorneevalue@10.18.3) (2025-04-10)
|
|
18
|
-
|
|
19
|
-
**Note:** Version bump only for package @quenty/adorneevalue
|
|
11
|
+
* Additional type checking updates ([7e008c5](https://github.com/Quenty/NevermoreEngine/commit/7e008c58547bd00b5904e56541454a38c8d72ccc))
|
|
20
12
|
|
|
21
13
|
|
|
22
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/adorneevalue",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.19.0-canary.0a5db80.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.3.3",
|
|
29
|
-
"@quenty/baseobject": "10.
|
|
30
|
-
"@quenty/blend": "12.
|
|
31
|
-
"@quenty/loader": "10.
|
|
32
|
-
"@quenty/maid": "3.
|
|
33
|
-
"@quenty/valueobject": "13.
|
|
29
|
+
"@quenty/baseobject": "10.9.0-canary.0a5db80.0",
|
|
30
|
+
"@quenty/blend": "12.19.0-canary.0a5db80.0",
|
|
31
|
+
"@quenty/loader": "10.9.0-canary.0a5db80.0",
|
|
32
|
+
"@quenty/maid": "3.5.0-canary.0a5db80.0",
|
|
33
|
+
"@quenty/valueobject": "13.18.0-canary.0a5db80.0"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "0a5db8004684dc3e76fd5944599a22602d48cfa9"
|
|
39
39
|
}
|
|
@@ -216,11 +216,7 @@ end
|
|
|
216
216
|
@param observeRadius Observable<number>
|
|
217
217
|
@return Observable
|
|
218
218
|
]=]
|
|
219
|
-
function AdorneeValue.ObservePositionTowards(
|
|
220
|
-
self: AdorneeValue,
|
|
221
|
-
observeTargetPosition: Observable.Observable<Vector3>,
|
|
222
|
-
observeRadius: Observable.Observable<number>
|
|
223
|
-
)
|
|
219
|
+
function AdorneeValue.ObservePositionTowards(self: AdorneeValue, observeTargetPosition: Observable.Observable<Vector3>, observeRadius: Observable.Observable<number>)
|
|
224
220
|
-- TODO: Some sort of de-duplication/multicast.
|
|
225
221
|
|
|
226
222
|
return Blend.Computed(
|
|
@@ -319,11 +315,11 @@ function AdorneeValue.RenderPositionAttachment(self: AdorneeValue, props)
|
|
|
319
315
|
end)
|
|
320
316
|
|
|
321
317
|
return Blend.New "Attachment" {
|
|
322
|
-
Name = props.Name or "AdorneeValueAttachment"
|
|
323
|
-
Parent = observeParentPart
|
|
324
|
-
CFrame = observeCFrame
|
|
325
|
-
[Blend.Children] = props[Blend.Children]
|
|
318
|
+
Name = props.Name or "AdorneeValueAttachment";
|
|
319
|
+
Parent = observeParentPart;
|
|
320
|
+
CFrame = observeCFrame;
|
|
321
|
+
[Blend.Children] = props[Blend.Children];
|
|
326
322
|
}
|
|
327
323
|
end
|
|
328
324
|
|
|
329
|
-
return AdorneeValue
|
|
325
|
+
return AdorneeValue
|