@rbxts/types 1.0.925 → 1.0.928
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 +558 -744
- package/include/generated/PluginSecurity.d.ts +1046 -178
- package/include/generated/enums.d.ts +423 -12
- package/package.json +1 -1
|
@@ -1059,6 +1059,33 @@ declare namespace Enum {
|
|
|
1059
1059
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AdornShading | undefined;
|
|
1060
1060
|
}
|
|
1061
1061
|
export type AdornShading = AdornShading.Default | AdornShading.Shaded | AdornShading.XRay | AdornShading.XRayShaded | AdornShading.AlwaysOnTop;
|
|
1062
|
+
/**
|
|
1063
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AgeCheckStatus)
|
|
1064
|
+
*/
|
|
1065
|
+
export namespace AgeCheckStatus {
|
|
1066
|
+
/**
|
|
1067
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AgeCheckStatus#Unchecked)
|
|
1068
|
+
*/
|
|
1069
|
+
export interface Unchecked extends globalThis.EnumItem {
|
|
1070
|
+
Name: "Unchecked";
|
|
1071
|
+
Value: 0;
|
|
1072
|
+
EnumType: typeof globalThis.Enum.AgeCheckStatus;
|
|
1073
|
+
}
|
|
1074
|
+
export const Unchecked: Unchecked;
|
|
1075
|
+
/**
|
|
1076
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AgeCheckStatus#Checked)
|
|
1077
|
+
*/
|
|
1078
|
+
export interface Checked extends globalThis.EnumItem {
|
|
1079
|
+
Name: "Checked";
|
|
1080
|
+
Value: 1;
|
|
1081
|
+
EnumType: typeof globalThis.Enum.AgeCheckStatus;
|
|
1082
|
+
}
|
|
1083
|
+
export const Checked: Checked;
|
|
1084
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AgeCheckStatus>;
|
|
1085
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AgeCheckStatus | undefined;
|
|
1086
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AgeCheckStatus | undefined;
|
|
1087
|
+
}
|
|
1088
|
+
export type AgeCheckStatus = AgeCheckStatus.Unchecked | AgeCheckStatus.Checked;
|
|
1062
1089
|
/**
|
|
1063
1090
|
* An enum that specifies how the constraint will attempt to align the body associated with the constraint.
|
|
1064
1091
|
*
|
|
@@ -2630,11 +2657,20 @@ declare namespace Enum {
|
|
|
2630
2657
|
EnumType: typeof globalThis.Enum.AppShellFeature;
|
|
2631
2658
|
}
|
|
2632
2659
|
export const Landing: Landing;
|
|
2660
|
+
/**
|
|
2661
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AppShellFeature#WatchPage)
|
|
2662
|
+
*/
|
|
2663
|
+
export interface WatchPage extends globalThis.EnumItem {
|
|
2664
|
+
Name: "WatchPage";
|
|
2665
|
+
Value: 7;
|
|
2666
|
+
EnumType: typeof globalThis.Enum.AppShellFeature;
|
|
2667
|
+
}
|
|
2668
|
+
export const WatchPage: WatchPage;
|
|
2633
2669
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AppShellFeature>;
|
|
2634
2670
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AppShellFeature | undefined;
|
|
2635
2671
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AppShellFeature | undefined;
|
|
2636
2672
|
}
|
|
2637
|
-
export type AppShellFeature = AppShellFeature.None | AppShellFeature.Chat | AppShellFeature.AvatarEditor | AppShellFeature.GamePage | AppShellFeature.HomePage | AppShellFeature.More | AppShellFeature.Landing;
|
|
2673
|
+
export type AppShellFeature = AppShellFeature.None | AppShellFeature.Chat | AppShellFeature.AvatarEditor | AppShellFeature.GamePage | AppShellFeature.HomePage | AppShellFeature.More | AppShellFeature.Landing | AppShellFeature.WatchPage;
|
|
2638
2674
|
/**
|
|
2639
2675
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AppUpdateStatus)
|
|
2640
2676
|
*/
|
|
@@ -6626,11 +6662,29 @@ declare namespace Enum {
|
|
|
6626
6662
|
EnumType: typeof globalThis.Enum.CanCollaborateError;
|
|
6627
6663
|
}
|
|
6628
6664
|
export const OutsideOwnerAgeBucket: OutsideOwnerAgeBucket;
|
|
6665
|
+
/**
|
|
6666
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CanCollaborateError#NotAuthorized)
|
|
6667
|
+
*/
|
|
6668
|
+
export interface NotAuthorized extends globalThis.EnumItem {
|
|
6669
|
+
Name: "NotAuthorized";
|
|
6670
|
+
Value: 8;
|
|
6671
|
+
EnumType: typeof globalThis.Enum.CanCollaborateError;
|
|
6672
|
+
}
|
|
6673
|
+
export const NotAuthorized: NotAuthorized;
|
|
6674
|
+
/**
|
|
6675
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CanCollaborateError#OutsideAgeBucketTcPc)
|
|
6676
|
+
*/
|
|
6677
|
+
export interface OutsideAgeBucketTcPc extends globalThis.EnumItem {
|
|
6678
|
+
Name: "OutsideAgeBucketTcPc";
|
|
6679
|
+
Value: 9;
|
|
6680
|
+
EnumType: typeof globalThis.Enum.CanCollaborateError;
|
|
6681
|
+
}
|
|
6682
|
+
export const OutsideAgeBucketTcPc: OutsideAgeBucketTcPc;
|
|
6629
6683
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CanCollaborateError>;
|
|
6630
6684
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CanCollaborateError | undefined;
|
|
6631
6685
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CanCollaborateError | undefined;
|
|
6632
6686
|
}
|
|
6633
|
-
export type CanCollaborateError = CanCollaborateError.Invalid | CanCollaborateError.None | CanCollaborateError.NotAgeVerified | CanCollaborateError.OutsideAgeBucket | CanCollaborateError.TooManyCollaborators | CanCollaborateError.PCBlock | CanCollaborateError.NotFound | CanCollaborateError.OutsideOwnerAgeBucket;
|
|
6687
|
+
export type CanCollaborateError = CanCollaborateError.Invalid | CanCollaborateError.None | CanCollaborateError.NotAgeVerified | CanCollaborateError.OutsideAgeBucket | CanCollaborateError.TooManyCollaborators | CanCollaborateError.PCBlock | CanCollaborateError.NotFound | CanCollaborateError.OutsideOwnerAgeBucket | CanCollaborateError.NotAuthorized | CanCollaborateError.OutsideAgeBucketTcPc;
|
|
6634
6688
|
/**
|
|
6635
6689
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CaptureGalleryPermission)
|
|
6636
6690
|
*/
|
|
@@ -7631,11 +7685,20 @@ declare namespace Enum {
|
|
|
7631
7685
|
EnumType: typeof globalThis.Enum.CloseReason;
|
|
7632
7686
|
}
|
|
7633
7687
|
export const OutOfMemory: OutOfMemory;
|
|
7688
|
+
/**
|
|
7689
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CloseReason#Moderation)
|
|
7690
|
+
*/
|
|
7691
|
+
export interface Moderation extends globalThis.EnumItem {
|
|
7692
|
+
Name: "Moderation";
|
|
7693
|
+
Value: 6;
|
|
7694
|
+
EnumType: typeof globalThis.Enum.CloseReason;
|
|
7695
|
+
}
|
|
7696
|
+
export const Moderation: Moderation;
|
|
7634
7697
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CloseReason>;
|
|
7635
7698
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CloseReason | undefined;
|
|
7636
7699
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CloseReason | undefined;
|
|
7637
7700
|
}
|
|
7638
|
-
export type CloseReason = CloseReason.Unknown | CloseReason.RobloxMaintenance | CloseReason.DeveloperShutdown | CloseReason.DeveloperUpdate | CloseReason.ServerEmpty | CloseReason.OutOfMemory;
|
|
7701
|
+
export type CloseReason = CloseReason.Unknown | CloseReason.RobloxMaintenance | CloseReason.DeveloperShutdown | CloseReason.DeveloperUpdate | CloseReason.ServerEmpty | CloseReason.OutOfMemory | CloseReason.Moderation;
|
|
7639
7702
|
/**
|
|
7640
7703
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CollaboratorStatus)
|
|
7641
7704
|
*/
|
|
@@ -9156,6 +9219,51 @@ declare namespace Enum {
|
|
|
9156
9219
|
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
9157
9220
|
}
|
|
9158
9221
|
export const DisconnectCollaboratorTrustedConnectionsRequiredPC: DisconnectCollaboratorTrustedConnectionsRequiredPC;
|
|
9222
|
+
/**
|
|
9223
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectRemoteAttestationUnsupported)
|
|
9224
|
+
*/
|
|
9225
|
+
export interface DisconnectRemoteAttestationUnsupported extends globalThis.EnumItem {
|
|
9226
|
+
Name: "DisconnectRemoteAttestationUnsupported";
|
|
9227
|
+
Value: 317;
|
|
9228
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
9229
|
+
}
|
|
9230
|
+
export const DisconnectRemoteAttestationUnsupported: DisconnectRemoteAttestationUnsupported;
|
|
9231
|
+
/**
|
|
9232
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectRemoteAttestationGeneralFailure)
|
|
9233
|
+
*/
|
|
9234
|
+
export interface DisconnectRemoteAttestationGeneralFailure extends globalThis.EnumItem {
|
|
9235
|
+
Name: "DisconnectRemoteAttestationGeneralFailure";
|
|
9236
|
+
Value: 318;
|
|
9237
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
9238
|
+
}
|
|
9239
|
+
export const DisconnectRemoteAttestationGeneralFailure: DisconnectRemoteAttestationGeneralFailure;
|
|
9240
|
+
/**
|
|
9241
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectRemoteAttestationTimeout)
|
|
9242
|
+
*/
|
|
9243
|
+
export interface DisconnectRemoteAttestationTimeout extends globalThis.EnumItem {
|
|
9244
|
+
Name: "DisconnectRemoteAttestationTimeout";
|
|
9245
|
+
Value: 319;
|
|
9246
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
9247
|
+
}
|
|
9248
|
+
export const DisconnectRemoteAttestationTimeout: DisconnectRemoteAttestationTimeout;
|
|
9249
|
+
/**
|
|
9250
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectRemoteAttestationOSOutOfDate)
|
|
9251
|
+
*/
|
|
9252
|
+
export interface DisconnectRemoteAttestationOSOutOfDate extends globalThis.EnumItem {
|
|
9253
|
+
Name: "DisconnectRemoteAttestationOSOutOfDate";
|
|
9254
|
+
Value: 320;
|
|
9255
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
9256
|
+
}
|
|
9257
|
+
export const DisconnectRemoteAttestationOSOutOfDate: DisconnectRemoteAttestationOSOutOfDate;
|
|
9258
|
+
/**
|
|
9259
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectRemoteAttestationBootValidationFailure)
|
|
9260
|
+
*/
|
|
9261
|
+
export interface DisconnectRemoteAttestationBootValidationFailure extends globalThis.EnumItem {
|
|
9262
|
+
Name: "DisconnectRemoteAttestationBootValidationFailure";
|
|
9263
|
+
Value: 321;
|
|
9264
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
9265
|
+
}
|
|
9266
|
+
export const DisconnectRemoteAttestationBootValidationFailure: DisconnectRemoteAttestationBootValidationFailure;
|
|
9159
9267
|
/**
|
|
9160
9268
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#PlacelaunchErrors)
|
|
9161
9269
|
*/
|
|
@@ -9318,6 +9426,15 @@ declare namespace Enum {
|
|
|
9318
9426
|
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
9319
9427
|
}
|
|
9320
9428
|
export const PlacelaunchCoreGated: PlacelaunchCoreGated;
|
|
9429
|
+
/**
|
|
9430
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#PlacelaunchCollaborationCoreGated)
|
|
9431
|
+
*/
|
|
9432
|
+
export interface PlacelaunchCollaborationCoreGated extends globalThis.EnumItem {
|
|
9433
|
+
Name: "PlacelaunchCollaborationCoreGated";
|
|
9434
|
+
Value: 545;
|
|
9435
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
9436
|
+
}
|
|
9437
|
+
export const PlacelaunchCollaborationCoreGated: PlacelaunchCollaborationCoreGated;
|
|
9321
9438
|
/**
|
|
9322
9439
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#PlacelaunchCreatorBan)
|
|
9323
9440
|
*/
|
|
@@ -9430,7 +9547,7 @@ declare namespace Enum {
|
|
|
9430
9547
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ConnectionError | undefined;
|
|
9431
9548
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ConnectionError | undefined;
|
|
9432
9549
|
}
|
|
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;
|
|
9550
|
+
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.DisconnectRemoteAttestationUnsupported | ConnectionError.DisconnectRemoteAttestationGeneralFailure | ConnectionError.DisconnectRemoteAttestationTimeout | ConnectionError.DisconnectRemoteAttestationOSOutOfDate | ConnectionError.DisconnectRemoteAttestationBootValidationFailure | 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.PlacelaunchCollaborationCoreGated | ConnectionError.PlacelaunchCreatorBan | ConnectionError.PlacelaunchDeviceBlock | ConnectionError.PlacelaunchCustomMessage | ConnectionError.PlacelaunchOtherError | ConnectionError.TeleportErrors | ConnectionError.TeleportFailure | ConnectionError.TeleportGameNotFound | ConnectionError.TeleportGameEnded | ConnectionError.TeleportGameFull | ConnectionError.TeleportUnauthorized | ConnectionError.TeleportFlooded | ConnectionError.TeleportIsTeleporting;
|
|
9434
9551
|
/**
|
|
9435
9552
|
* Used to determine the connection state of the client to the game server.
|
|
9436
9553
|
*
|
|
@@ -11786,10 +11903,14 @@ declare namespace Enum {
|
|
|
11786
11903
|
}
|
|
11787
11904
|
export type DisplaySize = DisplaySize.Small | DisplaySize.Medium | DisplaySize.Large;
|
|
11788
11905
|
/**
|
|
11906
|
+
* Specifies the type of domain that a `User` is scoped to.
|
|
11907
|
+
*
|
|
11789
11908
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DomainType)
|
|
11790
11909
|
*/
|
|
11791
11910
|
export namespace DomainType {
|
|
11792
11911
|
/**
|
|
11912
|
+
* The user ID is scoped to a specific experience (universe).
|
|
11913
|
+
*
|
|
11793
11914
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DomainType#EXPERIENCE)
|
|
11794
11915
|
*/
|
|
11795
11916
|
export interface EXPERIENCE extends globalThis.EnumItem {
|
|
@@ -11799,6 +11920,8 @@ declare namespace Enum {
|
|
|
11799
11920
|
}
|
|
11800
11921
|
export const EXPERIENCE: EXPERIENCE;
|
|
11801
11922
|
/**
|
|
11923
|
+
* The user ID is scoped to a specific OAuth application.
|
|
11924
|
+
*
|
|
11802
11925
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DomainType#OAUTH)
|
|
11803
11926
|
*/
|
|
11804
11927
|
export interface OAUTH extends globalThis.EnumItem {
|
|
@@ -15734,6 +15857,78 @@ declare namespace Enum {
|
|
|
15734
15857
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.Genre | undefined;
|
|
15735
15858
|
}
|
|
15736
15859
|
export type Genre = Genre.All | Genre.TownAndCity | Genre.Fantasy | Genre.SciFi | Genre.Ninja | Genre.Scary | Genre.Pirate | Genre.Adventure | Genre.Sports | Genre.Funny | Genre.WildWest | Genre.War | Genre.SkatePark | Genre.Tutorial;
|
|
15860
|
+
/**
|
|
15861
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GradientTileMode)
|
|
15862
|
+
*/
|
|
15863
|
+
export namespace GradientTileMode {
|
|
15864
|
+
/**
|
|
15865
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GradientTileMode#Clamp)
|
|
15866
|
+
*/
|
|
15867
|
+
export interface Clamp extends globalThis.EnumItem {
|
|
15868
|
+
Name: "Clamp";
|
|
15869
|
+
Value: 0;
|
|
15870
|
+
EnumType: typeof globalThis.Enum.GradientTileMode;
|
|
15871
|
+
}
|
|
15872
|
+
export const Clamp: Clamp;
|
|
15873
|
+
/**
|
|
15874
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GradientTileMode#Repeat)
|
|
15875
|
+
*/
|
|
15876
|
+
export interface Repeat extends globalThis.EnumItem {
|
|
15877
|
+
Name: "Repeat";
|
|
15878
|
+
Value: 1;
|
|
15879
|
+
EnumType: typeof globalThis.Enum.GradientTileMode;
|
|
15880
|
+
}
|
|
15881
|
+
export const Repeat: Repeat;
|
|
15882
|
+
/**
|
|
15883
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GradientTileMode#Mirror)
|
|
15884
|
+
*/
|
|
15885
|
+
export interface Mirror extends globalThis.EnumItem {
|
|
15886
|
+
Name: "Mirror";
|
|
15887
|
+
Value: 2;
|
|
15888
|
+
EnumType: typeof globalThis.Enum.GradientTileMode;
|
|
15889
|
+
}
|
|
15890
|
+
export const Mirror: Mirror;
|
|
15891
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.GradientTileMode>;
|
|
15892
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.GradientTileMode | undefined;
|
|
15893
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.GradientTileMode | undefined;
|
|
15894
|
+
}
|
|
15895
|
+
export type GradientTileMode = GradientTileMode.Clamp | GradientTileMode.Repeat | GradientTileMode.Mirror;
|
|
15896
|
+
/**
|
|
15897
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GradientType)
|
|
15898
|
+
*/
|
|
15899
|
+
export namespace GradientType {
|
|
15900
|
+
/**
|
|
15901
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GradientType#Linear)
|
|
15902
|
+
*/
|
|
15903
|
+
export interface Linear extends globalThis.EnumItem {
|
|
15904
|
+
Name: "Linear";
|
|
15905
|
+
Value: 0;
|
|
15906
|
+
EnumType: typeof globalThis.Enum.GradientType;
|
|
15907
|
+
}
|
|
15908
|
+
export const Linear: Linear;
|
|
15909
|
+
/**
|
|
15910
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GradientType#Radial)
|
|
15911
|
+
*/
|
|
15912
|
+
export interface Radial extends globalThis.EnumItem {
|
|
15913
|
+
Name: "Radial";
|
|
15914
|
+
Value: 1;
|
|
15915
|
+
EnumType: typeof globalThis.Enum.GradientType;
|
|
15916
|
+
}
|
|
15917
|
+
export const Radial: Radial;
|
|
15918
|
+
/**
|
|
15919
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GradientType#Conical)
|
|
15920
|
+
*/
|
|
15921
|
+
export interface Conical extends globalThis.EnumItem {
|
|
15922
|
+
Name: "Conical";
|
|
15923
|
+
Value: 2;
|
|
15924
|
+
EnumType: typeof globalThis.Enum.GradientType;
|
|
15925
|
+
}
|
|
15926
|
+
export const Conical: Conical;
|
|
15927
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.GradientType>;
|
|
15928
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.GradientType | undefined;
|
|
15929
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.GradientType | undefined;
|
|
15930
|
+
}
|
|
15931
|
+
export type GradientType = GradientType.Linear | GradientType.Radial | GradientType.Conical;
|
|
15737
15932
|
/**
|
|
15738
15933
|
* Used to set the graphics API that Roblox uses to render the game.
|
|
15739
15934
|
*
|
|
@@ -16633,11 +16828,20 @@ declare namespace Enum {
|
|
|
16633
16828
|
EnumType: typeof globalThis.Enum.HttpError;
|
|
16634
16829
|
}
|
|
16635
16830
|
export const TooManyOutstandingRequests: TooManyOutstandingRequests;
|
|
16831
|
+
/**
|
|
16832
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HttpError#InvalidRangeResponse)
|
|
16833
|
+
*/
|
|
16834
|
+
export interface InvalidRangeResponse extends globalThis.EnumItem {
|
|
16835
|
+
Name: "InvalidRangeResponse";
|
|
16836
|
+
Value: 18;
|
|
16837
|
+
EnumType: typeof globalThis.Enum.HttpError;
|
|
16838
|
+
}
|
|
16839
|
+
export const InvalidRangeResponse: InvalidRangeResponse;
|
|
16636
16840
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.HttpError>;
|
|
16637
16841
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.HttpError | undefined;
|
|
16638
16842
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HttpError | undefined;
|
|
16639
16843
|
}
|
|
16640
|
-
export type HttpError = HttpError.OK | HttpError.InvalidUrl | HttpError.DnsResolve | HttpError.ConnectFail | HttpError.OutOfMemory | HttpError.TimedOut | HttpError.TooManyRedirects | HttpError.InvalidRedirect | HttpError.NetFail | HttpError.Aborted | HttpError.SslConnectFail | HttpError.SslVerificationFail | HttpError.Unknown | HttpError.ConnectionClosed | HttpError.ServerProtocolError | HttpError.CreatorEnvironmentsNotSupportedByService | HttpError.InactivityTimeout | HttpError.TooManyOutstandingRequests;
|
|
16844
|
+
export type HttpError = HttpError.OK | HttpError.InvalidUrl | HttpError.DnsResolve | HttpError.ConnectFail | HttpError.OutOfMemory | HttpError.TimedOut | HttpError.TooManyRedirects | HttpError.InvalidRedirect | HttpError.NetFail | HttpError.Aborted | HttpError.SslConnectFail | HttpError.SslVerificationFail | HttpError.Unknown | HttpError.ConnectionClosed | HttpError.ServerProtocolError | HttpError.CreatorEnvironmentsNotSupportedByService | HttpError.InactivityTimeout | HttpError.TooManyOutstandingRequests | HttpError.InvalidRangeResponse;
|
|
16641
16845
|
/**
|
|
16642
16846
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HttpRequestType)
|
|
16643
16847
|
*/
|
|
@@ -17838,6 +18042,42 @@ declare namespace Enum {
|
|
|
17838
18042
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.IntermediateMeshGenerationResult | undefined;
|
|
17839
18043
|
}
|
|
17840
18044
|
export type IntermediateMeshGenerationResult = IntermediateMeshGenerationResult.HighQualityMesh;
|
|
18045
|
+
/**
|
|
18046
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InternalVideoUsage)
|
|
18047
|
+
*/
|
|
18048
|
+
export namespace InternalVideoUsage {
|
|
18049
|
+
/**
|
|
18050
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InternalVideoUsage#Default)
|
|
18051
|
+
*/
|
|
18052
|
+
export interface Default extends globalThis.EnumItem {
|
|
18053
|
+
Name: "Default";
|
|
18054
|
+
Value: 0;
|
|
18055
|
+
EnumType: typeof globalThis.Enum.InternalVideoUsage;
|
|
18056
|
+
}
|
|
18057
|
+
export const Default: Default;
|
|
18058
|
+
/**
|
|
18059
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InternalVideoUsage#WatchPage)
|
|
18060
|
+
*/
|
|
18061
|
+
export interface WatchPage extends globalThis.EnumItem {
|
|
18062
|
+
Name: "WatchPage";
|
|
18063
|
+
Value: 1;
|
|
18064
|
+
EnumType: typeof globalThis.Enum.InternalVideoUsage;
|
|
18065
|
+
}
|
|
18066
|
+
export const WatchPage: WatchPage;
|
|
18067
|
+
/**
|
|
18068
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InternalVideoUsage#HomeCarousel)
|
|
18069
|
+
*/
|
|
18070
|
+
export interface HomeCarousel extends globalThis.EnumItem {
|
|
18071
|
+
Name: "HomeCarousel";
|
|
18072
|
+
Value: 2;
|
|
18073
|
+
EnumType: typeof globalThis.Enum.InternalVideoUsage;
|
|
18074
|
+
}
|
|
18075
|
+
export const HomeCarousel: HomeCarousel;
|
|
18076
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.InternalVideoUsage>;
|
|
18077
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.InternalVideoUsage | undefined;
|
|
18078
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.InternalVideoUsage | undefined;
|
|
18079
|
+
}
|
|
18080
|
+
export type InternalVideoUsage = InternalVideoUsage.Default | InternalVideoUsage.WatchPage | InternalVideoUsage.HomeCarousel;
|
|
17841
18081
|
/**
|
|
17842
18082
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InterpolationThrottlingMode)
|
|
17843
18083
|
*/
|
|
@@ -20950,6 +21190,8 @@ declare namespace Enum {
|
|
|
20950
21190
|
}
|
|
20951
21191
|
export const Thumbstick2Right: Thumbstick2Right;
|
|
20952
21192
|
/**
|
|
21193
|
+
* The left mouse button, also commonly referred to as "button 1" on a generic mouse. Primarily used in the [Input Action System](../../../input/input-action-system.md).
|
|
21194
|
+
*
|
|
20953
21195
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseLeftButton)
|
|
20954
21196
|
*/
|
|
20955
21197
|
export interface MouseLeftButton extends globalThis.EnumItem {
|
|
@@ -20959,6 +21201,8 @@ declare namespace Enum {
|
|
|
20959
21201
|
}
|
|
20960
21202
|
export const MouseLeftButton: MouseLeftButton;
|
|
20961
21203
|
/**
|
|
21204
|
+
* The right mouse button, also commonly referred to as "button 2" on a generic mouse. Primarily used in the [Input Action System](../../../input/input-action-system.md).
|
|
21205
|
+
*
|
|
20962
21206
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseRightButton)
|
|
20963
21207
|
*/
|
|
20964
21208
|
export interface MouseRightButton extends globalThis.EnumItem {
|
|
@@ -20968,6 +21212,8 @@ declare namespace Enum {
|
|
|
20968
21212
|
}
|
|
20969
21213
|
export const MouseRightButton: MouseRightButton;
|
|
20970
21214
|
/**
|
|
21215
|
+
* The middle mouse button, also commonly referred to as "button 3" on a generic mouse. Primarily used in the [Input Action System](../../../input/input-action-system.md).
|
|
21216
|
+
*
|
|
20971
21217
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseMiddleButton)
|
|
20972
21218
|
*/
|
|
20973
21219
|
export interface MouseMiddleButton extends globalThis.EnumItem {
|
|
@@ -21047,6 +21293,8 @@ declare namespace Enum {
|
|
|
21047
21293
|
*/
|
|
21048
21294
|
export const Touch: TouchPosition;
|
|
21049
21295
|
/**
|
|
21296
|
+
* The scroll delta (change) of a mouse wheel. Primarily used in the [Input Action System](../../../input/input-action-system.md).
|
|
21297
|
+
*
|
|
21050
21298
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseWheel)
|
|
21051
21299
|
*/
|
|
21052
21300
|
export interface MouseWheel extends globalThis.EnumItem {
|
|
@@ -21056,6 +21304,8 @@ declare namespace Enum {
|
|
|
21056
21304
|
}
|
|
21057
21305
|
export const MouseWheel: MouseWheel;
|
|
21058
21306
|
/**
|
|
21307
|
+
* The pan delta (change) from a trackpad two-finger pan gesture. Primarily used in the [Input Action System](../../../input/input-action-system.md).
|
|
21308
|
+
*
|
|
21059
21309
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#TrackpadPan)
|
|
21060
21310
|
*/
|
|
21061
21311
|
export interface TrackpadPan extends globalThis.EnumItem {
|
|
@@ -21065,6 +21315,8 @@ declare namespace Enum {
|
|
|
21065
21315
|
}
|
|
21066
21316
|
export const TrackpadPan: TrackpadPan;
|
|
21067
21317
|
/**
|
|
21318
|
+
* The scale delta (change) from a trackpad two-finger pinch gesture. Primarily used in the [Input Action System](../../../input/input-action-system.md).
|
|
21319
|
+
*
|
|
21068
21320
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#TrackpadPinch)
|
|
21069
21321
|
*/
|
|
21070
21322
|
export interface TrackpadPinch extends globalThis.EnumItem {
|
|
@@ -21074,6 +21326,8 @@ declare namespace Enum {
|
|
|
21074
21326
|
}
|
|
21075
21327
|
export const TrackpadPinch: TrackpadPinch;
|
|
21076
21328
|
/**
|
|
21329
|
+
* The movement delta (change) of the mouse cursor. Primarily used in the [Input Action System](../../../input/input-action-system.md).
|
|
21330
|
+
*
|
|
21077
21331
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseDelta)
|
|
21078
21332
|
*/
|
|
21079
21333
|
export interface MouseDelta extends globalThis.EnumItem {
|
|
@@ -21083,6 +21337,8 @@ declare namespace Enum {
|
|
|
21083
21337
|
}
|
|
21084
21338
|
export const MouseDelta: MouseDelta;
|
|
21085
21339
|
/**
|
|
21340
|
+
* The movement delta (change) of a touch input. Primarily used in the [Input Action System](../../../input/input-action-system.md).
|
|
21341
|
+
*
|
|
21086
21342
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#TouchDelta)
|
|
21087
21343
|
*/
|
|
21088
21344
|
export interface TouchDelta extends globalThis.EnumItem {
|
|
@@ -21092,6 +21348,8 @@ declare namespace Enum {
|
|
|
21092
21348
|
}
|
|
21093
21349
|
export const TouchDelta: TouchDelta;
|
|
21094
21350
|
/**
|
|
21351
|
+
* The scale delta (change) of a two-finger touch pinch gesture. Primarily used in the [Input Action System](../../../input/input-action-system.md).
|
|
21352
|
+
*
|
|
21095
21353
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#TouchPinch)
|
|
21096
21354
|
*/
|
|
21097
21355
|
export interface TouchPinch extends globalThis.EnumItem {
|
|
@@ -23383,7 +23641,7 @@ declare namespace Enum {
|
|
|
23383
23641
|
*/
|
|
23384
23642
|
export namespace ModelLevelOfDetail {
|
|
23385
23643
|
/**
|
|
23386
|
-
* Default behavior, currently equivalent to
|
|
23644
|
+
* Default behavior, currently equivalent to `Disabled`.
|
|
23387
23645
|
*
|
|
23388
23646
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModelLevelOfDetail#Automatic)
|
|
23389
23647
|
*/
|
|
@@ -23394,7 +23652,7 @@ declare namespace Enum {
|
|
|
23394
23652
|
}
|
|
23395
23653
|
export const Automatic: Automatic;
|
|
23396
23654
|
/**
|
|
23397
|
-
* A lower resolution "imposter" mesh (colored, coarse mesh that wraps around all child parts of the model) renders outside the streaming radius.
|
|
23655
|
+
* A lower resolution "imposter" mesh (colored, coarse mesh that wraps around all child parts of the model) renders outside the streaming radius. Does not support textures.
|
|
23398
23656
|
*
|
|
23399
23657
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModelLevelOfDetail#StreamingMesh)
|
|
23400
23658
|
*/
|
|
@@ -23420,7 +23678,7 @@ declare namespace Enum {
|
|
|
23420
23678
|
*/
|
|
23421
23679
|
export const Deactivated: Disabled;
|
|
23422
23680
|
/**
|
|
23423
|
-
* A Scalable Lightweight Interactive Model
|
|
23681
|
+
* A **SLIM** model (Scalable Lightweight Interactive Model) renders a composite of all child parts at progressively lower resolutions at distances based on the streaming radius. Greatly improves visual quality over `StreamingMesh`.
|
|
23424
23682
|
*
|
|
23425
23683
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModelLevelOfDetail#SLIM)
|
|
23426
23684
|
*/
|
|
@@ -27712,7 +27970,7 @@ declare namespace Enum {
|
|
|
27712
27970
|
*/
|
|
27713
27971
|
export namespace ReceiptDecision {
|
|
27714
27972
|
/**
|
|
27715
|
-
* The receipt has not been processed yet. Returning this value keeps the receipt unresolved so it will be
|
|
27973
|
+
* The receipt has not been processed yet. Returning this value keeps the receipt unresolved so it will be redelivered to the user's handler later, either during their existing session or the next time they join a server if they have disconnected.
|
|
27716
27974
|
*
|
|
27717
27975
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReceiptDecision#NotProcessedYet)
|
|
27718
27976
|
*/
|
|
@@ -27754,7 +28012,7 @@ declare namespace Enum {
|
|
|
27754
28012
|
}
|
|
27755
28013
|
export const DeveloperProduct: DeveloperProduct;
|
|
27756
28014
|
/**
|
|
27757
|
-
* 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. Delivered immediately if
|
|
28015
|
+
* 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. Delivered immediately if the transfer settles synchronously. If receiver approval is required, delivered to the server the sender is currently in once the receiver accepts, or on the sender's next session join if they are offline.
|
|
27758
28016
|
*
|
|
27759
28017
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReceiptType#RobuxTransferSender)
|
|
27760
28018
|
*/
|
|
@@ -27765,7 +28023,7 @@ declare namespace Enum {
|
|
|
27765
28023
|
}
|
|
27766
28024
|
export const RobuxTransferSender: RobuxTransferSender;
|
|
27767
28025
|
/**
|
|
27768
|
-
* 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.
|
|
28026
|
+
* 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. Delivered to the server the receiver is currently in once the transfer settles, or on their next session join if they are offline.
|
|
27769
28027
|
*
|
|
27770
28028
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReceiptType#RobuxTransferReceiver)
|
|
27771
28029
|
*/
|
|
@@ -28511,11 +28769,29 @@ declare namespace Enum {
|
|
|
28511
28769
|
EnumType: typeof globalThis.Enum.RestPoseModel;
|
|
28512
28770
|
}
|
|
28513
28771
|
export const FromRigInFile: FromRigInFile;
|
|
28772
|
+
/**
|
|
28773
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RestPoseModel#FromRigInFileZeroedRotations)
|
|
28774
|
+
*/
|
|
28775
|
+
export interface FromRigInFileZeroedRotations extends globalThis.EnumItem {
|
|
28776
|
+
Name: "FromRigInFileZeroedRotations";
|
|
28777
|
+
Value: 2;
|
|
28778
|
+
EnumType: typeof globalThis.Enum.RestPoseModel;
|
|
28779
|
+
}
|
|
28780
|
+
export const FromRigInFileZeroedRotations: FromRigInFileZeroedRotations;
|
|
28781
|
+
/**
|
|
28782
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RestPoseModel#FromCustomClip)
|
|
28783
|
+
*/
|
|
28784
|
+
export interface FromCustomClip extends globalThis.EnumItem {
|
|
28785
|
+
Name: "FromCustomClip";
|
|
28786
|
+
Value: 3;
|
|
28787
|
+
EnumType: typeof globalThis.Enum.RestPoseModel;
|
|
28788
|
+
}
|
|
28789
|
+
export const FromCustomClip: FromCustomClip;
|
|
28514
28790
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RestPoseModel>;
|
|
28515
28791
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RestPoseModel | undefined;
|
|
28516
28792
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RestPoseModel | undefined;
|
|
28517
28793
|
}
|
|
28518
|
-
export type RestPoseModel = RestPoseModel.FromRigInACE | RestPoseModel.FromRigInFile;
|
|
28794
|
+
export type RestPoseModel = RestPoseModel.FromRigInACE | RestPoseModel.FromRigInFile | RestPoseModel.FromRigInFileZeroedRotations | RestPoseModel.FromCustomClip;
|
|
28519
28795
|
/**
|
|
28520
28796
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReturnKeyType)
|
|
28521
28797
|
*/
|
|
@@ -31645,6 +31921,69 @@ declare namespace Enum {
|
|
|
31645
31921
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SizeConstraint | undefined;
|
|
31646
31922
|
}
|
|
31647
31923
|
export type SizeConstraint = SizeConstraint.RelativeXY | SizeConstraint.RelativeXX | SizeConstraint.RelativeYY;
|
|
31924
|
+
/**
|
|
31925
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTintMode)
|
|
31926
|
+
*/
|
|
31927
|
+
export namespace SlimTintMode {
|
|
31928
|
+
/**
|
|
31929
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTintMode#None)
|
|
31930
|
+
*/
|
|
31931
|
+
export interface None extends globalThis.EnumItem {
|
|
31932
|
+
Name: "None";
|
|
31933
|
+
Value: 0;
|
|
31934
|
+
EnumType: typeof globalThis.Enum.SlimTintMode;
|
|
31935
|
+
}
|
|
31936
|
+
export const None: None;
|
|
31937
|
+
/**
|
|
31938
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTintMode#LOD)
|
|
31939
|
+
*/
|
|
31940
|
+
export interface LOD extends globalThis.EnumItem {
|
|
31941
|
+
Name: "LOD";
|
|
31942
|
+
Value: 1;
|
|
31943
|
+
EnumType: typeof globalThis.Enum.SlimTintMode;
|
|
31944
|
+
}
|
|
31945
|
+
export const LOD: LOD;
|
|
31946
|
+
/**
|
|
31947
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTintMode#Meshes)
|
|
31948
|
+
*/
|
|
31949
|
+
export interface Meshes extends globalThis.EnumItem {
|
|
31950
|
+
Name: "Meshes";
|
|
31951
|
+
Value: 2;
|
|
31952
|
+
EnumType: typeof globalThis.Enum.SlimTintMode;
|
|
31953
|
+
}
|
|
31954
|
+
export const Meshes: Meshes;
|
|
31955
|
+
/**
|
|
31956
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTintMode#MeshResourcePtr)
|
|
31957
|
+
*/
|
|
31958
|
+
export interface MeshResourcePtr extends globalThis.EnumItem {
|
|
31959
|
+
Name: "MeshResourcePtr";
|
|
31960
|
+
Value: 3;
|
|
31961
|
+
EnumType: typeof globalThis.Enum.SlimTintMode;
|
|
31962
|
+
}
|
|
31963
|
+
export const MeshResourcePtr: MeshResourcePtr;
|
|
31964
|
+
/**
|
|
31965
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTintMode#ContentId)
|
|
31966
|
+
*/
|
|
31967
|
+
export interface ContentId extends globalThis.EnumItem {
|
|
31968
|
+
Name: "ContentId";
|
|
31969
|
+
Value: 4;
|
|
31970
|
+
EnumType: typeof globalThis.Enum.SlimTintMode;
|
|
31971
|
+
}
|
|
31972
|
+
export const ContentId: ContentId;
|
|
31973
|
+
/**
|
|
31974
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTintMode#Zone)
|
|
31975
|
+
*/
|
|
31976
|
+
export interface Zone extends globalThis.EnumItem {
|
|
31977
|
+
Name: "Zone";
|
|
31978
|
+
Value: 5;
|
|
31979
|
+
EnumType: typeof globalThis.Enum.SlimTintMode;
|
|
31980
|
+
}
|
|
31981
|
+
export const Zone: Zone;
|
|
31982
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SlimTintMode>;
|
|
31983
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SlimTintMode | undefined;
|
|
31984
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SlimTintMode | undefined;
|
|
31985
|
+
}
|
|
31986
|
+
export type SlimTintMode = SlimTintMode.None | SlimTintMode.LOD | SlimTintMode.Meshes | SlimTintMode.MeshResourcePtr | SlimTintMode.ContentId | SlimTintMode.Zone;
|
|
31648
31987
|
/**
|
|
31649
31988
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SolidPrimitiveType)
|
|
31650
31989
|
*/
|
|
@@ -32337,6 +32676,78 @@ declare namespace Enum {
|
|
|
32337
32676
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.StrokeSizingMode | undefined;
|
|
32338
32677
|
}
|
|
32339
32678
|
export type StrokeSizingMode = StrokeSizingMode.FixedSize | StrokeSizingMode.ScaledSize;
|
|
32679
|
+
/**
|
|
32680
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioAction)
|
|
32681
|
+
*/
|
|
32682
|
+
export namespace StudioAction {
|
|
32683
|
+
/**
|
|
32684
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioAction#Undo)
|
|
32685
|
+
*/
|
|
32686
|
+
export interface Undo extends globalThis.EnumItem {
|
|
32687
|
+
Name: "Undo";
|
|
32688
|
+
Value: 0;
|
|
32689
|
+
EnumType: typeof globalThis.Enum.StudioAction;
|
|
32690
|
+
}
|
|
32691
|
+
export const Undo: Undo;
|
|
32692
|
+
/**
|
|
32693
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioAction#Redo)
|
|
32694
|
+
*/
|
|
32695
|
+
export interface Redo extends globalThis.EnumItem {
|
|
32696
|
+
Name: "Redo";
|
|
32697
|
+
Value: 1;
|
|
32698
|
+
EnumType: typeof globalThis.Enum.StudioAction;
|
|
32699
|
+
}
|
|
32700
|
+
export const Redo: Redo;
|
|
32701
|
+
/**
|
|
32702
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioAction#SelectAll)
|
|
32703
|
+
*/
|
|
32704
|
+
export interface SelectAll extends globalThis.EnumItem {
|
|
32705
|
+
Name: "SelectAll";
|
|
32706
|
+
Value: 2;
|
|
32707
|
+
EnumType: typeof globalThis.Enum.StudioAction;
|
|
32708
|
+
}
|
|
32709
|
+
export const SelectAll: SelectAll;
|
|
32710
|
+
/**
|
|
32711
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioAction#DeleteSelected)
|
|
32712
|
+
*/
|
|
32713
|
+
export interface DeleteSelected extends globalThis.EnumItem {
|
|
32714
|
+
Name: "DeleteSelected";
|
|
32715
|
+
Value: 3;
|
|
32716
|
+
EnumType: typeof globalThis.Enum.StudioAction;
|
|
32717
|
+
}
|
|
32718
|
+
export const DeleteSelected: DeleteSelected;
|
|
32719
|
+
/**
|
|
32720
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioAction#Copy)
|
|
32721
|
+
*/
|
|
32722
|
+
export interface Copy extends globalThis.EnumItem {
|
|
32723
|
+
Name: "Copy";
|
|
32724
|
+
Value: 61;
|
|
32725
|
+
EnumType: typeof globalThis.Enum.StudioAction;
|
|
32726
|
+
}
|
|
32727
|
+
export const Copy: Copy;
|
|
32728
|
+
/**
|
|
32729
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioAction#Cut)
|
|
32730
|
+
*/
|
|
32731
|
+
export interface Cut extends globalThis.EnumItem {
|
|
32732
|
+
Name: "Cut";
|
|
32733
|
+
Value: 62;
|
|
32734
|
+
EnumType: typeof globalThis.Enum.StudioAction;
|
|
32735
|
+
}
|
|
32736
|
+
export const Cut: Cut;
|
|
32737
|
+
/**
|
|
32738
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioAction#Paste)
|
|
32739
|
+
*/
|
|
32740
|
+
export interface Paste extends globalThis.EnumItem {
|
|
32741
|
+
Name: "Paste";
|
|
32742
|
+
Value: 63;
|
|
32743
|
+
EnumType: typeof globalThis.Enum.StudioAction;
|
|
32744
|
+
}
|
|
32745
|
+
export const Paste: Paste;
|
|
32746
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.StudioAction>;
|
|
32747
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.StudioAction | undefined;
|
|
32748
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.StudioAction | undefined;
|
|
32749
|
+
}
|
|
32750
|
+
export type StudioAction = StudioAction.Undo | StudioAction.Redo | StudioAction.SelectAll | StudioAction.DeleteSelected | StudioAction.Copy | StudioAction.Cut | StudioAction.Paste;
|
|
32340
32751
|
/**
|
|
32341
32752
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioCaptureBufferStatus)
|
|
32342
32753
|
*/
|