@quenty/motor6d 7.41.0 → 7.42.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 CHANGED
@@ -3,6 +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
+ # [7.42.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/motor6d@7.41.0...@quenty/motor6d@7.42.0) (2026-05-29)
7
+
8
+ ### Bug Fixes
9
+
10
+ - Handle new animation constraints ([519e52a](https://github.com/Quenty/NevermoreEngine/commit/519e52a227fe241e30c9d92b6c9e6e92246552d3))
11
+
6
12
  # [7.41.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/motor6d@7.40.2...@quenty/motor6d@7.41.0) (2026-05-18)
7
13
 
8
14
  **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.41.0",
3
+ "version": "7.42.0",
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.35.0",
33
- "@quenty/brio": "14.29.2",
32
+ "@quenty/binder": "14.36.0",
33
+ "@quenty/brio": "14.30.0",
34
34
  "@quenty/cframeutils": "5.5.6",
35
35
  "@quenty/draw": "7.14.0",
36
- "@quenty/instanceutils": "13.29.2",
36
+ "@quenty/instanceutils": "13.30.0",
37
37
  "@quenty/loader": "10.11.0",
38
38
  "@quenty/maid": "3.9.0",
39
- "@quenty/playerhumanoidbinder": "14.36.0",
39
+ "@quenty/playerhumanoidbinder": "14.37.0",
40
40
  "@quenty/rx": "13.28.2",
41
41
  "@quenty/servicebag": "11.18.0",
42
42
  "@quenty/signal": "7.13.0",
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.39.0",
47
- "@quenty/valueobject": "13.30.2"
46
+ "@quenty/tie": "10.40.0",
47
+ "@quenty/valueobject": "13.31.0"
48
48
  },
49
49
  "publishConfig": {
50
50
  "access": "public"
51
51
  },
52
- "gitHead": "5cba15660c2856169fd0362e1eeeca4c260029c2"
52
+ "gitHead": "f4a374a0a294ee8900aa5cb68ab138b0acf3e0ae"
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<Motor6D>>?,
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
- self: Motor6DStackHumanoidBase
81
- ): Observable.Observable<Brio.Brio<Motor6D>>
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, function(descendant)
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