@rbxts/types 1.0.838 → 1.0.839
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.
|
@@ -26851,7 +26851,7 @@ interface Platform extends Part {
|
|
|
26851
26851
|
*
|
|
26852
26852
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Platform#RemoteCreateMotor6D)
|
|
26853
26853
|
*/
|
|
26854
|
-
readonly RemoteCreateMotor6D: RBXScriptSignal<(humanoid:
|
|
26854
|
+
readonly RemoteCreateMotor6D: RBXScriptSignal<(humanoid: Humanoid) => void>;
|
|
26855
26855
|
/**
|
|
26856
26856
|
* - **ThreadSafety**: Unsafe
|
|
26857
26857
|
* - **Tags**: Hidden
|
|
@@ -26900,14 +26900,14 @@ interface Seat extends Part {
|
|
|
26900
26900
|
* @param this A type of `BasePart` that characters can 'sit' in. When a character touches an enabled Seat object, it will be attached to the part by a `Weld` and the default character scripts will play a sitting animation.
|
|
26901
26901
|
* @param humanoid
|
|
26902
26902
|
*/
|
|
26903
|
-
Sit(this: Seat, humanoid:
|
|
26903
|
+
Sit(this: Seat, humanoid: Humanoid | undefined): void;
|
|
26904
26904
|
/**
|
|
26905
26905
|
* - **ThreadSafety**: Unsafe
|
|
26906
26906
|
* - **Tags**: Hidden
|
|
26907
26907
|
*
|
|
26908
26908
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Seat#RemoteCreateSeatWeld)
|
|
26909
26909
|
*/
|
|
26910
|
-
readonly RemoteCreateSeatWeld: RBXScriptSignal<(humanoid:
|
|
26910
|
+
readonly RemoteCreateSeatWeld: RBXScriptSignal<(humanoid: Humanoid) => void>;
|
|
26911
26911
|
/**
|
|
26912
26912
|
* - **ThreadSafety**: Unsafe
|
|
26913
26913
|
* - **Tags**: Hidden
|
|
@@ -26997,7 +26997,7 @@ interface SkateboardPlatform extends Part {
|
|
|
26997
26997
|
*
|
|
26998
26998
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SkateboardPlatform#Equipped)
|
|
26999
26999
|
*/
|
|
27000
|
-
readonly Equipped: RBXScriptSignal<(humanoid:
|
|
27000
|
+
readonly Equipped: RBXScriptSignal<(humanoid: Humanoid, skateboardController: SkateboardController) => void>;
|
|
27001
27001
|
/**
|
|
27002
27002
|
* Fired when the SkateboardPlatform's `SkateboardPlatform.ControllingHumanoid` changes the force being used on the SkateboardPlatform.
|
|
27003
27003
|
*
|
|
@@ -27012,7 +27012,7 @@ interface SkateboardPlatform extends Part {
|
|
|
27012
27012
|
*
|
|
27013
27013
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SkateboardPlatform#RemoteCreateMotor6D)
|
|
27014
27014
|
*/
|
|
27015
|
-
readonly RemoteCreateMotor6D: RBXScriptSignal<(humanoid:
|
|
27015
|
+
readonly RemoteCreateMotor6D: RBXScriptSignal<(humanoid: Humanoid) => void>;
|
|
27016
27016
|
/**
|
|
27017
27017
|
* - **ThreadSafety**: Unsafe
|
|
27018
27018
|
* - **Tags**: Hidden
|
|
@@ -27027,7 +27027,7 @@ interface SkateboardPlatform extends Part {
|
|
|
27027
27027
|
*
|
|
27028
27028
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SkateboardPlatform#Unequipped)
|
|
27029
27029
|
*/
|
|
27030
|
-
readonly Unequipped: RBXScriptSignal<(humanoid:
|
|
27030
|
+
readonly Unequipped: RBXScriptSignal<(humanoid: Humanoid) => void>;
|
|
27031
27031
|
}
|
|
27032
27032
|
/**
|
|
27033
27033
|
* `SpawnLocations`, or "spawns" determine where a `Player` respawns when they die. They can be configured to allow only certain players to use each spawn, using `Teams`. They also control how `ForceFields` are set up for newly-spawned players.
|