@quenty/humanoidtracker 13.16.0 → 13.16.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,14 @@
|
|
|
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
|
+
## [13.16.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidtracker@13.16.0...@quenty/humanoidtracker@13.16.1) (2025-03-21)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/humanoidtracker
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [13.16.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidtracker@13.15.0...@quenty/humanoidtracker@13.16.0) (2025-02-18)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @quenty/humanoidtracker
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/humanoidtracker",
|
|
3
|
-
"version": "13.16.
|
|
3
|
+
"version": "13.16.1",
|
|
4
4
|
"description": "HumanoidTracker for Roblox - Tracks a player's character's humanoid",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"@quenty/baseobject": "^10.8.0",
|
|
29
29
|
"@quenty/loader": "^10.8.0",
|
|
30
30
|
"@quenty/maid": "^3.4.0",
|
|
31
|
-
"@quenty/promise": "^10.10.
|
|
31
|
+
"@quenty/promise": "^10.10.1",
|
|
32
32
|
"@quenty/signal": "^7.10.0",
|
|
33
|
-
"@quenty/valueobject": "^13.16.
|
|
33
|
+
"@quenty/valueobject": "^13.16.1"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "6b7c3e15e60cdb185986207b574e2b5591261e7a"
|
|
39
39
|
}
|
|
@@ -31,7 +31,7 @@ end
|
|
|
31
31
|
@param player Player? -- If not set, uses local player
|
|
32
32
|
@return HumanoidTracker
|
|
33
33
|
]=]
|
|
34
|
-
function HumanoidTrackerService:GetHumanoidTracker(player)
|
|
34
|
+
function HumanoidTrackerService:GetHumanoidTracker(player: Player?)
|
|
35
35
|
assert((typeof(player) == "Instance" and player:IsA("Player")) or player == nil, "Bad player")
|
|
36
36
|
|
|
37
37
|
player = player or Players.LocalPlayer
|
|
@@ -64,7 +64,7 @@ end
|
|
|
64
64
|
@param player Player? -- If not set, uses local player
|
|
65
65
|
@return Humanoid?
|
|
66
66
|
]=]
|
|
67
|
-
function HumanoidTrackerService:GetHumanoid(player)
|
|
67
|
+
function HumanoidTrackerService:GetHumanoid(player: Player?)
|
|
68
68
|
assert((typeof(player) == "Instance" and player:IsA("Player")) or player == nil, "Bad player")
|
|
69
69
|
|
|
70
70
|
player = player or Players.LocalPlayer
|
|
@@ -77,7 +77,7 @@ end
|
|
|
77
77
|
@param player Player? -- If not set, uses local player
|
|
78
78
|
@return Observable<Humanoid | nil>
|
|
79
79
|
]=]
|
|
80
|
-
function HumanoidTrackerService:ObserveHumanoid(player)
|
|
80
|
+
function HumanoidTrackerService:ObserveHumanoid(player: Player?)
|
|
81
81
|
assert((typeof(player) == "Instance" and player:IsA("Player")) or player == nil, "Bad player")
|
|
82
82
|
|
|
83
83
|
player = player or Players.LocalPlayer
|
|
@@ -91,7 +91,7 @@ end
|
|
|
91
91
|
@param player Player? -- If not set, uses local player
|
|
92
92
|
@return Observable<Brio<Humanoid>>
|
|
93
93
|
]=]
|
|
94
|
-
function HumanoidTrackerService:ObserveHumanoidBrio(player)
|
|
94
|
+
function HumanoidTrackerService:ObserveHumanoidBrio(player: Player?)
|
|
95
95
|
assert((typeof(player) == "Instance" and player:IsA("Player")) or player == nil, "Bad player")
|
|
96
96
|
|
|
97
97
|
player = player or Players.LocalPlayer
|
|
@@ -107,7 +107,7 @@ end
|
|
|
107
107
|
@param player Player? -- If not set, uses local player
|
|
108
108
|
@return Humanoid?
|
|
109
109
|
]=]
|
|
110
|
-
function HumanoidTrackerService:GetAliveHumanoid(player)
|
|
110
|
+
function HumanoidTrackerService:GetAliveHumanoid(player: Player?)
|
|
111
111
|
assert((typeof(player) == "Instance" and player:IsA("Player")) or player == nil, "Bad player")
|
|
112
112
|
|
|
113
113
|
player = player or Players.LocalPlayer
|
|
@@ -120,7 +120,7 @@ end
|
|
|
120
120
|
@param player Player? -- If not set, uses local player
|
|
121
121
|
@return Observable<Humanoid | nil>
|
|
122
122
|
]=]
|
|
123
|
-
function HumanoidTrackerService:ObserveAliveHumanoid(player)
|
|
123
|
+
function HumanoidTrackerService:ObserveAliveHumanoid(player: Player?)
|
|
124
124
|
assert((typeof(player) == "Instance" and player:IsA("Player")) or player == nil, "Bad player")
|
|
125
125
|
|
|
126
126
|
player = player or Players.LocalPlayer
|
|
@@ -134,7 +134,7 @@ end
|
|
|
134
134
|
@param player Player? -- If not set, uses local player
|
|
135
135
|
@return Observable<Brio<Humanoid>>
|
|
136
136
|
]=]
|
|
137
|
-
function HumanoidTrackerService:ObserveAliveHumanoidBrio(player)
|
|
137
|
+
function HumanoidTrackerService:ObserveAliveHumanoidBrio(player: Player?)
|
|
138
138
|
assert((typeof(player) == "Instance" and player:IsA("Player")) or player == nil, "Bad player")
|
|
139
139
|
|
|
140
140
|
player = player or Players.LocalPlayer
|
|
@@ -151,4 +151,4 @@ function HumanoidTrackerService:Destroy()
|
|
|
151
151
|
self._maid:DoCleaning()
|
|
152
152
|
end
|
|
153
153
|
|
|
154
|
-
return HumanoidTrackerService
|
|
154
|
+
return HumanoidTrackerService
|