@rbxts/types 1.0.806 → 1.0.807
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.
|
@@ -17347,11 +17347,7 @@ interface Humanoid extends Instance {
|
|
|
17347
17347
|
* * [Humanoid.Sit](https://developer.roblox.com/en-us/api-reference/property/Humanoid/Sit), which indicates if a Humanoid is currently sitting
|
|
17348
17348
|
* * [Humanoid.SeatPart](https://developer.roblox.com/en-us/api-reference/property/Humanoid/SeatPart), which indicates the seat a Humanoid is currently sitting in, if any.
|
|
17349
17349
|
*/
|
|
17350
|
-
readonly Seated: RBXScriptSignal<
|
|
17351
|
-
(
|
|
17352
|
-
...args: [active: true, currentSeatPart: Seat | VehicleSeat] | [active: false, currentSeatPart: undefined]
|
|
17353
|
-
) => void
|
|
17354
|
-
>;
|
|
17350
|
+
readonly Seated: RBXScriptSignal<(active: boolean, currentSeatPart: Seat | VehicleSeat | undefined) => void>;
|
|
17355
17351
|
/**
|
|
17356
17352
|
* This event fires when the state of the [Humanoid](https://developer.roblox.com/en-us/api-reference/class/Humanoid) is changed.
|
|
17357
17353
|
*
|