@rbxts/types 1.0.863 → 1.0.864
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.
|
@@ -5514,22 +5514,18 @@ interface AudioGate extends Instance {
|
|
|
5514
5514
|
* - **ThreadSafety**: Unsafe
|
|
5515
5515
|
*
|
|
5516
5516
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate#GetConnectedWires)
|
|
5517
|
-
* @param this
|
|
5518
|
-
* @param pin
|
|
5519
5517
|
*/
|
|
5520
5518
|
GetConnectedWires(this: AudioGate, pin: string): Array<Instance>;
|
|
5521
5519
|
/**
|
|
5522
5520
|
* - **ThreadSafety**: Unsafe
|
|
5523
5521
|
*
|
|
5524
5522
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate#GetInputPins)
|
|
5525
|
-
* @param this
|
|
5526
5523
|
*/
|
|
5527
5524
|
GetInputPins(this: AudioGate): Array<unknown>;
|
|
5528
5525
|
/**
|
|
5529
5526
|
* - **ThreadSafety**: Unsafe
|
|
5530
5527
|
*
|
|
5531
5528
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate#GetOutputPins)
|
|
5532
|
-
* @param this
|
|
5533
5529
|
*/
|
|
5534
5530
|
GetOutputPins(this: AudioGate): Array<unknown>;
|
|
5535
5531
|
/**
|
|
@@ -6670,12 +6666,6 @@ interface AuroraService extends Instance {
|
|
|
6670
6666
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#IgnoreRotation)
|
|
6671
6667
|
*/
|
|
6672
6668
|
IgnoreRotation: boolean;
|
|
6673
|
-
/**
|
|
6674
|
-
* - **ThreadSafety**: ReadSafe
|
|
6675
|
-
*
|
|
6676
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#LockStepIdOffset)
|
|
6677
|
-
*/
|
|
6678
|
-
LockStepIdOffset: boolean;
|
|
6679
6669
|
/**
|
|
6680
6670
|
* - **ThreadSafety**: ReadSafe
|
|
6681
6671
|
*
|
|
@@ -6909,9 +6899,6 @@ interface AvatarCreationService extends Instance {
|
|
|
6909
6899
|
* - **Tags**: Yields
|
|
6910
6900
|
*
|
|
6911
6901
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#AutoSetupAvatarAsync)
|
|
6912
|
-
* @param this A service to support developer avatar creators.
|
|
6913
|
-
* @param player
|
|
6914
|
-
* @param model
|
|
6915
6902
|
*/
|
|
6916
6903
|
AutoSetupAvatarAsync(this: AvatarCreationService, player: Player, model: Model): string;
|
|
6917
6904
|
/**
|
|
@@ -6952,8 +6939,6 @@ interface AvatarCreationService extends Instance {
|
|
|
6952
6939
|
* - **Tags**: Yields
|
|
6953
6940
|
*
|
|
6954
6941
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#LoadGeneratedAvatarAsync)
|
|
6955
|
-
* @param this A service to support developer avatar creators.
|
|
6956
|
-
* @param generationId
|
|
6957
6942
|
*/
|
|
6958
6943
|
LoadGeneratedAvatarAsync(this: AvatarCreationService, generationId: string): HumanoidDescription;
|
|
6959
6944
|
/**
|
|
@@ -8320,7 +8305,7 @@ interface UnreliableRemoteEvent<T extends Callback = Callback> extends BaseRemot
|
|
|
8320
8305
|
*/
|
|
8321
8306
|
readonly _nominal_UnreliableRemoteEvent: unique symbol;
|
|
8322
8307
|
/**
|
|
8323
|
-
* Fires the `OnClientEvent` event for each client connected to the same `UnreliableRemoteEvent`. Has a
|
|
8308
|
+
* Fires the `OnClientEvent` event for each client connected to the same `UnreliableRemoteEvent`. Has a 900 byte limit to the payload of the event, otherwise event is dropped.
|
|
8324
8309
|
*
|
|
8325
8310
|
* - **ThreadSafety**: Unsafe
|
|
8326
8311
|
*
|
|
@@ -8330,7 +8315,7 @@ interface UnreliableRemoteEvent<T extends Callback = Callback> extends BaseRemot
|
|
|
8330
8315
|
*/
|
|
8331
8316
|
FireAllClients(this: UnreliableRemoteEvent, ...args: Parameters<T>): void;
|
|
8332
8317
|
/**
|
|
8333
|
-
* Fires the `OnClientEvent` event for a specific client connected to the same `UnreliableRemoteEvent`. Has a
|
|
8318
|
+
* Fires the `OnClientEvent` event for a specific client connected to the same `UnreliableRemoteEvent`. Has a 900 byte limit to the payload of the event, otherwise event is dropped.
|
|
8334
8319
|
*
|
|
8335
8320
|
* - **ThreadSafety**: Unsafe
|
|
8336
8321
|
*
|
|
@@ -8341,7 +8326,7 @@ interface UnreliableRemoteEvent<T extends Callback = Callback> extends BaseRemot
|
|
|
8341
8326
|
*/
|
|
8342
8327
|
FireClient(this: UnreliableRemoteEvent, player: Player, ...args: Parameters<T>): void;
|
|
8343
8328
|
/**
|
|
8344
|
-
* Fires the `OnServerEvent` event on the server from one client connected to the same `UnreliableRemoteEvent`. Has a
|
|
8329
|
+
* Fires the `OnServerEvent` event on the server from one client connected to the same `UnreliableRemoteEvent`. Has a 900 byte limit to the payload of the event, otherwise event is dropped.
|
|
8345
8330
|
*
|
|
8346
8331
|
* - **ThreadSafety**: Unsafe
|
|
8347
8332
|
*
|
|
@@ -9457,12 +9442,6 @@ interface CaptureService extends Instance {
|
|
|
9457
9442
|
* @param onCaptureReady A callback function that is called with the `contentId` of the new capture once it is ready.
|
|
9458
9443
|
*/
|
|
9459
9444
|
CaptureScreenshot(this: CaptureService, onCaptureReady: (captureContentId: string) => void): void;
|
|
9460
|
-
/**
|
|
9461
|
-
* - **ThreadSafety**: Unsafe
|
|
9462
|
-
*
|
|
9463
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#GetDeviceInfo)
|
|
9464
|
-
*/
|
|
9465
|
-
GetDeviceInfo(this: CaptureService): object;
|
|
9466
9445
|
/**
|
|
9467
9446
|
* Prompts the user to save specified captures to their gallery.
|
|
9468
9447
|
*
|
|
@@ -28113,8 +28092,6 @@ interface BasePart extends PVInstance {
|
|
|
28113
28092
|
*/
|
|
28114
28093
|
GetRenderCFrame(this: BasePart): CFrame;
|
|
28115
28094
|
/**
|
|
28116
|
-
* **Deprecated:**
|
|
28117
|
-
*
|
|
28118
28095
|
* Returns the base part of an assembly of parts.
|
|
28119
28096
|
*
|
|
28120
28097
|
* - **ThreadSafety**: Safe
|
|
@@ -36581,9 +36558,6 @@ interface SocialService extends Instance {
|
|
|
36581
36558
|
* - **Tags**: Yields
|
|
36582
36559
|
*
|
|
36583
36560
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#PromptLinkSharing)
|
|
36584
|
-
* @param this Facilitates social functions that impact relationships made on the Roblox platform.
|
|
36585
|
-
* @param player
|
|
36586
|
-
* @param options
|
|
36587
36561
|
*/
|
|
36588
36562
|
PromptLinkSharing(this: SocialService, player: Player, options?: object): unknown;
|
|
36589
36563
|
/**
|
|
@@ -38688,14 +38662,6 @@ interface SurfaceAppearance extends Instance {
|
|
|
38688
38662
|
* @deprecated
|
|
38689
38663
|
*/
|
|
38690
38664
|
readonly _nominal_SurfaceAppearance: unique symbol;
|
|
38691
|
-
/**
|
|
38692
|
-
* Determines how the alpha channel of the `SurfaceAppearance.ColorMap` is used.
|
|
38693
|
-
*
|
|
38694
|
-
* - **ThreadSafety**: ReadSafe
|
|
38695
|
-
*
|
|
38696
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#AlphaMode)
|
|
38697
|
-
*/
|
|
38698
|
-
AlphaMode: Enum.AlphaMode;
|
|
38699
38665
|
/**
|
|
38700
38666
|
* Applies a tint to your existing colormap. Set directly with color picker or programmatically with `Color3`.
|
|
38701
38667
|
*
|
|
@@ -13115,6 +13115,14 @@ interface SurfaceAppearance extends Instance {
|
|
|
13115
13115
|
* @deprecated
|
|
13116
13116
|
*/
|
|
13117
13117
|
readonly _nominal_SurfaceAppearance: unique symbol;
|
|
13118
|
+
/**
|
|
13119
|
+
* Determines how the alpha channel of the `SurfaceAppearance.ColorMap` is used.
|
|
13120
|
+
*
|
|
13121
|
+
* - **ThreadSafety**: ReadSafe
|
|
13122
|
+
*
|
|
13123
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#AlphaMode)
|
|
13124
|
+
*/
|
|
13125
|
+
AlphaMode: Enum.AlphaMode;
|
|
13118
13126
|
/**
|
|
13119
13127
|
* Determines the color and opacity of the surface.
|
|
13120
13128
|
*
|
|
@@ -22979,42 +22979,6 @@ declare namespace Enum {
|
|
|
22979
22979
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PositionAlignmentMode | undefined;
|
|
22980
22980
|
}
|
|
22981
22981
|
export type PositionAlignmentMode = PositionAlignmentMode.OneAttachment | PositionAlignmentMode.TwoAttachment;
|
|
22982
|
-
/**
|
|
22983
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionMode)
|
|
22984
|
-
*/
|
|
22985
|
-
export namespace PredictionMode {
|
|
22986
|
-
/**
|
|
22987
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionMode#Auto)
|
|
22988
|
-
*/
|
|
22989
|
-
export interface Auto extends globalThis.EnumItem {
|
|
22990
|
-
Name: "Auto";
|
|
22991
|
-
Value: 0;
|
|
22992
|
-
EnumType: typeof globalThis.Enum.PredictionMode;
|
|
22993
|
-
}
|
|
22994
|
-
export const Auto: Auto;
|
|
22995
|
-
/**
|
|
22996
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionMode#None)
|
|
22997
|
-
*/
|
|
22998
|
-
export interface None extends globalThis.EnumItem {
|
|
22999
|
-
Name: "None";
|
|
23000
|
-
Value: 1;
|
|
23001
|
-
EnumType: typeof globalThis.Enum.PredictionMode;
|
|
23002
|
-
}
|
|
23003
|
-
export const None: None;
|
|
23004
|
-
/**
|
|
23005
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionMode#Forced)
|
|
23006
|
-
*/
|
|
23007
|
-
export interface Forced extends globalThis.EnumItem {
|
|
23008
|
-
Name: "Forced";
|
|
23009
|
-
Value: 2;
|
|
23010
|
-
EnumType: typeof globalThis.Enum.PredictionMode;
|
|
23011
|
-
}
|
|
23012
|
-
export const Forced: Forced;
|
|
23013
|
-
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PredictionMode>;
|
|
23014
|
-
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PredictionMode | undefined;
|
|
23015
|
-
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PredictionMode | undefined;
|
|
23016
|
-
}
|
|
23017
|
-
export type PredictionMode = PredictionMode.Auto | PredictionMode.None | PredictionMode.Forced;
|
|
23018
22982
|
/**
|
|
23019
22983
|
* This enum is used with `UserInputService.PreferredInput` to indicate the primary input type a player is likely using.
|
|
23020
22984
|
*
|