@rbxts/types 1.0.919 → 1.0.921
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/include/generated/None.d.ts +322 -127
- package/include/generated/PluginSecurity.d.ts +143 -12
- package/include/generated/enums.d.ts +460 -5
- package/package.json +1 -1
|
@@ -2864,6 +2864,33 @@ declare namespace Enum {
|
|
|
2864
2864
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AssetFetchStatus | undefined;
|
|
2865
2865
|
}
|
|
2866
2866
|
export type AssetFetchStatus = AssetFetchStatus.Success | AssetFetchStatus.Failure | AssetFetchStatus.None | AssetFetchStatus.Loading | AssetFetchStatus.TimedOut;
|
|
2867
|
+
/**
|
|
2868
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetRepresentation)
|
|
2869
|
+
*/
|
|
2870
|
+
export namespace AssetRepresentation {
|
|
2871
|
+
/**
|
|
2872
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetRepresentation#FullLength)
|
|
2873
|
+
*/
|
|
2874
|
+
export interface FullLength extends globalThis.EnumItem {
|
|
2875
|
+
Name: "FullLength";
|
|
2876
|
+
Value: 0;
|
|
2877
|
+
EnumType: typeof globalThis.Enum.AssetRepresentation;
|
|
2878
|
+
}
|
|
2879
|
+
export const FullLength: FullLength;
|
|
2880
|
+
/**
|
|
2881
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetRepresentation#ShortPreview)
|
|
2882
|
+
*/
|
|
2883
|
+
export interface ShortPreview extends globalThis.EnumItem {
|
|
2884
|
+
Name: "ShortPreview";
|
|
2885
|
+
Value: 1;
|
|
2886
|
+
EnumType: typeof globalThis.Enum.AssetRepresentation;
|
|
2887
|
+
}
|
|
2888
|
+
export const ShortPreview: ShortPreview;
|
|
2889
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AssetRepresentation>;
|
|
2890
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AssetRepresentation | undefined;
|
|
2891
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AssetRepresentation | undefined;
|
|
2892
|
+
}
|
|
2893
|
+
export type AssetRepresentation = AssetRepresentation.FullLength | AssetRepresentation.ShortPreview;
|
|
2867
2894
|
/**
|
|
2868
2895
|
* This Enum can be used to match the AssetTypeId from `MarketplaceService:GetProductInfoAsync()` to an asset type.
|
|
2869
2896
|
*
|
|
@@ -3529,11 +3556,20 @@ declare namespace Enum {
|
|
|
3529
3556
|
EnumType: typeof globalThis.Enum.AssetType;
|
|
3530
3557
|
}
|
|
3531
3558
|
export const VoxelFragment: VoxelFragment;
|
|
3559
|
+
/**
|
|
3560
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#AvatarBackground)
|
|
3561
|
+
*/
|
|
3562
|
+
export interface AvatarBackground extends globalThis.EnumItem {
|
|
3563
|
+
Name: "AvatarBackground";
|
|
3564
|
+
Value: 92;
|
|
3565
|
+
EnumType: typeof globalThis.Enum.AssetType;
|
|
3566
|
+
}
|
|
3567
|
+
export const AvatarBackground: AvatarBackground;
|
|
3532
3568
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AssetType>;
|
|
3533
3569
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AssetType | undefined;
|
|
3534
3570
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AssetType | undefined;
|
|
3535
3571
|
}
|
|
3536
|
-
export type AssetType = AssetType.Image | AssetType.TShirt | AssetType.Audio | AssetType.Mesh | AssetType.Lua | AssetType.Hat | AssetType.Place | AssetType.Model | AssetType.Shirt | AssetType.Pants | AssetType.Decal | AssetType.Head | AssetType.Face | AssetType.Gear | AssetType.Badge | AssetType.Animation | AssetType.Torso | AssetType.RightArm | AssetType.LeftArm | AssetType.LeftLeg | AssetType.RightLeg | AssetType.Package | AssetType.GamePass | AssetType.Plugin | AssetType.MeshPart | AssetType.HairAccessory | AssetType.FaceAccessory | AssetType.NeckAccessory | AssetType.ShoulderAccessory | AssetType.FrontAccessory | AssetType.BackAccessory | AssetType.WaistAccessory | AssetType.ClimbAnimation | AssetType.DeathAnimation | AssetType.FallAnimation | AssetType.IdleAnimation | AssetType.JumpAnimation | AssetType.RunAnimation | AssetType.SwimAnimation | AssetType.WalkAnimation | AssetType.PoseAnimation | AssetType.EarAccessory | AssetType.EyeAccessory | AssetType.EmoteAnimation | AssetType.Video | AssetType.TShirtAccessory | AssetType.ShirtAccessory | AssetType.PantsAccessory | AssetType.JacketAccessory | AssetType.SweaterAccessory | AssetType.ShortsAccessory | AssetType.LeftShoeAccessory | AssetType.RightShoeAccessory | AssetType.DressSkirtAccessory | AssetType.FontFamily | AssetType.EyebrowAccessory | AssetType.EyelashAccessory | AssetType.MoodAnimation | AssetType.DynamicHead | AssetType.FaceMakeup | AssetType.LipMakeup | AssetType.EyeMakeup | AssetType.VoxelFragment;
|
|
3572
|
+
export type AssetType = AssetType.Image | AssetType.TShirt | AssetType.Audio | AssetType.Mesh | AssetType.Lua | AssetType.Hat | AssetType.Place | AssetType.Model | AssetType.Shirt | AssetType.Pants | AssetType.Decal | AssetType.Head | AssetType.Face | AssetType.Gear | AssetType.Badge | AssetType.Animation | AssetType.Torso | AssetType.RightArm | AssetType.LeftArm | AssetType.LeftLeg | AssetType.RightLeg | AssetType.Package | AssetType.GamePass | AssetType.Plugin | AssetType.MeshPart | AssetType.HairAccessory | AssetType.FaceAccessory | AssetType.NeckAccessory | AssetType.ShoulderAccessory | AssetType.FrontAccessory | AssetType.BackAccessory | AssetType.WaistAccessory | AssetType.ClimbAnimation | AssetType.DeathAnimation | AssetType.FallAnimation | AssetType.IdleAnimation | AssetType.JumpAnimation | AssetType.RunAnimation | AssetType.SwimAnimation | AssetType.WalkAnimation | AssetType.PoseAnimation | AssetType.EarAccessory | AssetType.EyeAccessory | AssetType.EmoteAnimation | AssetType.Video | AssetType.TShirtAccessory | AssetType.ShirtAccessory | AssetType.PantsAccessory | AssetType.JacketAccessory | AssetType.SweaterAccessory | AssetType.ShortsAccessory | AssetType.LeftShoeAccessory | AssetType.RightShoeAccessory | AssetType.DressSkirtAccessory | AssetType.FontFamily | AssetType.EyebrowAccessory | AssetType.EyelashAccessory | AssetType.MoodAnimation | AssetType.DynamicHead | AssetType.FaceMakeup | AssetType.LipMakeup | AssetType.EyeMakeup | AssetType.VoxelFragment | AssetType.AvatarBackground;
|
|
3537
3573
|
/**
|
|
3538
3574
|
* Determines the asset type verification mode.
|
|
3539
3575
|
*
|
|
@@ -4550,11 +4586,20 @@ declare namespace Enum {
|
|
|
4550
4586
|
EnumType: typeof globalThis.Enum.AvatarAssetType;
|
|
4551
4587
|
}
|
|
4552
4588
|
export const EyeMakeup: EyeMakeup;
|
|
4589
|
+
/**
|
|
4590
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarAssetType#AvatarBackground)
|
|
4591
|
+
*/
|
|
4592
|
+
export interface AvatarBackground extends globalThis.EnumItem {
|
|
4593
|
+
Name: "AvatarBackground";
|
|
4594
|
+
Value: 92;
|
|
4595
|
+
EnumType: typeof globalThis.Enum.AvatarAssetType;
|
|
4596
|
+
}
|
|
4597
|
+
export const AvatarBackground: AvatarBackground;
|
|
4553
4598
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarAssetType>;
|
|
4554
4599
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarAssetType | undefined;
|
|
4555
4600
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarAssetType | undefined;
|
|
4556
4601
|
}
|
|
4557
|
-
export type AvatarAssetType = AvatarAssetType.TShirt | AvatarAssetType.Hat | AvatarAssetType.Shirt | AvatarAssetType.Pants | AvatarAssetType.Head | AvatarAssetType.Face | AvatarAssetType.Gear | AvatarAssetType.Torso | AvatarAssetType.RightArm | AvatarAssetType.LeftArm | AvatarAssetType.LeftLeg | AvatarAssetType.RightLeg | AvatarAssetType.HairAccessory | AvatarAssetType.FaceAccessory | AvatarAssetType.NeckAccessory | AvatarAssetType.ShoulderAccessory | AvatarAssetType.FrontAccessory | AvatarAssetType.BackAccessory | AvatarAssetType.WaistAccessory | AvatarAssetType.ClimbAnimation | AvatarAssetType.FallAnimation | AvatarAssetType.IdleAnimation | AvatarAssetType.JumpAnimation | AvatarAssetType.RunAnimation | AvatarAssetType.SwimAnimation | AvatarAssetType.WalkAnimation | AvatarAssetType.EmoteAnimation | AvatarAssetType.TShirtAccessory | AvatarAssetType.ShirtAccessory | AvatarAssetType.PantsAccessory | AvatarAssetType.JacketAccessory | AvatarAssetType.SweaterAccessory | AvatarAssetType.ShortsAccessory | AvatarAssetType.LeftShoeAccessory | AvatarAssetType.RightShoeAccessory | AvatarAssetType.DressSkirtAccessory | AvatarAssetType.EyebrowAccessory | AvatarAssetType.EyelashAccessory | AvatarAssetType.MoodAnimation | AvatarAssetType.DynamicHead | AvatarAssetType.FaceMakeup | AvatarAssetType.LipMakeup | AvatarAssetType.EyeMakeup;
|
|
4602
|
+
export type AvatarAssetType = AvatarAssetType.TShirt | AvatarAssetType.Hat | AvatarAssetType.Shirt | AvatarAssetType.Pants | AvatarAssetType.Head | AvatarAssetType.Face | AvatarAssetType.Gear | AvatarAssetType.Torso | AvatarAssetType.RightArm | AvatarAssetType.LeftArm | AvatarAssetType.LeftLeg | AvatarAssetType.RightLeg | AvatarAssetType.HairAccessory | AvatarAssetType.FaceAccessory | AvatarAssetType.NeckAccessory | AvatarAssetType.ShoulderAccessory | AvatarAssetType.FrontAccessory | AvatarAssetType.BackAccessory | AvatarAssetType.WaistAccessory | AvatarAssetType.ClimbAnimation | AvatarAssetType.FallAnimation | AvatarAssetType.IdleAnimation | AvatarAssetType.JumpAnimation | AvatarAssetType.RunAnimation | AvatarAssetType.SwimAnimation | AvatarAssetType.WalkAnimation | AvatarAssetType.EmoteAnimation | AvatarAssetType.TShirtAccessory | AvatarAssetType.ShirtAccessory | AvatarAssetType.PantsAccessory | AvatarAssetType.JacketAccessory | AvatarAssetType.SweaterAccessory | AvatarAssetType.ShortsAccessory | AvatarAssetType.LeftShoeAccessory | AvatarAssetType.RightShoeAccessory | AvatarAssetType.DressSkirtAccessory | AvatarAssetType.EyebrowAccessory | AvatarAssetType.EyelashAccessory | AvatarAssetType.MoodAnimation | AvatarAssetType.DynamicHead | AvatarAssetType.FaceMakeup | AvatarAssetType.LipMakeup | AvatarAssetType.EyeMakeup | AvatarAssetType.AvatarBackground;
|
|
4558
4603
|
/**
|
|
4559
4604
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarChatServiceFeature)
|
|
4560
4605
|
*/
|
|
@@ -7686,11 +7731,20 @@ declare namespace Enum {
|
|
|
7686
7731
|
EnumType: typeof globalThis.Enum.CollisionFidelity;
|
|
7687
7732
|
}
|
|
7688
7733
|
export const PreciseConvexDecomposition: PreciseConvexDecomposition;
|
|
7734
|
+
/**
|
|
7735
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CollisionFidelity#Scalable)
|
|
7736
|
+
*/
|
|
7737
|
+
export interface Scalable extends globalThis.EnumItem {
|
|
7738
|
+
Name: "Scalable";
|
|
7739
|
+
Value: 4;
|
|
7740
|
+
EnumType: typeof globalThis.Enum.CollisionFidelity;
|
|
7741
|
+
}
|
|
7742
|
+
export const Scalable: Scalable;
|
|
7689
7743
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CollisionFidelity>;
|
|
7690
7744
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CollisionFidelity | undefined;
|
|
7691
7745
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CollisionFidelity | undefined;
|
|
7692
7746
|
}
|
|
7693
|
-
export type CollisionFidelity = CollisionFidelity.Default | CollisionFidelity.Hull | CollisionFidelity.Box | CollisionFidelity.PreciseConvexDecomposition;
|
|
7747
|
+
export type CollisionFidelity = CollisionFidelity.Default | CollisionFidelity.Hull | CollisionFidelity.Box | CollisionFidelity.PreciseConvexDecomposition | CollisionFidelity.Scalable;
|
|
7694
7748
|
/**
|
|
7695
7749
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CommandPermission)
|
|
7696
7750
|
*/
|
|
@@ -9084,6 +9138,24 @@ declare namespace Enum {
|
|
|
9084
9138
|
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
9085
9139
|
}
|
|
9086
9140
|
export const DisconnectCollaboratorUnknownError: DisconnectCollaboratorUnknownError;
|
|
9141
|
+
/**
|
|
9142
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectCollaboratorRequestedEviction)
|
|
9143
|
+
*/
|
|
9144
|
+
export interface DisconnectCollaboratorRequestedEviction extends globalThis.EnumItem {
|
|
9145
|
+
Name: "DisconnectCollaboratorRequestedEviction";
|
|
9146
|
+
Value: 315;
|
|
9147
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
9148
|
+
}
|
|
9149
|
+
export const DisconnectCollaboratorRequestedEviction: DisconnectCollaboratorRequestedEviction;
|
|
9150
|
+
/**
|
|
9151
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectCollaboratorTrustedConnectionsRequiredPC)
|
|
9152
|
+
*/
|
|
9153
|
+
export interface DisconnectCollaboratorTrustedConnectionsRequiredPC extends globalThis.EnumItem {
|
|
9154
|
+
Name: "DisconnectCollaboratorTrustedConnectionsRequiredPC";
|
|
9155
|
+
Value: 316;
|
|
9156
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
9157
|
+
}
|
|
9158
|
+
export const DisconnectCollaboratorTrustedConnectionsRequiredPC: DisconnectCollaboratorTrustedConnectionsRequiredPC;
|
|
9087
9159
|
/**
|
|
9088
9160
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#PlacelaunchErrors)
|
|
9089
9161
|
*/
|
|
@@ -9210,6 +9282,15 @@ declare namespace Enum {
|
|
|
9210
9282
|
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
9211
9283
|
}
|
|
9212
9284
|
export const PlacelaunchUserPrivacyUnauthorized: PlacelaunchUserPrivacyUnauthorized;
|
|
9285
|
+
/**
|
|
9286
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#PlacelaunchVipOwnerNotPresent)
|
|
9287
|
+
*/
|
|
9288
|
+
export interface PlacelaunchVipOwnerNotPresent extends globalThis.EnumItem {
|
|
9289
|
+
Name: "PlacelaunchVipOwnerNotPresent";
|
|
9290
|
+
Value: 541;
|
|
9291
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
9292
|
+
}
|
|
9293
|
+
export const PlacelaunchVipOwnerNotPresent: PlacelaunchVipOwnerNotPresent;
|
|
9213
9294
|
/**
|
|
9214
9295
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#PlacelaunchAgeVerificationRequired)
|
|
9215
9296
|
*/
|
|
@@ -9349,7 +9430,7 @@ declare namespace Enum {
|
|
|
9349
9430
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ConnectionError | undefined;
|
|
9350
9431
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ConnectionError | undefined;
|
|
9351
9432
|
}
|
|
9352
|
-
export type ConnectionError = ConnectionError.OK | ConnectionError.Unknown | ConnectionError.ConnectErrors | ConnectionError.AlreadyConnected | ConnectionError.NoFreeIncomingConnections | ConnectionError.ConnectionBanned | ConnectionError.InvalidPassword | ConnectionError.IncompatibleProtocolVersion | ConnectionError.IPRecentlyConnected | ConnectionError.OurSystemRequiresSecurity | ConnectionError.SecurityKeyMismatch | 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.DisconnectionNotification | ConnectionError.DisconnectVerboselyModeratedGame | ConnectionError.DisconnectCollaboratorNotAgeVerified | ConnectionError.DisconnectCollaboratorTrustedConnectionsRequired | ConnectionError.DisconnectCollaboratorOwnerActionRequired | ConnectionError.DisconnectCollaboratorTooManyCollaborators | ConnectionError.DisconnectCollaboratorUnknownError | 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.PlacelaunchAgeVerificationRequired | ConnectionError.PlacelaunchParentalApprovalRequired | ConnectionError.PlacelaunchCoreGated | ConnectionError.PlacelaunchCreatorBan | ConnectionError.PlacelaunchDeviceBlock | ConnectionError.PlacelaunchCustomMessage | ConnectionError.PlacelaunchOtherError | ConnectionError.TeleportErrors | ConnectionError.TeleportFailure | ConnectionError.TeleportGameNotFound | ConnectionError.TeleportGameEnded | ConnectionError.TeleportGameFull | ConnectionError.TeleportUnauthorized | ConnectionError.TeleportFlooded | ConnectionError.TeleportIsTeleporting;
|
|
9433
|
+
export type ConnectionError = ConnectionError.OK | ConnectionError.Unknown | ConnectionError.ConnectErrors | ConnectionError.AlreadyConnected | ConnectionError.NoFreeIncomingConnections | ConnectionError.ConnectionBanned | ConnectionError.InvalidPassword | ConnectionError.IncompatibleProtocolVersion | ConnectionError.IPRecentlyConnected | ConnectionError.OurSystemRequiresSecurity | ConnectionError.SecurityKeyMismatch | 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.DisconnectionNotification | ConnectionError.DisconnectVerboselyModeratedGame | ConnectionError.DisconnectCollaboratorNotAgeVerified | ConnectionError.DisconnectCollaboratorTrustedConnectionsRequired | ConnectionError.DisconnectCollaboratorOwnerActionRequired | ConnectionError.DisconnectCollaboratorTooManyCollaborators | ConnectionError.DisconnectCollaboratorUnknownError | ConnectionError.DisconnectCollaboratorRequestedEviction | ConnectionError.DisconnectCollaboratorTrustedConnectionsRequiredPC | 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.PlacelaunchVipOwnerNotPresent | ConnectionError.PlacelaunchAgeVerificationRequired | ConnectionError.PlacelaunchParentalApprovalRequired | ConnectionError.PlacelaunchCoreGated | ConnectionError.PlacelaunchCreatorBan | ConnectionError.PlacelaunchDeviceBlock | ConnectionError.PlacelaunchCustomMessage | ConnectionError.PlacelaunchOtherError | ConnectionError.TeleportErrors | ConnectionError.TeleportFailure | ConnectionError.TeleportGameNotFound | ConnectionError.TeleportGameEnded | ConnectionError.TeleportGameFull | ConnectionError.TeleportUnauthorized | ConnectionError.TeleportFlooded | ConnectionError.TeleportIsTeleporting;
|
|
9353
9434
|
/**
|
|
9354
9435
|
* Used to determine the connection state of the client to the game server.
|
|
9355
9436
|
*
|
|
@@ -10203,6 +10284,42 @@ declare namespace Enum {
|
|
|
10203
10284
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DataStoreRequestType | undefined;
|
|
10204
10285
|
}
|
|
10205
10286
|
export type DataStoreRequestType = DataStoreRequestType.GetAsync | DataStoreRequestType.SetIncrementAsync | DataStoreRequestType.UpdateAsync | DataStoreRequestType.GetSortedAsync | DataStoreRequestType.SetIncrementSortedAsync | DataStoreRequestType.OnUpdate | DataStoreRequestType.ListAsync | DataStoreRequestType.GetVersionAsync | DataStoreRequestType.RemoveVersionAsync | DataStoreRequestType.StandardRead | DataStoreRequestType.StandardWrite | DataStoreRequestType.StandardList | DataStoreRequestType.StandardRemove | DataStoreRequestType.OrderedRead | DataStoreRequestType.OrderedWrite | DataStoreRequestType.OrderedList | DataStoreRequestType.OrderedRemove;
|
|
10287
|
+
/**
|
|
10288
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DebugBreakModeType)
|
|
10289
|
+
*/
|
|
10290
|
+
export namespace DebugBreakModeType {
|
|
10291
|
+
/**
|
|
10292
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DebugBreakModeType#Never)
|
|
10293
|
+
*/
|
|
10294
|
+
export interface Never extends globalThis.EnumItem {
|
|
10295
|
+
Name: "Never";
|
|
10296
|
+
Value: 0;
|
|
10297
|
+
EnumType: typeof globalThis.Enum.DebugBreakModeType;
|
|
10298
|
+
}
|
|
10299
|
+
export const Never: Never;
|
|
10300
|
+
/**
|
|
10301
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DebugBreakModeType#Always)
|
|
10302
|
+
*/
|
|
10303
|
+
export interface Always extends globalThis.EnumItem {
|
|
10304
|
+
Name: "Always";
|
|
10305
|
+
Value: 1;
|
|
10306
|
+
EnumType: typeof globalThis.Enum.DebugBreakModeType;
|
|
10307
|
+
}
|
|
10308
|
+
export const Always: Always;
|
|
10309
|
+
/**
|
|
10310
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DebugBreakModeType#Unhandled)
|
|
10311
|
+
*/
|
|
10312
|
+
export interface Unhandled extends globalThis.EnumItem {
|
|
10313
|
+
Name: "Unhandled";
|
|
10314
|
+
Value: 2;
|
|
10315
|
+
EnumType: typeof globalThis.Enum.DebugBreakModeType;
|
|
10316
|
+
}
|
|
10317
|
+
export const Unhandled: Unhandled;
|
|
10318
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DebugBreakModeType>;
|
|
10319
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DebugBreakModeType | undefined;
|
|
10320
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DebugBreakModeType | undefined;
|
|
10321
|
+
}
|
|
10322
|
+
export type DebugBreakModeType = DebugBreakModeType.Never | DebugBreakModeType.Always | DebugBreakModeType.Unhandled;
|
|
10206
10323
|
/**
|
|
10207
10324
|
* Reason for the end of the debugger session.
|
|
10208
10325
|
*
|
|
@@ -10448,6 +10565,51 @@ declare namespace Enum {
|
|
|
10448
10565
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DebuggerPauseReason | undefined;
|
|
10449
10566
|
}
|
|
10450
10567
|
export type DebuggerPauseReason = DebuggerPauseReason.Unknown | DebuggerPauseReason.Requested | DebuggerPauseReason.Breakpoint | DebuggerPauseReason.Exception | DebuggerPauseReason.SingleStep | DebuggerPauseReason.Entrypoint;
|
|
10568
|
+
/**
|
|
10569
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DebuggerResumeType)
|
|
10570
|
+
*/
|
|
10571
|
+
export namespace DebuggerResumeType {
|
|
10572
|
+
/**
|
|
10573
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DebuggerResumeType#StepInto)
|
|
10574
|
+
*/
|
|
10575
|
+
export interface StepInto extends globalThis.EnumItem {
|
|
10576
|
+
Name: "StepInto";
|
|
10577
|
+
Value: 0;
|
|
10578
|
+
EnumType: typeof globalThis.Enum.DebuggerResumeType;
|
|
10579
|
+
}
|
|
10580
|
+
export const StepInto: StepInto;
|
|
10581
|
+
/**
|
|
10582
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DebuggerResumeType#StepOut)
|
|
10583
|
+
*/
|
|
10584
|
+
export interface StepOut extends globalThis.EnumItem {
|
|
10585
|
+
Name: "StepOut";
|
|
10586
|
+
Value: 1;
|
|
10587
|
+
EnumType: typeof globalThis.Enum.DebuggerResumeType;
|
|
10588
|
+
}
|
|
10589
|
+
export const StepOut: StepOut;
|
|
10590
|
+
/**
|
|
10591
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DebuggerResumeType#StepOver)
|
|
10592
|
+
*/
|
|
10593
|
+
export interface StepOver extends globalThis.EnumItem {
|
|
10594
|
+
Name: "StepOver";
|
|
10595
|
+
Value: 2;
|
|
10596
|
+
EnumType: typeof globalThis.Enum.DebuggerResumeType;
|
|
10597
|
+
}
|
|
10598
|
+
export const StepOver: StepOver;
|
|
10599
|
+
/**
|
|
10600
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DebuggerResumeType#Resume)
|
|
10601
|
+
*/
|
|
10602
|
+
export interface Resume extends globalThis.EnumItem {
|
|
10603
|
+
Name: "Resume";
|
|
10604
|
+
Value: 3;
|
|
10605
|
+
EnumType: typeof globalThis.Enum.DebuggerResumeType;
|
|
10606
|
+
}
|
|
10607
|
+
export const Resume: Resume;
|
|
10608
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DebuggerResumeType>;
|
|
10609
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DebuggerResumeType | undefined;
|
|
10610
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DebuggerResumeType | undefined;
|
|
10611
|
+
}
|
|
10612
|
+
export type DebuggerResumeType = DebuggerResumeType.StepInto | DebuggerResumeType.StepOut | DebuggerResumeType.StepOver | DebuggerResumeType.Resume;
|
|
10451
10613
|
/**
|
|
10452
10614
|
* Result of a debugger request.
|
|
10453
10615
|
*
|
|
@@ -12281,6 +12443,60 @@ declare namespace Enum {
|
|
|
12281
12443
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ElasticBehavior | undefined;
|
|
12282
12444
|
}
|
|
12283
12445
|
export type ElasticBehavior = ElasticBehavior.WhenScrollable | ElasticBehavior.Always | ElasticBehavior.Never;
|
|
12446
|
+
/**
|
|
12447
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/EngagementLevel)
|
|
12448
|
+
*/
|
|
12449
|
+
export namespace EngagementLevel {
|
|
12450
|
+
/**
|
|
12451
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/EngagementLevel#Unknown)
|
|
12452
|
+
*/
|
|
12453
|
+
export interface Unknown extends globalThis.EnumItem {
|
|
12454
|
+
Name: "Unknown";
|
|
12455
|
+
Value: 0;
|
|
12456
|
+
EnumType: typeof globalThis.Enum.EngagementLevel;
|
|
12457
|
+
}
|
|
12458
|
+
export const Unknown: Unknown;
|
|
12459
|
+
/**
|
|
12460
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/EngagementLevel#Inactive)
|
|
12461
|
+
*/
|
|
12462
|
+
export interface Inactive extends globalThis.EnumItem {
|
|
12463
|
+
Name: "Inactive";
|
|
12464
|
+
Value: 1;
|
|
12465
|
+
EnumType: typeof globalThis.Enum.EngagementLevel;
|
|
12466
|
+
}
|
|
12467
|
+
export const Inactive: Inactive;
|
|
12468
|
+
/**
|
|
12469
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/EngagementLevel#Low)
|
|
12470
|
+
*/
|
|
12471
|
+
export interface Low extends globalThis.EnumItem {
|
|
12472
|
+
Name: "Low";
|
|
12473
|
+
Value: 2;
|
|
12474
|
+
EnumType: typeof globalThis.Enum.EngagementLevel;
|
|
12475
|
+
}
|
|
12476
|
+
export const Low: Low;
|
|
12477
|
+
/**
|
|
12478
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/EngagementLevel#Medium)
|
|
12479
|
+
*/
|
|
12480
|
+
export interface Medium extends globalThis.EnumItem {
|
|
12481
|
+
Name: "Medium";
|
|
12482
|
+
Value: 3;
|
|
12483
|
+
EnumType: typeof globalThis.Enum.EngagementLevel;
|
|
12484
|
+
}
|
|
12485
|
+
export const Medium: Medium;
|
|
12486
|
+
/**
|
|
12487
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/EngagementLevel#High)
|
|
12488
|
+
*/
|
|
12489
|
+
export interface High extends globalThis.EnumItem {
|
|
12490
|
+
Name: "High";
|
|
12491
|
+
Value: 4;
|
|
12492
|
+
EnumType: typeof globalThis.Enum.EngagementLevel;
|
|
12493
|
+
}
|
|
12494
|
+
export const High: High;
|
|
12495
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.EngagementLevel>;
|
|
12496
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.EngagementLevel | undefined;
|
|
12497
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.EngagementLevel | undefined;
|
|
12498
|
+
}
|
|
12499
|
+
export type EngagementLevel = EngagementLevel.Unknown | EngagementLevel.Inactive | EngagementLevel.Low | EngagementLevel.Medium | EngagementLevel.High;
|
|
12284
12500
|
/**
|
|
12285
12501
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/EngineFolder)
|
|
12286
12502
|
*/
|
|
@@ -12318,10 +12534,14 @@ declare namespace Enum {
|
|
|
12318
12534
|
}
|
|
12319
12535
|
export type EngineFolder = EngineFolder.Screenshots | EngineFolder.Videos | EngineFolder.Logs;
|
|
12320
12536
|
/**
|
|
12537
|
+
* Used to control the throttle rate of Roblox's physics engine.
|
|
12538
|
+
*
|
|
12321
12539
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/EnviromentalPhysicsThrottle)
|
|
12322
12540
|
*/
|
|
12323
12541
|
export namespace EnviromentalPhysicsThrottle {
|
|
12324
12542
|
/**
|
|
12543
|
+
* Automatically adjusts throttle level based on performance.
|
|
12544
|
+
*
|
|
12325
12545
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/EnviromentalPhysicsThrottle#DefaultAuto)
|
|
12326
12546
|
*/
|
|
12327
12547
|
export interface DefaultAuto extends globalThis.EnumItem {
|
|
@@ -12331,6 +12551,8 @@ declare namespace Enum {
|
|
|
12331
12551
|
}
|
|
12332
12552
|
export const DefaultAuto: DefaultAuto;
|
|
12333
12553
|
/**
|
|
12554
|
+
* No throttling; every physics step runs.
|
|
12555
|
+
*
|
|
12334
12556
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/EnviromentalPhysicsThrottle#Disabled)
|
|
12335
12557
|
*/
|
|
12336
12558
|
export interface Disabled extends globalThis.EnumItem {
|
|
@@ -12340,6 +12562,8 @@ declare namespace Enum {
|
|
|
12340
12562
|
}
|
|
12341
12563
|
export const Disabled: Disabled;
|
|
12342
12564
|
/**
|
|
12565
|
+
* Maximum throttling; physics is effectively frozen.
|
|
12566
|
+
*
|
|
12343
12567
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/EnviromentalPhysicsThrottle#Always)
|
|
12344
12568
|
*/
|
|
12345
12569
|
export interface Always extends globalThis.EnumItem {
|
|
@@ -12349,6 +12573,8 @@ declare namespace Enum {
|
|
|
12349
12573
|
}
|
|
12350
12574
|
export const Always: Always;
|
|
12351
12575
|
/**
|
|
12576
|
+
* Runs 1 out of every 2 steps (50% reduction). If `Workspace.PhysicsSteppingMethod` is set to `Adaptive`, skipping is based on groups of 4 steps instead of individual steps.
|
|
12577
|
+
*
|
|
12352
12578
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/EnviromentalPhysicsThrottle#Skip2)
|
|
12353
12579
|
*/
|
|
12354
12580
|
export interface Skip2 extends globalThis.EnumItem {
|
|
@@ -12358,6 +12584,8 @@ declare namespace Enum {
|
|
|
12358
12584
|
}
|
|
12359
12585
|
export const Skip2: Skip2;
|
|
12360
12586
|
/**
|
|
12587
|
+
* Runs 1 out of every 4 steps (75% reduction). If `Workspace.PhysicsSteppingMethod` is set to `Adaptive`, skipping is based on groups of 4 steps instead of individual steps.
|
|
12588
|
+
*
|
|
12361
12589
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/EnviromentalPhysicsThrottle#Skip4)
|
|
12362
12590
|
*/
|
|
12363
12591
|
export interface Skip4 extends globalThis.EnumItem {
|
|
@@ -12367,6 +12595,8 @@ declare namespace Enum {
|
|
|
12367
12595
|
}
|
|
12368
12596
|
export const Skip4: Skip4;
|
|
12369
12597
|
/**
|
|
12598
|
+
* Runs 1 out of every 8 steps (87.5% reduction). If `Workspace.PhysicsSteppingMethod` is set to `Adaptive`, skipping is based on groups of 4 steps instead of individual steps.
|
|
12599
|
+
*
|
|
12370
12600
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/EnviromentalPhysicsThrottle#Skip8)
|
|
12371
12601
|
*/
|
|
12372
12602
|
export interface Skip8 extends globalThis.EnumItem {
|
|
@@ -12376,6 +12606,8 @@ declare namespace Enum {
|
|
|
12376
12606
|
}
|
|
12377
12607
|
export const Skip8: Skip8;
|
|
12378
12608
|
/**
|
|
12609
|
+
* Runs 1 out of every 16 steps (93.75% reduction). If `Workspace.PhysicsSteppingMethod` is set to `Adaptive`, skipping is based on groups of 4 steps instead of individual steps.
|
|
12610
|
+
*
|
|
12379
12611
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/EnviromentalPhysicsThrottle#Skip16)
|
|
12380
12612
|
*/
|
|
12381
12613
|
export interface Skip16 extends globalThis.EnumItem {
|
|
@@ -12389,6 +12621,60 @@ declare namespace Enum {
|
|
|
12389
12621
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.EnviromentalPhysicsThrottle | undefined;
|
|
12390
12622
|
}
|
|
12391
12623
|
export type EnviromentalPhysicsThrottle = EnviromentalPhysicsThrottle.DefaultAuto | EnviromentalPhysicsThrottle.Disabled | EnviromentalPhysicsThrottle.Always | EnviromentalPhysicsThrottle.Skip2 | EnviromentalPhysicsThrottle.Skip4 | EnviromentalPhysicsThrottle.Skip8 | EnviromentalPhysicsThrottle.Skip16;
|
|
12624
|
+
/**
|
|
12625
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceActivationStatus)
|
|
12626
|
+
*/
|
|
12627
|
+
export namespace ExperienceActivationStatus {
|
|
12628
|
+
/**
|
|
12629
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceActivationStatus#Unknown)
|
|
12630
|
+
*/
|
|
12631
|
+
export interface Unknown extends globalThis.EnumItem {
|
|
12632
|
+
Name: "Unknown";
|
|
12633
|
+
Value: 0;
|
|
12634
|
+
EnumType: typeof globalThis.Enum.ExperienceActivationStatus;
|
|
12635
|
+
}
|
|
12636
|
+
export const Unknown: Unknown;
|
|
12637
|
+
/**
|
|
12638
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceActivationStatus#New)
|
|
12639
|
+
*/
|
|
12640
|
+
export interface New extends globalThis.EnumItem {
|
|
12641
|
+
Name: "New";
|
|
12642
|
+
Value: 1;
|
|
12643
|
+
EnumType: typeof globalThis.Enum.ExperienceActivationStatus;
|
|
12644
|
+
}
|
|
12645
|
+
export const New: New;
|
|
12646
|
+
/**
|
|
12647
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceActivationStatus#Active)
|
|
12648
|
+
*/
|
|
12649
|
+
export interface Active extends globalThis.EnumItem {
|
|
12650
|
+
Name: "Active";
|
|
12651
|
+
Value: 2;
|
|
12652
|
+
EnumType: typeof globalThis.Enum.ExperienceActivationStatus;
|
|
12653
|
+
}
|
|
12654
|
+
export const Active: Active;
|
|
12655
|
+
/**
|
|
12656
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceActivationStatus#Lapsed)
|
|
12657
|
+
*/
|
|
12658
|
+
export interface Lapsed extends globalThis.EnumItem {
|
|
12659
|
+
Name: "Lapsed";
|
|
12660
|
+
Value: 3;
|
|
12661
|
+
EnumType: typeof globalThis.Enum.ExperienceActivationStatus;
|
|
12662
|
+
}
|
|
12663
|
+
export const Lapsed: Lapsed;
|
|
12664
|
+
/**
|
|
12665
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceActivationStatus#Reactivated)
|
|
12666
|
+
*/
|
|
12667
|
+
export interface Reactivated extends globalThis.EnumItem {
|
|
12668
|
+
Name: "Reactivated";
|
|
12669
|
+
Value: 4;
|
|
12670
|
+
EnumType: typeof globalThis.Enum.ExperienceActivationStatus;
|
|
12671
|
+
}
|
|
12672
|
+
export const Reactivated: Reactivated;
|
|
12673
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ExperienceActivationStatus>;
|
|
12674
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ExperienceActivationStatus | undefined;
|
|
12675
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExperienceActivationStatus | undefined;
|
|
12676
|
+
}
|
|
12677
|
+
export type ExperienceActivationStatus = ExperienceActivationStatus.Unknown | ExperienceActivationStatus.New | ExperienceActivationStatus.Active | ExperienceActivationStatus.Lapsed | ExperienceActivationStatus.Reactivated;
|
|
12392
12678
|
/**
|
|
12393
12679
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceAuthScope)
|
|
12394
12680
|
*/
|
|
@@ -17076,11 +17362,20 @@ declare namespace Enum {
|
|
|
17076
17362
|
EnumType: typeof globalThis.Enum.ImageCombineType;
|
|
17077
17363
|
}
|
|
17078
17364
|
export const AlphaBlend: AlphaBlend;
|
|
17365
|
+
/**
|
|
17366
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ImageCombineType#NormalMapBlend)
|
|
17367
|
+
*/
|
|
17368
|
+
export interface NormalMapBlend extends globalThis.EnumItem {
|
|
17369
|
+
Name: "NormalMapBlend";
|
|
17370
|
+
Value: 6;
|
|
17371
|
+
EnumType: typeof globalThis.Enum.ImageCombineType;
|
|
17372
|
+
}
|
|
17373
|
+
export const NormalMapBlend: NormalMapBlend;
|
|
17079
17374
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ImageCombineType>;
|
|
17080
17375
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ImageCombineType | undefined;
|
|
17081
17376
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ImageCombineType | undefined;
|
|
17082
17377
|
}
|
|
17083
|
-
export type ImageCombineType = ImageCombineType.BlendSourceOver | ImageCombineType.Overwrite | ImageCombineType.Add | ImageCombineType.Multiply | ImageCombineType.AlphaBlend;
|
|
17378
|
+
export type ImageCombineType = ImageCombineType.BlendSourceOver | ImageCombineType.Overwrite | ImageCombineType.Add | ImageCombineType.Multiply | ImageCombineType.AlphaBlend | ImageCombineType.NormalMapBlend;
|
|
17084
17379
|
/**
|
|
17085
17380
|
* The InOut Enum is used to set where the object is on the side of its parent.
|
|
17086
17381
|
*
|
|
@@ -17761,6 +18056,10 @@ declare namespace Enum {
|
|
|
17761
18056
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
17762
18057
|
}
|
|
17763
18058
|
export const Unknown: Unknown;
|
|
18059
|
+
/**
|
|
18060
|
+
* @deprecated renamed to Unknown
|
|
18061
|
+
*/
|
|
18062
|
+
export const None: Unknown;
|
|
17764
18063
|
/**
|
|
17765
18064
|
* The `Backspace` key.
|
|
17766
18065
|
*
|
|
@@ -25697,6 +25996,60 @@ declare namespace Enum {
|
|
|
25697
25996
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PlayerExitReason | undefined;
|
|
25698
25997
|
}
|
|
25699
25998
|
export type PlayerExitReason = PlayerExitReason.Unknown | PlayerExitReason.PlatformKick | PlayerExitReason.CreatorKick;
|
|
25999
|
+
/**
|
|
26000
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerPlatformActivationStatus)
|
|
26001
|
+
*/
|
|
26002
|
+
export namespace PlayerPlatformActivationStatus {
|
|
26003
|
+
/**
|
|
26004
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerPlatformActivationStatus#Unknown)
|
|
26005
|
+
*/
|
|
26006
|
+
export interface Unknown extends globalThis.EnumItem {
|
|
26007
|
+
Name: "Unknown";
|
|
26008
|
+
Value: 0;
|
|
26009
|
+
EnumType: typeof globalThis.Enum.PlayerPlatformActivationStatus;
|
|
26010
|
+
}
|
|
26011
|
+
export const Unknown: Unknown;
|
|
26012
|
+
/**
|
|
26013
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerPlatformActivationStatus#New)
|
|
26014
|
+
*/
|
|
26015
|
+
export interface New extends globalThis.EnumItem {
|
|
26016
|
+
Name: "New";
|
|
26017
|
+
Value: 1;
|
|
26018
|
+
EnumType: typeof globalThis.Enum.PlayerPlatformActivationStatus;
|
|
26019
|
+
}
|
|
26020
|
+
export const New: New;
|
|
26021
|
+
/**
|
|
26022
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerPlatformActivationStatus#Active)
|
|
26023
|
+
*/
|
|
26024
|
+
export interface Active extends globalThis.EnumItem {
|
|
26025
|
+
Name: "Active";
|
|
26026
|
+
Value: 2;
|
|
26027
|
+
EnumType: typeof globalThis.Enum.PlayerPlatformActivationStatus;
|
|
26028
|
+
}
|
|
26029
|
+
export const Active: Active;
|
|
26030
|
+
/**
|
|
26031
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerPlatformActivationStatus#Lapsed)
|
|
26032
|
+
*/
|
|
26033
|
+
export interface Lapsed extends globalThis.EnumItem {
|
|
26034
|
+
Name: "Lapsed";
|
|
26035
|
+
Value: 3;
|
|
26036
|
+
EnumType: typeof globalThis.Enum.PlayerPlatformActivationStatus;
|
|
26037
|
+
}
|
|
26038
|
+
export const Lapsed: Lapsed;
|
|
26039
|
+
/**
|
|
26040
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerPlatformActivationStatus#Reactivated)
|
|
26041
|
+
*/
|
|
26042
|
+
export interface Reactivated extends globalThis.EnumItem {
|
|
26043
|
+
Name: "Reactivated";
|
|
26044
|
+
Value: 4;
|
|
26045
|
+
EnumType: typeof globalThis.Enum.PlayerPlatformActivationStatus;
|
|
26046
|
+
}
|
|
26047
|
+
export const Reactivated: Reactivated;
|
|
26048
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PlayerPlatformActivationStatus>;
|
|
26049
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PlayerPlatformActivationStatus | undefined;
|
|
26050
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PlayerPlatformActivationStatus | undefined;
|
|
26051
|
+
}
|
|
26052
|
+
export type PlayerPlatformActivationStatus = PlayerPlatformActivationStatus.Unknown | PlayerPlatformActivationStatus.New | PlayerPlatformActivationStatus.Active | PlayerPlatformActivationStatus.Lapsed | PlayerPlatformActivationStatus.Reactivated;
|
|
25700
26053
|
/**
|
|
25701
26054
|
* Describes a player's platform-wide spender status bucket.
|
|
25702
26055
|
*
|
|
@@ -27316,10 +27669,14 @@ declare namespace Enum {
|
|
|
27316
27669
|
}
|
|
27317
27670
|
export type ReadCapturesFromGalleryResult = ReadCapturesFromGalleryResult.Success | ReadCapturesFromGalleryResult.NeedPermission;
|
|
27318
27671
|
/**
|
|
27672
|
+
* `ReceiptDecision` works with `MarketplaceService` to indicate the acknowledgement of receipts.
|
|
27673
|
+
*
|
|
27319
27674
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReceiptDecision)
|
|
27320
27675
|
*/
|
|
27321
27676
|
export namespace ReceiptDecision {
|
|
27322
27677
|
/**
|
|
27678
|
+
* The receipt has not been processed yet. Returning this value keeps the receipt unresolved so it will be delivered again on the next opportunity, such as when the user rejoins a server.
|
|
27679
|
+
*
|
|
27323
27680
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReceiptDecision#NotProcessedYet)
|
|
27324
27681
|
*/
|
|
27325
27682
|
export interface NotProcessedYet extends globalThis.EnumItem {
|
|
@@ -27329,6 +27686,8 @@ declare namespace Enum {
|
|
|
27329
27686
|
}
|
|
27330
27687
|
export const NotProcessedYet: NotProcessedYet;
|
|
27331
27688
|
/**
|
|
27689
|
+
* The receipt has been processed and all benefits have been granted. The receipt is marked as complete and will not be delivered again.
|
|
27690
|
+
*
|
|
27332
27691
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReceiptDecision#Processed)
|
|
27333
27692
|
*/
|
|
27334
27693
|
export interface Processed extends globalThis.EnumItem {
|
|
@@ -27343,6 +27702,8 @@ declare namespace Enum {
|
|
|
27343
27702
|
}
|
|
27344
27703
|
export type ReceiptDecision = ReceiptDecision.NotProcessedYet | ReceiptDecision.Processed;
|
|
27345
27704
|
/**
|
|
27705
|
+
* `ReceiptType` is used to work with server-sided receipt processing.
|
|
27706
|
+
*
|
|
27346
27707
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReceiptType)
|
|
27347
27708
|
*/
|
|
27348
27709
|
export namespace ReceiptType {
|
|
@@ -27356,6 +27717,8 @@ declare namespace Enum {
|
|
|
27356
27717
|
}
|
|
27357
27718
|
export const DeveloperProduct: DeveloperProduct;
|
|
27358
27719
|
/**
|
|
27720
|
+
* Used for processing receipts for the user who initiated a Robux transfer. The receipt's `PlayerId` is the sender's user ID and includes a `TransferRequestId` field.
|
|
27721
|
+
*
|
|
27359
27722
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReceiptType#RobuxTransferSender)
|
|
27360
27723
|
*/
|
|
27361
27724
|
export interface RobuxTransferSender extends globalThis.EnumItem {
|
|
@@ -27365,6 +27728,8 @@ declare namespace Enum {
|
|
|
27365
27728
|
}
|
|
27366
27729
|
export const RobuxTransferSender: RobuxTransferSender;
|
|
27367
27730
|
/**
|
|
27731
|
+
* Used for processing receipts for the user who received Robux via a transfer. The receipt's `PlayerId` is the receiver's user ID and includes a `TransferRequestId` field.
|
|
27732
|
+
*
|
|
27368
27733
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReceiptType#RobuxTransferReceiver)
|
|
27369
27734
|
*/
|
|
27370
27735
|
export interface RobuxTransferReceiver extends globalThis.EnumItem {
|
|
@@ -30065,6 +30430,96 @@ declare namespace Enum {
|
|
|
30065
30430
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ScreenshotCaptureResult | undefined;
|
|
30066
30431
|
}
|
|
30067
30432
|
export type ScreenshotCaptureResult = ScreenshotCaptureResult.Success | ScreenshotCaptureResult.OtherError | ScreenshotCaptureResult.NoDeviceSupport | ScreenshotCaptureResult.NoSpaceOnDevice;
|
|
30433
|
+
/**
|
|
30434
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScriptStoppedReason)
|
|
30435
|
+
*/
|
|
30436
|
+
export namespace ScriptStoppedReason {
|
|
30437
|
+
/**
|
|
30438
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScriptStoppedReason#Breakpoint)
|
|
30439
|
+
*/
|
|
30440
|
+
export interface Breakpoint extends globalThis.EnumItem {
|
|
30441
|
+
Name: "Breakpoint";
|
|
30442
|
+
Value: 0;
|
|
30443
|
+
EnumType: typeof globalThis.Enum.ScriptStoppedReason;
|
|
30444
|
+
}
|
|
30445
|
+
export const Breakpoint: Breakpoint;
|
|
30446
|
+
/**
|
|
30447
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScriptStoppedReason#Exception)
|
|
30448
|
+
*/
|
|
30449
|
+
export interface Exception extends globalThis.EnumItem {
|
|
30450
|
+
Name: "Exception";
|
|
30451
|
+
Value: 1;
|
|
30452
|
+
EnumType: typeof globalThis.Enum.ScriptStoppedReason;
|
|
30453
|
+
}
|
|
30454
|
+
export const Exception: Exception;
|
|
30455
|
+
/**
|
|
30456
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScriptStoppedReason#Pause)
|
|
30457
|
+
*/
|
|
30458
|
+
export interface Pause extends globalThis.EnumItem {
|
|
30459
|
+
Name: "Pause";
|
|
30460
|
+
Value: 2;
|
|
30461
|
+
EnumType: typeof globalThis.Enum.ScriptStoppedReason;
|
|
30462
|
+
}
|
|
30463
|
+
export const Pause: Pause;
|
|
30464
|
+
/**
|
|
30465
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScriptStoppedReason#Step)
|
|
30466
|
+
*/
|
|
30467
|
+
export interface Step extends globalThis.EnumItem {
|
|
30468
|
+
Name: "Step";
|
|
30469
|
+
Value: 3;
|
|
30470
|
+
EnumType: typeof globalThis.Enum.ScriptStoppedReason;
|
|
30471
|
+
}
|
|
30472
|
+
export const Step: Step;
|
|
30473
|
+
/**
|
|
30474
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScriptStoppedReason#Entry)
|
|
30475
|
+
*/
|
|
30476
|
+
export interface Entry extends globalThis.EnumItem {
|
|
30477
|
+
Name: "Entry";
|
|
30478
|
+
Value: 4;
|
|
30479
|
+
EnumType: typeof globalThis.Enum.ScriptStoppedReason;
|
|
30480
|
+
}
|
|
30481
|
+
export const Entry: Entry;
|
|
30482
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ScriptStoppedReason>;
|
|
30483
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ScriptStoppedReason | undefined;
|
|
30484
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ScriptStoppedReason | undefined;
|
|
30485
|
+
}
|
|
30486
|
+
export type ScriptStoppedReason = ScriptStoppedReason.Breakpoint | ScriptStoppedReason.Exception | ScriptStoppedReason.Pause | ScriptStoppedReason.Step | ScriptStoppedReason.Entry;
|
|
30487
|
+
/**
|
|
30488
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScriptVariableScope)
|
|
30489
|
+
*/
|
|
30490
|
+
export namespace ScriptVariableScope {
|
|
30491
|
+
/**
|
|
30492
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScriptVariableScope#Local)
|
|
30493
|
+
*/
|
|
30494
|
+
export interface Local extends globalThis.EnumItem {
|
|
30495
|
+
Name: "Local";
|
|
30496
|
+
Value: 0;
|
|
30497
|
+
EnumType: typeof globalThis.Enum.ScriptVariableScope;
|
|
30498
|
+
}
|
|
30499
|
+
export const Local: Local;
|
|
30500
|
+
/**
|
|
30501
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScriptVariableScope#Upvalue)
|
|
30502
|
+
*/
|
|
30503
|
+
export interface Upvalue extends globalThis.EnumItem {
|
|
30504
|
+
Name: "Upvalue";
|
|
30505
|
+
Value: 1;
|
|
30506
|
+
EnumType: typeof globalThis.Enum.ScriptVariableScope;
|
|
30507
|
+
}
|
|
30508
|
+
export const Upvalue: Upvalue;
|
|
30509
|
+
/**
|
|
30510
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScriptVariableScope#Global)
|
|
30511
|
+
*/
|
|
30512
|
+
export interface Global extends globalThis.EnumItem {
|
|
30513
|
+
Name: "Global";
|
|
30514
|
+
Value: 2;
|
|
30515
|
+
EnumType: typeof globalThis.Enum.ScriptVariableScope;
|
|
30516
|
+
}
|
|
30517
|
+
export const Global: Global;
|
|
30518
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ScriptVariableScope>;
|
|
30519
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ScriptVariableScope | undefined;
|
|
30520
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ScriptVariableScope | undefined;
|
|
30521
|
+
}
|
|
30522
|
+
export type ScriptVariableScope = ScriptVariableScope.Local | ScriptVariableScope.Upvalue | ScriptVariableScope.Global;
|
|
30068
30523
|
/**
|
|
30069
30524
|
* This enum is used with `ScrollingFrame.HorizontalScrollBarInset` and `ScrollingFrame.VerticalScrollBarInset` to indicate whether the canvas should be inset by `ScrollBarThickness` for the respective scroll bar.
|
|
30070
30525
|
*
|