@quenty/motor6d 7.42.2 → 7.44.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,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.44.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/motor6d@7.43.0...@quenty/motor6d@7.44.0) (2026-07-18)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/motor6d
|
|
9
|
+
|
|
10
|
+
# [7.43.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/motor6d@7.42.2...@quenty/motor6d@7.43.0) (2026-07-14)
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- **motor6d:** convert package to --!strict ([404bd2c](https://github.com/Quenty/NevermoreEngine/commit/404bd2ceb2e41b67c1d5537bc8210d46dd093787))
|
|
15
|
+
|
|
6
16
|
## [7.42.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/motor6d@7.42.1...@quenty/motor6d@7.42.2) (2026-06-02)
|
|
7
17
|
|
|
8
18
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/motor6d",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.44.0",
|
|
4
4
|
"description": "Centralized service to override motors on humanoids and other places",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -29,26 +29,26 @@
|
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@quenty/baseobject": "10.13.0",
|
|
32
|
-
"@quenty/binder": "14.
|
|
33
|
-
"@quenty/brio": "14.
|
|
32
|
+
"@quenty/binder": "14.38.0",
|
|
33
|
+
"@quenty/brio": "14.31.0",
|
|
34
34
|
"@quenty/cframeutils": "5.5.6",
|
|
35
35
|
"@quenty/draw": "7.14.1",
|
|
36
|
-
"@quenty/instanceutils": "13.
|
|
36
|
+
"@quenty/instanceutils": "13.31.0",
|
|
37
37
|
"@quenty/loader": "10.11.0",
|
|
38
38
|
"@quenty/maid": "3.9.0",
|
|
39
|
-
"@quenty/playerhumanoidbinder": "14.
|
|
40
|
-
"@quenty/r15utils": "13.
|
|
41
|
-
"@quenty/rx": "13.
|
|
39
|
+
"@quenty/playerhumanoidbinder": "14.39.0",
|
|
40
|
+
"@quenty/r15utils": "13.32.0",
|
|
41
|
+
"@quenty/rx": "13.29.0",
|
|
42
42
|
"@quenty/servicebag": "11.18.1",
|
|
43
43
|
"@quenty/signal": "7.13.1",
|
|
44
44
|
"@quenty/spring": "10.12.0",
|
|
45
45
|
"@quenty/steputils": "3.6.3",
|
|
46
46
|
"@quenty/symbol": "3.5.2",
|
|
47
|
-
"@quenty/tie": "10.
|
|
48
|
-
"@quenty/valueobject": "13.
|
|
47
|
+
"@quenty/tie": "10.42.0",
|
|
48
|
+
"@quenty/valueobject": "13.32.0"
|
|
49
49
|
},
|
|
50
50
|
"publishConfig": {
|
|
51
51
|
"access": "public"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "cbbb89635bfdcbf32f26a40422ac736292917cca"
|
|
54
54
|
}
|
|
@@ -46,4 +46,4 @@ function Motor6DStackHumanoid.new(humanoid: Humanoid, serviceBag: ServiceBag.Ser
|
|
|
46
46
|
return self
|
|
47
47
|
end
|
|
48
48
|
|
|
49
|
-
return PlayerHumanoidBinder.new("Motor6DStackHumanoid", Motor6DStackHumanoid)
|
|
49
|
+
return PlayerHumanoidBinder.new("Motor6DStackHumanoid", Motor6DStackHumanoid :: any)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
--!
|
|
1
|
+
--!strict
|
|
2
2
|
--[=[
|
|
3
3
|
@class Motor6DService
|
|
4
4
|
]=]
|
|
@@ -10,8 +10,15 @@ local ServiceBag = require("ServiceBag")
|
|
|
10
10
|
local Motor6DService = {}
|
|
11
11
|
Motor6DService.ServiceName = "Motor6DService"
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
export type Motor6DService = typeof(setmetatable(
|
|
14
|
+
{} :: {
|
|
15
|
+
_serviceBag: ServiceBag.ServiceBag,
|
|
16
|
+
},
|
|
17
|
+
{} :: typeof({ __index = Motor6DService })
|
|
18
|
+
))
|
|
19
|
+
|
|
20
|
+
function Motor6DService.Init(self: Motor6DService, serviceBag: ServiceBag.ServiceBag): ()
|
|
21
|
+
assert(not (self :: any)._serviceBag, "Already initialized")
|
|
15
22
|
self._serviceBag = assert(serviceBag, "No serviceBag")
|
|
16
23
|
|
|
17
24
|
-- Services
|