@quenty/playerhumanoidbinder 14.19.3-canary.550.afa1b3b.0 → 14.19.4-canary.11a5dcf.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,7 +3,23 @@
|
|
|
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
|
-
## [14.19.
|
|
6
|
+
## [14.19.4-canary.11a5dcf.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/playerhumanoidbinder@14.19.3...@quenty/playerhumanoidbinder@14.19.4-canary.11a5dcf.0) (2025-05-10)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Additional type checking updates ([05ba29a](https://github.com/Quenty/NevermoreEngine/commit/05ba29a03efc9f3feed74b34f1d9dfb237496214))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* Add even more types ([b31717d](https://github.com/Quenty/NevermoreEngine/commit/b31717d8c9f7620c457f5018a2affa760a65334a))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [14.19.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/playerhumanoidbinder@14.19.2...@quenty/playerhumanoidbinder@14.19.3) (2025-04-10)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @quenty/playerhumanoidbinder
|
|
9
25
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/playerhumanoidbinder",
|
|
3
|
-
"version": "14.19.
|
|
3
|
+
"version": "14.19.4-canary.11a5dcf.0",
|
|
4
4
|
"description": "Binder that will automatically bind to each player's humanoid",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/binder": "14.19.
|
|
29
|
-
"@quenty/humanoidtracker": "13.17.
|
|
30
|
-
"@quenty/loader": "10.8.
|
|
31
|
-
"@quenty/maid": "3.4.
|
|
32
|
-
"@quenty/valueobject": "13.17.
|
|
28
|
+
"@quenty/binder": "14.19.4-canary.11a5dcf.0",
|
|
29
|
+
"@quenty/humanoidtracker": "13.17.4-canary.11a5dcf.0",
|
|
30
|
+
"@quenty/loader": "10.8.4-canary.11a5dcf.0",
|
|
31
|
+
"@quenty/maid": "3.4.4-canary.11a5dcf.0",
|
|
32
|
+
"@quenty/valueobject": "13.17.4-canary.11a5dcf.0"
|
|
33
33
|
},
|
|
34
34
|
"publishConfig": {
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "11a5dcf7d4c7a0bfbf3337e97d30e8346ea09d3f"
|
|
38
38
|
}
|
|
@@ -22,7 +22,7 @@ PlayerCharacterBinder.__index = PlayerCharacterBinder
|
|
|
22
22
|
@param ... any
|
|
23
23
|
@return PlayerCharacterBinder<T>
|
|
24
24
|
]=]
|
|
25
|
-
function PlayerCharacterBinder.new(tag, class, ...)
|
|
25
|
+
function PlayerCharacterBinder.new(tag: string, class, ...)
|
|
26
26
|
local self = setmetatable(Binder.new(tag, class, ...), PlayerCharacterBinder)
|
|
27
27
|
|
|
28
28
|
return self
|
|
@@ -130,5 +130,4 @@ function PlayerCharacterBinder:_handlePlayerAdded(playerMaid, player)
|
|
|
130
130
|
playerMaid[player] = maid
|
|
131
131
|
end
|
|
132
132
|
|
|
133
|
-
|
|
134
|
-
return PlayerCharacterBinder
|
|
133
|
+
return PlayerCharacterBinder
|
|
@@ -8,9 +8,10 @@ local require = require(script.Parent.loader).load(script)
|
|
|
8
8
|
local Players = game:GetService("Players")
|
|
9
9
|
|
|
10
10
|
local Binder = require("Binder")
|
|
11
|
+
local HumanoidTrackerService = require("HumanoidTrackerService")
|
|
11
12
|
local Maid = require("Maid")
|
|
13
|
+
local ServiceBag = require("ServiceBag")
|
|
12
14
|
local ValueObject = require("ValueObject")
|
|
13
|
-
local HumanoidTrackerService = require("HumanoidTrackerService")
|
|
14
15
|
|
|
15
16
|
local PlayerHumanoidBinder = setmetatable({}, Binder)
|
|
16
17
|
PlayerHumanoidBinder.ClassName = "PlayerHumanoidBinder"
|
|
@@ -36,7 +37,7 @@ end
|
|
|
36
37
|
@param serviceBag ServiceBag
|
|
37
38
|
@param ... any
|
|
38
39
|
]=]
|
|
39
|
-
function PlayerHumanoidBinder:Init(serviceBag, ...)
|
|
40
|
+
function PlayerHumanoidBinder:Init(serviceBag: ServiceBag.ServiceBag, ...)
|
|
40
41
|
self._serviceBag = assert(serviceBag, "No serviceBag")
|
|
41
42
|
|
|
42
43
|
getmetatable(PlayerHumanoidBinder).Init(self, serviceBag, ...)
|
|
@@ -135,5 +136,4 @@ function PlayerHumanoidBinder:_handlePlayerAdded(playerMaid, player)
|
|
|
135
136
|
playerMaid[player] = maid
|
|
136
137
|
end
|
|
137
138
|
|
|
138
|
-
|
|
139
|
-
return PlayerHumanoidBinder
|
|
139
|
+
return PlayerHumanoidBinder
|