@rbxts/types 1.0.881 → 1.0.882
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.
|
@@ -899,7 +899,7 @@ interface ConfigSnapshot extends RBXObject {
|
|
|
899
899
|
* @param key
|
|
900
900
|
* @param defaultValue
|
|
901
901
|
*/
|
|
902
|
-
GetValue(this: ConfigSnapshot, key: string
|
|
902
|
+
GetValue(this: ConfigSnapshot, key: string): unknown;
|
|
903
903
|
/**
|
|
904
904
|
* - **ThreadSafety**: Unsafe
|
|
905
905
|
*
|
|
@@ -2361,6 +2361,12 @@ interface Instance extends RBXObject {
|
|
|
2361
2361
|
* @returns The full name of the `Instance`.
|
|
2362
2362
|
*/
|
|
2363
2363
|
GetFullName(this: Instance): string;
|
|
2364
|
+
/**
|
|
2365
|
+
* - **ThreadSafety**: Unsafe
|
|
2366
|
+
*
|
|
2367
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#GetPredictionMode)
|
|
2368
|
+
*/
|
|
2369
|
+
GetPredictionMode(this: Instance): Enum.PredictionMode;
|
|
2364
2370
|
/**
|
|
2365
2371
|
* Returns the styled or explicitly modified value of the specified property, or else the default property value if it hasn't been styled/modified.
|
|
2366
2372
|
*
|
|
@@ -4298,7 +4304,7 @@ interface Atmosphere extends Instance {
|
|
|
4298
4304
|
Offset: number;
|
|
4299
4305
|
}
|
|
4300
4306
|
/**
|
|
4301
|
-
* Defines a point and orientation relative to
|
|
4307
|
+
* Defines a point and orientation relative to an ancestor `PVInstance`, `Bone`, or another `Attachment`.
|
|
4302
4308
|
*
|
|
4303
4309
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Attachment)
|
|
4304
4310
|
*/
|
|
@@ -4443,7 +4449,7 @@ interface Attachment extends Instance {
|
|
|
4443
4449
|
* - **Tags**:
|
|
4444
4450
|
*
|
|
4445
4451
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Attachment#GetAxis)
|
|
4446
|
-
* @param this Defines a point and orientation relative to
|
|
4452
|
+
* @param this Defines a point and orientation relative to an ancestor `PVInstance`, `Bone`, or another `Attachment`.
|
|
4447
4453
|
*
|
|
4448
4454
|
* @deprecated Axis
|
|
4449
4455
|
*/
|
|
@@ -4454,7 +4460,7 @@ interface Attachment extends Instance {
|
|
|
4454
4460
|
* - **ThreadSafety**: Unsafe
|
|
4455
4461
|
*
|
|
4456
4462
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Attachment#GetConstraints)
|
|
4457
|
-
* @param this Defines a point and orientation relative to
|
|
4463
|
+
* @param this Defines a point and orientation relative to an ancestor `PVInstance`, `Bone`, or another `Attachment`.
|
|
4458
4464
|
*/
|
|
4459
4465
|
GetConstraints(this: Attachment): Array<Instance>;
|
|
4460
4466
|
/**
|
|
@@ -4466,7 +4472,7 @@ interface Attachment extends Instance {
|
|
|
4466
4472
|
* - **Tags**:
|
|
4467
4473
|
*
|
|
4468
4474
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Attachment#GetSecondaryAxis)
|
|
4469
|
-
* @param this Defines a point and orientation relative to
|
|
4475
|
+
* @param this Defines a point and orientation relative to an ancestor `PVInstance`, `Bone`, or another `Attachment`.
|
|
4470
4476
|
*
|
|
4471
4477
|
* @deprecated SecondaryAxis
|
|
4472
4478
|
*/
|
|
@@ -4480,7 +4486,7 @@ interface Attachment extends Instance {
|
|
|
4480
4486
|
* - **Tags**:
|
|
4481
4487
|
*
|
|
4482
4488
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Attachment#SetAxis)
|
|
4483
|
-
* @param this Defines a point and orientation relative to
|
|
4489
|
+
* @param this Defines a point and orientation relative to an ancestor `PVInstance`, `Bone`, or another `Attachment`.
|
|
4484
4490
|
* @param axis
|
|
4485
4491
|
*
|
|
4486
4492
|
* @deprecated Axis
|
|
@@ -4495,7 +4501,7 @@ interface Attachment extends Instance {
|
|
|
4495
4501
|
* - **Tags**:
|
|
4496
4502
|
*
|
|
4497
4503
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Attachment#SetSecondaryAxis)
|
|
4498
|
-
* @param this Defines a point and orientation relative to
|
|
4504
|
+
* @param this Defines a point and orientation relative to an ancestor `PVInstance`, `Bone`, or another `Attachment`.
|
|
4499
4505
|
* @param axis
|
|
4500
4506
|
*
|
|
4501
4507
|
* @deprecated SecondaryAxis
|
|
@@ -25477,6 +25483,14 @@ interface Lighting extends Instance {
|
|
|
25477
25483
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Lighting#GlobalShadows)
|
|
25478
25484
|
*/
|
|
25479
25485
|
GlobalShadows: boolean;
|
|
25486
|
+
/**
|
|
25487
|
+
* The artistic intent behind lighting in the experience.
|
|
25488
|
+
*
|
|
25489
|
+
* - **ThreadSafety**: ReadSafe
|
|
25490
|
+
*
|
|
25491
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Lighting#LightingStyle)
|
|
25492
|
+
*/
|
|
25493
|
+
get LightingStyle(): Enum.LightingStyle;
|
|
25480
25494
|
/**
|
|
25481
25495
|
* The lighting hue applied to outdoor areas.
|
|
25482
25496
|
*
|
|
@@ -25498,6 +25512,14 @@ interface Lighting extends Instance {
|
|
|
25498
25512
|
* @deprecated
|
|
25499
25513
|
*/
|
|
25500
25514
|
Outlines: boolean;
|
|
25515
|
+
/**
|
|
25516
|
+
* Indicates whether you prefer lighting/shading quality or view distance to scale down first.
|
|
25517
|
+
*
|
|
25518
|
+
* - **ThreadSafety**: ReadSafe
|
|
25519
|
+
*
|
|
25520
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Lighting#PrioritizeLightingQuality)
|
|
25521
|
+
*/
|
|
25522
|
+
get PrioritizeLightingQuality(): boolean;
|
|
25501
25523
|
/**
|
|
25502
25524
|
* **Deprecated:** This item is deprecated and has no current functionality. Do not use it for new work.
|
|
25503
25525
|
*
|
|
@@ -27793,7 +27815,7 @@ interface OperationGraph extends Instance {
|
|
|
27793
27815
|
readonly _nominal_OperationGraph: unique symbol;
|
|
27794
27816
|
}
|
|
27795
27817
|
/**
|
|
27796
|
-
* Abstract class for all objects that have a physical location in the world
|
|
27818
|
+
* Abstract class for all objects that have a physical location in the world.
|
|
27797
27819
|
*
|
|
27798
27820
|
* - **Tags**: NotCreatable, NotBrowsable
|
|
27799
27821
|
*
|
|
@@ -27814,7 +27836,7 @@ interface PVInstance extends Instance {
|
|
|
27814
27836
|
* - **ThreadSafety**: Safe
|
|
27815
27837
|
*
|
|
27816
27838
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PVInstance#GetPivot)
|
|
27817
|
-
* @param this Abstract class for all objects that have a physical location in the world
|
|
27839
|
+
* @param this Abstract class for all objects that have a physical location in the world.
|
|
27818
27840
|
*/
|
|
27819
27841
|
GetPivot(this: PVInstance): CFrame;
|
|
27820
27842
|
/**
|
|
@@ -27823,7 +27845,7 @@ interface PVInstance extends Instance {
|
|
|
27823
27845
|
* - **ThreadSafety**: Unsafe
|
|
27824
27846
|
*
|
|
27825
27847
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PVInstance#PivotTo)
|
|
27826
|
-
* @param this Abstract class for all objects that have a physical location in the world
|
|
27848
|
+
* @param this Abstract class for all objects that have a physical location in the world.
|
|
27827
27849
|
* @param targetCFrame The `CFrame` that the `PVInstance` pivot should equal after moving it.
|
|
27828
27850
|
*/
|
|
27829
27851
|
PivotTo(this: PVInstance, targetCFrame: CFrame): void;
|
|
@@ -28688,6 +28710,8 @@ interface BasePart extends PVInstance {
|
|
|
28688
28710
|
*/
|
|
28689
28711
|
GetRenderCFrame(this: BasePart): CFrame;
|
|
28690
28712
|
/**
|
|
28713
|
+
* **Deprecated:**
|
|
28714
|
+
*
|
|
28691
28715
|
* Returns the base part of an assembly of parts.
|
|
28692
28716
|
*
|
|
28693
28717
|
* - **ThreadSafety**: Safe
|
|
@@ -38168,6 +38192,12 @@ interface SoundService extends Instance {
|
|
|
38168
38192
|
* @deprecated
|
|
38169
38193
|
*/
|
|
38170
38194
|
readonly _nominal_SoundService: unique symbol;
|
|
38195
|
+
/**
|
|
38196
|
+
* - **ThreadSafety**: ReadSafe
|
|
38197
|
+
*
|
|
38198
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SoundService#AcousticSimulationEnabled)
|
|
38199
|
+
*/
|
|
38200
|
+
AcousticSimulationEnabled: boolean;
|
|
38171
38201
|
/**
|
|
38172
38202
|
* The ambient sound environment preset used by `SoundService`.
|
|
38173
38203
|
*
|
|
@@ -41623,7 +41653,7 @@ interface TextGenerator extends Instance {
|
|
|
41623
41653
|
*/
|
|
41624
41654
|
readonly _nominal_TextGenerator: unique symbol;
|
|
41625
41655
|
/**
|
|
41626
|
-
* Sets a fixed seed for the random number generator, allowing reproducible responses in cases where the same input parameters are used across
|
|
41656
|
+
* Sets a fixed seed for the random number generator, allowing reproducible responses in cases where the same input parameters are used across multiple requests.
|
|
41627
41657
|
*
|
|
41628
41658
|
* - **ThreadSafety**: ReadSafe
|
|
41629
41659
|
*
|
|
@@ -41662,7 +41692,7 @@ interface TextGenerator extends Instance {
|
|
|
41662
41692
|
*
|
|
41663
41693
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TextGenerator#GenerateTextAsync)
|
|
41664
41694
|
* @param this Gives access to a large language model for text generation.
|
|
41665
|
-
* @param request A dictionary containing optional parameters for the text generation request. The currently supported parameters are `UserPrompt`,
|
|
41695
|
+
* @param request A dictionary containing optional parameters for the text generation request. The currently supported parameters are `UserPrompt`, `ContextToken`, and `MaxTokens`.
|
|
41666
41696
|
* @returns A dictionary containing the LLM's generated response.
|
|
41667
41697
|
*/
|
|
41668
41698
|
GenerateTextAsync(this: TextGenerator, request: object): object;
|
|
@@ -45847,6 +45877,24 @@ interface WrapTextureTransfer extends Instance {
|
|
|
45847
45877
|
* @deprecated
|
|
45848
45878
|
*/
|
|
45849
45879
|
readonly _nominal_WrapTextureTransfer: unique symbol;
|
|
45880
|
+
/**
|
|
45881
|
+
* - **ThreadSafety**: ReadSafe
|
|
45882
|
+
*
|
|
45883
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapTextureTransfer#ReferenceCageMeshContent)
|
|
45884
|
+
*/
|
|
45885
|
+
ReferenceCageMeshContent: Content;
|
|
45886
|
+
/**
|
|
45887
|
+
* - **ThreadSafety**: ReadSafe
|
|
45888
|
+
*
|
|
45889
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapTextureTransfer#UVMaxBound)
|
|
45890
|
+
*/
|
|
45891
|
+
UVMaxBound: Vector2;
|
|
45892
|
+
/**
|
|
45893
|
+
* - **ThreadSafety**: ReadSafe
|
|
45894
|
+
*
|
|
45895
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapTextureTransfer#UVMinBound)
|
|
45896
|
+
*/
|
|
45897
|
+
UVMinBound: Vector2;
|
|
45850
45898
|
}
|
|
45851
45899
|
/**
|
|
45852
45900
|
* - **Tags**: NotCreatable, NotReplicated
|
|
@@ -1506,7 +1506,7 @@ interface Atmosphere extends Instance {
|
|
|
1506
1506
|
readonly _nominal_Atmosphere: unique symbol;
|
|
1507
1507
|
}
|
|
1508
1508
|
/**
|
|
1509
|
-
* Defines a point and orientation relative to
|
|
1509
|
+
* Defines a point and orientation relative to an ancestor `PVInstance`, `Bone`, or another `Attachment`.
|
|
1510
1510
|
*
|
|
1511
1511
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Attachment)
|
|
1512
1512
|
*/
|
|
@@ -8581,7 +8581,7 @@ interface OperationGraph extends Instance {
|
|
|
8581
8581
|
readonly _nominal_OperationGraph: unique symbol;
|
|
8582
8582
|
}
|
|
8583
8583
|
/**
|
|
8584
|
-
* Abstract class for all objects that have a physical location in the world
|
|
8584
|
+
* Abstract class for all objects that have a physical location in the world.
|
|
8585
8585
|
*
|
|
8586
8586
|
* - **Tags**: NotCreatable, NotBrowsable
|
|
8587
8587
|
*
|
|
@@ -10148,11 +10148,14 @@ interface Plugin extends Instance {
|
|
|
10148
10148
|
* Used to open the given script instance in an editor window, in Roblox studio, at the given line. If no line is given as an argument it will default to 1.
|
|
10149
10149
|
*
|
|
10150
10150
|
* - **ThreadSafety**: Unsafe
|
|
10151
|
+
* - **Tags**:
|
|
10151
10152
|
*
|
|
10152
10153
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Plugin#OpenScript)
|
|
10153
10154
|
* @param this
|
|
10154
10155
|
* @param script
|
|
10155
10156
|
* @param lineNumber
|
|
10157
|
+
*
|
|
10158
|
+
* @deprecated
|
|
10156
10159
|
*/
|
|
10157
10160
|
OpenScript(this: Plugin, script: LuaSourceContainer, lineNumber?: number): void;
|
|
10158
10161
|
/**
|
|
@@ -2149,11 +2149,20 @@ declare namespace Enum {
|
|
|
2149
2149
|
EnumType: typeof globalThis.Enum.AppUpdateStatus;
|
|
2150
2150
|
}
|
|
2151
2151
|
export const AvailableBoundChannel: AvailableBoundChannel;
|
|
2152
|
+
/**
|
|
2153
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AppUpdateStatus#AvailableBetaProgram)
|
|
2154
|
+
*/
|
|
2155
|
+
export interface AvailableBetaProgram extends globalThis.EnumItem {
|
|
2156
|
+
Name: "AvailableBetaProgram";
|
|
2157
|
+
Value: 6;
|
|
2158
|
+
EnumType: typeof globalThis.Enum.AppUpdateStatus;
|
|
2159
|
+
}
|
|
2160
|
+
export const AvailableBetaProgram: AvailableBetaProgram;
|
|
2152
2161
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AppUpdateStatus>;
|
|
2153
2162
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AppUpdateStatus | undefined;
|
|
2154
2163
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AppUpdateStatus | undefined;
|
|
2155
2164
|
}
|
|
2156
|
-
export type AppUpdateStatus = AppUpdateStatus.Unknown | AppUpdateStatus.NotSupported | AppUpdateStatus.Failed | AppUpdateStatus.NotAvailable | AppUpdateStatus.Available | AppUpdateStatus.AvailableBoundChannel;
|
|
2165
|
+
export type AppUpdateStatus = AppUpdateStatus.Unknown | AppUpdateStatus.NotSupported | AppUpdateStatus.Failed | AppUpdateStatus.NotAvailable | AppUpdateStatus.Available | AppUpdateStatus.AvailableBoundChannel | AppUpdateStatus.AvailableBetaProgram;
|
|
2157
2166
|
/**
|
|
2158
2167
|
* Used by `UIStroke.ApplyStrokeMode` to determine where to apply the stroke.
|
|
2159
2168
|
*
|
|
@@ -8011,6 +8020,15 @@ declare namespace Enum {
|
|
|
8011
8020
|
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
8012
8021
|
}
|
|
8013
8022
|
export const AndroidRootedKick: AndroidRootedKick;
|
|
8023
|
+
/**
|
|
8024
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#ScreentimeLockoutKick)
|
|
8025
|
+
*/
|
|
8026
|
+
export interface ScreentimeLockoutKick extends globalThis.EnumItem {
|
|
8027
|
+
Name: "ScreentimeLockoutKick";
|
|
8028
|
+
Value: 307;
|
|
8029
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
8030
|
+
}
|
|
8031
|
+
export const ScreentimeLockoutKick: ScreentimeLockoutKick;
|
|
8014
8032
|
/**
|
|
8015
8033
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#PlacelaunchErrors)
|
|
8016
8034
|
*/
|
|
@@ -8240,7 +8258,7 @@ declare namespace Enum {
|
|
|
8240
8258
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ConnectionError | undefined;
|
|
8241
8259
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ConnectionError | undefined;
|
|
8242
8260
|
}
|
|
8243
|
-
export type ConnectionError = ConnectionError.OK | ConnectionError.Unknown | ConnectionError.DisconnectErrors | ConnectionError.DisconnectBadhash | ConnectionError.DisconnectSecurityKeyMismatch | ConnectionError.DisconnectProtocolMismatch | ConnectionError.DisconnectReceivePacketError | ConnectionError.DisconnectReceivePacketStreamError | ConnectionError.DisconnectSendPacketError | ConnectionError.DisconnectIllegalTeleport | ConnectionError.DisconnectDuplicatePlayer | ConnectionError.DisconnectDuplicateTicket | ConnectionError.DisconnectTimeout | ConnectionError.DisconnectLuaKick | ConnectionError.DisconnectOnRemoteSysStats | ConnectionError.DisconnectHashTimeout | ConnectionError.DisconnectCloudEditKick | ConnectionError.DisconnectPlayerless | ConnectionError.DisconnectNewSecurityKeyMismatch | ConnectionError.DisconnectEvicted | ConnectionError.DisconnectDevMaintenance | ConnectionError.DisconnectRobloxMaintenance | ConnectionError.DisconnectRejoin | ConnectionError.DisconnectConnectionLost | ConnectionError.DisconnectIdle | ConnectionError.DisconnectRaknetErrors | ConnectionError.DisconnectWrongVersion | ConnectionError.DisconnectBySecurityPolicy | ConnectionError.DisconnectBlockedIP | ConnectionError.DisconnectClientFailure | ConnectionError.DisconnectClientRequest | ConnectionError.DisconnectPrivateServerKickout | ConnectionError.DisconnectModeratedGame | ConnectionError.ServerShutdown | ConnectionError.ReplicatorTimeout | ConnectionError.PlayerRemoved | ConnectionError.DisconnectOutOfMemoryKeepPlayingLeave | ConnectionError.DisconnectRomarkEndOfTest | ConnectionError.DisconnectCollaboratorPermissionRevoked | ConnectionError.DisconnectCollaboratorUnderage | ConnectionError.NetworkInternal | ConnectionError.NetworkSend | ConnectionError.NetworkTimeout | ConnectionError.NetworkMisbehavior | ConnectionError.NetworkSecurity | ConnectionError.ReplacementReady | ConnectionError.ServerEmpty | ConnectionError.PhantomFreeze | ConnectionError.AndroidAnticheatKick | ConnectionError.AndroidEmulatorKick | ConnectionError.AndroidRootedKick | ConnectionError.PlacelaunchErrors | ConnectionError.PlacelaunchDisabled | ConnectionError.PlacelaunchError | ConnectionError.PlacelaunchGameEnded | ConnectionError.PlacelaunchGameFull | ConnectionError.PlacelaunchUserLeft | ConnectionError.PlacelaunchRestricted | ConnectionError.PlacelaunchUnauthorized | ConnectionError.PlacelaunchFlooded | ConnectionError.PlacelaunchHashExpired | ConnectionError.PlacelaunchHashException | ConnectionError.PlacelaunchPartyCannotFit | ConnectionError.PlacelaunchHttpError | ConnectionError.PlacelaunchUserPrivacyUnauthorized | ConnectionError.PlacelaunchCreatorBan | ConnectionError.PlacelaunchCustomMessage | ConnectionError.PlacelaunchOtherError | ConnectionError.TeleportErrors | ConnectionError.TeleportFailure | ConnectionError.TeleportGameNotFound | ConnectionError.TeleportGameEnded | ConnectionError.TeleportGameFull | ConnectionError.TeleportUnauthorized | ConnectionError.TeleportFlooded | ConnectionError.TeleportIsTeleporting;
|
|
8261
|
+
export type ConnectionError = ConnectionError.OK | ConnectionError.Unknown | ConnectionError.DisconnectErrors | ConnectionError.DisconnectBadhash | ConnectionError.DisconnectSecurityKeyMismatch | ConnectionError.DisconnectProtocolMismatch | ConnectionError.DisconnectReceivePacketError | ConnectionError.DisconnectReceivePacketStreamError | ConnectionError.DisconnectSendPacketError | ConnectionError.DisconnectIllegalTeleport | ConnectionError.DisconnectDuplicatePlayer | ConnectionError.DisconnectDuplicateTicket | ConnectionError.DisconnectTimeout | ConnectionError.DisconnectLuaKick | ConnectionError.DisconnectOnRemoteSysStats | ConnectionError.DisconnectHashTimeout | ConnectionError.DisconnectCloudEditKick | ConnectionError.DisconnectPlayerless | ConnectionError.DisconnectNewSecurityKeyMismatch | ConnectionError.DisconnectEvicted | ConnectionError.DisconnectDevMaintenance | ConnectionError.DisconnectRobloxMaintenance | ConnectionError.DisconnectRejoin | ConnectionError.DisconnectConnectionLost | ConnectionError.DisconnectIdle | ConnectionError.DisconnectRaknetErrors | ConnectionError.DisconnectWrongVersion | ConnectionError.DisconnectBySecurityPolicy | ConnectionError.DisconnectBlockedIP | ConnectionError.DisconnectClientFailure | ConnectionError.DisconnectClientRequest | ConnectionError.DisconnectPrivateServerKickout | ConnectionError.DisconnectModeratedGame | ConnectionError.ServerShutdown | ConnectionError.ReplicatorTimeout | ConnectionError.PlayerRemoved | ConnectionError.DisconnectOutOfMemoryKeepPlayingLeave | ConnectionError.DisconnectRomarkEndOfTest | ConnectionError.DisconnectCollaboratorPermissionRevoked | ConnectionError.DisconnectCollaboratorUnderage | ConnectionError.NetworkInternal | ConnectionError.NetworkSend | ConnectionError.NetworkTimeout | ConnectionError.NetworkMisbehavior | ConnectionError.NetworkSecurity | ConnectionError.ReplacementReady | ConnectionError.ServerEmpty | ConnectionError.PhantomFreeze | ConnectionError.AndroidAnticheatKick | ConnectionError.AndroidEmulatorKick | ConnectionError.AndroidRootedKick | ConnectionError.ScreentimeLockoutKick | ConnectionError.PlacelaunchErrors | ConnectionError.PlacelaunchDisabled | ConnectionError.PlacelaunchError | ConnectionError.PlacelaunchGameEnded | ConnectionError.PlacelaunchGameFull | ConnectionError.PlacelaunchUserLeft | ConnectionError.PlacelaunchRestricted | ConnectionError.PlacelaunchUnauthorized | ConnectionError.PlacelaunchFlooded | ConnectionError.PlacelaunchHashExpired | ConnectionError.PlacelaunchHashException | ConnectionError.PlacelaunchPartyCannotFit | ConnectionError.PlacelaunchHttpError | ConnectionError.PlacelaunchUserPrivacyUnauthorized | ConnectionError.PlacelaunchCreatorBan | ConnectionError.PlacelaunchCustomMessage | ConnectionError.PlacelaunchOtherError | ConnectionError.TeleportErrors | ConnectionError.TeleportFailure | ConnectionError.TeleportGameNotFound | ConnectionError.TeleportGameEnded | ConnectionError.TeleportGameFull | ConnectionError.TeleportUnauthorized | ConnectionError.TeleportFlooded | ConnectionError.TeleportIsTeleporting;
|
|
8244
8262
|
/**
|
|
8245
8263
|
* Used to determine the connection state of the client to the game server.
|
|
8246
8264
|
*
|
|
@@ -22331,6 +22349,33 @@ declare namespace Enum {
|
|
|
22331
22349
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PathfindingUseImprovedSearch | undefined;
|
|
22332
22350
|
}
|
|
22333
22351
|
export type PathfindingUseImprovedSearch = PathfindingUseImprovedSearch.Default | PathfindingUseImprovedSearch.Disabled | PathfindingUseImprovedSearch.Enabled;
|
|
22352
|
+
/**
|
|
22353
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PeoplePageLayout)
|
|
22354
|
+
*/
|
|
22355
|
+
export namespace PeoplePageLayout {
|
|
22356
|
+
/**
|
|
22357
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PeoplePageLayout#Card)
|
|
22358
|
+
*/
|
|
22359
|
+
export interface Card extends globalThis.EnumItem {
|
|
22360
|
+
Name: "Card";
|
|
22361
|
+
Value: 0;
|
|
22362
|
+
EnumType: typeof globalThis.Enum.PeoplePageLayout;
|
|
22363
|
+
}
|
|
22364
|
+
export const Card: Card;
|
|
22365
|
+
/**
|
|
22366
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PeoplePageLayout#List)
|
|
22367
|
+
*/
|
|
22368
|
+
export interface List extends globalThis.EnumItem {
|
|
22369
|
+
Name: "List";
|
|
22370
|
+
Value: 1;
|
|
22371
|
+
EnumType: typeof globalThis.Enum.PeoplePageLayout;
|
|
22372
|
+
}
|
|
22373
|
+
export const List: List;
|
|
22374
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PeoplePageLayout>;
|
|
22375
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PeoplePageLayout | undefined;
|
|
22376
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PeoplePageLayout | undefined;
|
|
22377
|
+
}
|
|
22378
|
+
export type PeoplePageLayout = PeoplePageLayout.Card | PeoplePageLayout.List;
|
|
22334
22379
|
/**
|
|
22335
22380
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PerformanceOverlayMode)
|
|
22336
22381
|
*/
|