@quenty/motor6d 7.41.0 → 7.42.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,16 @@
|
|
|
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
|
+
## [7.42.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/motor6d@7.42.0...@quenty/motor6d@7.42.1) (2026-05-30)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/motor6d
|
|
9
|
+
|
|
10
|
+
# [7.42.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/motor6d@7.41.0...@quenty/motor6d@7.42.0) (2026-05-29)
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- Handle new animation constraints ([519e52a](https://github.com/Quenty/NevermoreEngine/commit/519e52a227fe241e30c9d92b6c9e6e92246552d3))
|
|
15
|
+
|
|
6
16
|
# [7.41.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/motor6d@7.40.2...@quenty/motor6d@7.41.0) (2026-05-18)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @quenty/motor6d
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/motor6d",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.42.1",
|
|
4
4
|
"description": "Centralized service to override motors on humanoids and other places",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -29,25 +29,25 @@
|
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@quenty/baseobject": "10.13.0",
|
|
32
|
-
"@quenty/binder": "14.
|
|
33
|
-
"@quenty/brio": "14.
|
|
32
|
+
"@quenty/binder": "14.36.1",
|
|
33
|
+
"@quenty/brio": "14.30.1",
|
|
34
34
|
"@quenty/cframeutils": "5.5.6",
|
|
35
|
-
"@quenty/draw": "7.14.
|
|
36
|
-
"@quenty/instanceutils": "13.
|
|
35
|
+
"@quenty/draw": "7.14.1",
|
|
36
|
+
"@quenty/instanceutils": "13.30.1",
|
|
37
37
|
"@quenty/loader": "10.11.0",
|
|
38
38
|
"@quenty/maid": "3.9.0",
|
|
39
|
-
"@quenty/playerhumanoidbinder": "14.
|
|
40
|
-
"@quenty/rx": "13.28.
|
|
41
|
-
"@quenty/servicebag": "11.18.
|
|
42
|
-
"@quenty/signal": "7.13.
|
|
39
|
+
"@quenty/playerhumanoidbinder": "14.37.1",
|
|
40
|
+
"@quenty/rx": "13.28.3",
|
|
41
|
+
"@quenty/servicebag": "11.18.1",
|
|
42
|
+
"@quenty/signal": "7.13.1",
|
|
43
43
|
"@quenty/spring": "10.12.0",
|
|
44
44
|
"@quenty/steputils": "3.6.3",
|
|
45
45
|
"@quenty/symbol": "3.5.2",
|
|
46
|
-
"@quenty/tie": "10.
|
|
47
|
-
"@quenty/valueobject": "13.
|
|
46
|
+
"@quenty/tie": "10.40.1",
|
|
47
|
+
"@quenty/valueobject": "13.31.1"
|
|
48
48
|
},
|
|
49
49
|
"publishConfig": {
|
|
50
50
|
"access": "public"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "598b2b62b36bdcbdbbd56f7db10c399831cc6eba"
|
|
53
53
|
}
|
|
@@ -11,11 +11,13 @@ local Maid = require("Maid")
|
|
|
11
11
|
local Motor6DStackHumanoidInterface = require("Motor6DStackHumanoidInterface")
|
|
12
12
|
local Motor6DStackInterface = require("Motor6DStackInterface")
|
|
13
13
|
local Observable = require("Observable")
|
|
14
|
+
local R15Utils = require("R15Utils")
|
|
14
15
|
local Rx = require("Rx")
|
|
15
16
|
local RxBrioUtils = require("RxBrioUtils")
|
|
16
17
|
local RxInstanceUtils = require("RxInstanceUtils")
|
|
17
18
|
local ServiceBag = require("ServiceBag")
|
|
18
19
|
local TieRealmService = require("TieRealmService")
|
|
20
|
+
|
|
19
21
|
local Motor6DStackHumanoidBase = setmetatable({}, BaseObject)
|
|
20
22
|
Motor6DStackHumanoidBase.ClassName = "Motor6DStackHumanoidBase"
|
|
21
23
|
Motor6DStackHumanoidBase.__index = Motor6DStackHumanoidBase
|
|
@@ -26,7 +28,7 @@ export type Motor6DStackHumanoidBase =
|
|
|
26
28
|
_obj: Humanoid,
|
|
27
29
|
_serviceBag: ServiceBag.ServiceBag,
|
|
28
30
|
_tieRealmService: TieRealmService.TieRealmService,
|
|
29
|
-
_observeMotor6DsBrioCache: Observable.Observable<Brio.Brio<
|
|
31
|
+
_observeMotor6DsBrioCache: Observable.Observable<Brio.Brio<R15Utils.AnimationConstraintOrMotor6D>>?,
|
|
30
32
|
},
|
|
31
33
|
{} :: typeof({ __index = Motor6DStackHumanoidBase })
|
|
32
34
|
))
|
|
@@ -76,18 +78,16 @@ end
|
|
|
76
78
|
|
|
77
79
|
@return Observable<Brio<Motor6D>>
|
|
78
80
|
]=]
|
|
79
|
-
function Motor6DStackHumanoidBase.ObserveMotor6DsBrio(
|
|
80
|
-
|
|
81
|
-
|
|
81
|
+
function Motor6DStackHumanoidBase.ObserveMotor6DsBrio(self: Motor6DStackHumanoidBase): Observable.Observable<
|
|
82
|
+
Brio.Brio<R15Utils.AnimationConstraintOrMotor6D>
|
|
83
|
+
>
|
|
82
84
|
if self._observeMotor6DsBrioCache then
|
|
83
85
|
return self._observeMotor6DsBrioCache
|
|
84
86
|
end
|
|
85
87
|
|
|
86
88
|
self._observeMotor6DsBrioCache = RxInstanceUtils.observeParentBrio(self._obj):Pipe({
|
|
87
89
|
RxBrioUtils.flatMapBrio(function(character)
|
|
88
|
-
return RxInstanceUtils.observeDescendantsBrio(character,
|
|
89
|
-
return descendant:IsA("Motor6D")
|
|
90
|
-
end)
|
|
90
|
+
return RxInstanceUtils.observeDescendantsBrio(character, R15Utils.isAnimationConstraintOrMotor6D)
|
|
91
91
|
end) :: any,
|
|
92
92
|
Rx.cache() :: any,
|
|
93
93
|
}) :: any
|