@rbxts/types 1.0.909 → 1.0.911
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 +758 -416
- package/include/generated/PluginSecurity.d.ts +120 -20
- package/include/generated/enums.d.ts +543 -88
- package/package.json +1 -1
|
@@ -1642,28 +1642,36 @@ declare namespace Enum {
|
|
|
1642
1642
|
}
|
|
1643
1643
|
export const Always: Always;
|
|
1644
1644
|
/**
|
|
1645
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeInterruptible#
|
|
1645
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeInterruptible#Finished)
|
|
1646
1646
|
*/
|
|
1647
|
-
export interface
|
|
1648
|
-
Name: "
|
|
1647
|
+
export interface Finished extends globalThis.EnumItem {
|
|
1648
|
+
Name: "Finished";
|
|
1649
1649
|
Value: 1;
|
|
1650
1650
|
EnumType: typeof globalThis.Enum.AnimationNodeInterruptible;
|
|
1651
1651
|
}
|
|
1652
|
-
export const
|
|
1652
|
+
export const Finished: Finished;
|
|
1653
1653
|
/**
|
|
1654
|
-
*
|
|
1654
|
+
* @deprecated renamed to Finished
|
|
1655
1655
|
*/
|
|
1656
|
-
export
|
|
1657
|
-
|
|
1656
|
+
export const ClipFinished: Finished;
|
|
1657
|
+
/**
|
|
1658
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeInterruptible#Trigger)
|
|
1659
|
+
*/
|
|
1660
|
+
export interface Trigger extends globalThis.EnumItem {
|
|
1661
|
+
Name: "Trigger";
|
|
1658
1662
|
Value: 2;
|
|
1659
1663
|
EnumType: typeof globalThis.Enum.AnimationNodeInterruptible;
|
|
1660
1664
|
}
|
|
1661
|
-
export const
|
|
1665
|
+
export const Trigger: Trigger;
|
|
1666
|
+
/**
|
|
1667
|
+
* @deprecated renamed to Trigger
|
|
1668
|
+
*/
|
|
1669
|
+
export const Expression: Trigger;
|
|
1662
1670
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationNodeInterruptible>;
|
|
1663
1671
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodeInterruptible | undefined;
|
|
1664
1672
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeInterruptible | undefined;
|
|
1665
1673
|
}
|
|
1666
|
-
export type AnimationNodeInterruptible = AnimationNodeInterruptible.Always | AnimationNodeInterruptible.
|
|
1674
|
+
export type AnimationNodeInterruptible = AnimationNodeInterruptible.Always | AnimationNodeInterruptible.Finished | AnimationNodeInterruptible.Trigger;
|
|
1667
1675
|
/**
|
|
1668
1676
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodePlayMode)
|
|
1669
1677
|
*/
|
|
@@ -1885,28 +1893,36 @@ declare namespace Enum {
|
|
|
1885
1893
|
*/
|
|
1886
1894
|
export namespace AnimationNodeWaitFor {
|
|
1887
1895
|
/**
|
|
1888
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeWaitFor#
|
|
1896
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeWaitFor#Finished)
|
|
1889
1897
|
*/
|
|
1890
|
-
export interface
|
|
1891
|
-
Name: "
|
|
1898
|
+
export interface Finished extends globalThis.EnumItem {
|
|
1899
|
+
Name: "Finished";
|
|
1892
1900
|
Value: 0;
|
|
1893
1901
|
EnumType: typeof globalThis.Enum.AnimationNodeWaitFor;
|
|
1894
1902
|
}
|
|
1895
|
-
export const
|
|
1903
|
+
export const Finished: Finished;
|
|
1904
|
+
/**
|
|
1905
|
+
* @deprecated renamed to Finished
|
|
1906
|
+
*/
|
|
1907
|
+
export const ClipFinished: Finished;
|
|
1896
1908
|
/**
|
|
1897
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeWaitFor#
|
|
1909
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeWaitFor#Trigger)
|
|
1898
1910
|
*/
|
|
1899
|
-
export interface
|
|
1900
|
-
Name: "
|
|
1911
|
+
export interface Trigger extends globalThis.EnumItem {
|
|
1912
|
+
Name: "Trigger";
|
|
1901
1913
|
Value: 1;
|
|
1902
1914
|
EnumType: typeof globalThis.Enum.AnimationNodeWaitFor;
|
|
1903
1915
|
}
|
|
1904
|
-
export const
|
|
1916
|
+
export const Trigger: Trigger;
|
|
1917
|
+
/**
|
|
1918
|
+
* @deprecated renamed to Trigger
|
|
1919
|
+
*/
|
|
1920
|
+
export const Expression: Trigger;
|
|
1905
1921
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationNodeWaitFor>;
|
|
1906
1922
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodeWaitFor | undefined;
|
|
1907
1923
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeWaitFor | undefined;
|
|
1908
1924
|
}
|
|
1909
|
-
export type AnimationNodeWaitFor = AnimationNodeWaitFor.
|
|
1925
|
+
export type AnimationNodeWaitFor = AnimationNodeWaitFor.Finished | AnimationNodeWaitFor.Trigger;
|
|
1910
1926
|
/**
|
|
1911
1927
|
* The AnimationPriority Enum determines how concurrently-playing AnimationTracks contribute to the final animation.
|
|
1912
1928
|
*
|
|
@@ -3683,6 +3699,8 @@ declare namespace Enum {
|
|
|
3683
3699
|
}
|
|
3684
3700
|
export const Notch: Notch;
|
|
3685
3701
|
/**
|
|
3702
|
+
* Filter that cuts sound above a specified `Frequency`, at a slope of -6dB/octave.
|
|
3703
|
+
*
|
|
3686
3704
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioFilterType#Lowpass6dB)
|
|
3687
3705
|
*/
|
|
3688
3706
|
export interface Lowpass6dB extends globalThis.EnumItem {
|
|
@@ -3730,10 +3748,14 @@ declare namespace Enum {
|
|
|
3730
3748
|
}
|
|
3731
3749
|
export type AudioSimulationFidelity = AudioSimulationFidelity.None | AudioSimulationFidelity.Automatic;
|
|
3732
3750
|
/**
|
|
3751
|
+
* The categorization of an audio asset.
|
|
3752
|
+
*
|
|
3733
3753
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioSubType)
|
|
3734
3754
|
*/
|
|
3735
3755
|
export namespace AudioSubType {
|
|
3736
3756
|
/**
|
|
3757
|
+
* Represents an asset which contains music.
|
|
3758
|
+
*
|
|
3737
3759
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioSubType#Music)
|
|
3738
3760
|
*/
|
|
3739
3761
|
export interface Music extends globalThis.EnumItem {
|
|
@@ -3743,6 +3765,8 @@ declare namespace Enum {
|
|
|
3743
3765
|
}
|
|
3744
3766
|
export const Music: Music;
|
|
3745
3767
|
/**
|
|
3768
|
+
* Represents an asset which is a sound effect.
|
|
3769
|
+
*
|
|
3746
3770
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioSubType#SoundEffect)
|
|
3747
3771
|
*/
|
|
3748
3772
|
export interface SoundEffect extends globalThis.EnumItem {
|
|
@@ -3757,6 +3781,8 @@ declare namespace Enum {
|
|
|
3757
3781
|
}
|
|
3758
3782
|
export type AudioSubType = AudioSubType.Music | AudioSubType.SoundEffect;
|
|
3759
3783
|
/**
|
|
3784
|
+
* For audio effects that use some internal buffering, determines the window-size used.
|
|
3785
|
+
*
|
|
3760
3786
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioWindowSize)
|
|
3761
3787
|
*/
|
|
3762
3788
|
export namespace AudioWindowSize {
|
|
@@ -6305,6 +6331,87 @@ declare namespace Enum {
|
|
|
6305
6331
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CameraType | undefined;
|
|
6306
6332
|
}
|
|
6307
6333
|
export type CameraType = CameraType.Fixed | CameraType.Attach | CameraType.Watch | CameraType.Track | CameraType.Follow | CameraType.Custom | CameraType.Scriptable | CameraType.Orbital;
|
|
6334
|
+
/**
|
|
6335
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CanCollaborateError)
|
|
6336
|
+
*/
|
|
6337
|
+
export namespace CanCollaborateError {
|
|
6338
|
+
/**
|
|
6339
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CanCollaborateError#Invalid)
|
|
6340
|
+
*/
|
|
6341
|
+
export interface Invalid extends globalThis.EnumItem {
|
|
6342
|
+
Name: "Invalid";
|
|
6343
|
+
Value: 0;
|
|
6344
|
+
EnumType: typeof globalThis.Enum.CanCollaborateError;
|
|
6345
|
+
}
|
|
6346
|
+
export const Invalid: Invalid;
|
|
6347
|
+
/**
|
|
6348
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CanCollaborateError#None)
|
|
6349
|
+
*/
|
|
6350
|
+
export interface None extends globalThis.EnumItem {
|
|
6351
|
+
Name: "None";
|
|
6352
|
+
Value: 1;
|
|
6353
|
+
EnumType: typeof globalThis.Enum.CanCollaborateError;
|
|
6354
|
+
}
|
|
6355
|
+
export const None: None;
|
|
6356
|
+
/**
|
|
6357
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CanCollaborateError#NotAgeVerified)
|
|
6358
|
+
*/
|
|
6359
|
+
export interface NotAgeVerified extends globalThis.EnumItem {
|
|
6360
|
+
Name: "NotAgeVerified";
|
|
6361
|
+
Value: 2;
|
|
6362
|
+
EnumType: typeof globalThis.Enum.CanCollaborateError;
|
|
6363
|
+
}
|
|
6364
|
+
export const NotAgeVerified: NotAgeVerified;
|
|
6365
|
+
/**
|
|
6366
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CanCollaborateError#OutsideAgeBucket)
|
|
6367
|
+
*/
|
|
6368
|
+
export interface OutsideAgeBucket extends globalThis.EnumItem {
|
|
6369
|
+
Name: "OutsideAgeBucket";
|
|
6370
|
+
Value: 3;
|
|
6371
|
+
EnumType: typeof globalThis.Enum.CanCollaborateError;
|
|
6372
|
+
}
|
|
6373
|
+
export const OutsideAgeBucket: OutsideAgeBucket;
|
|
6374
|
+
/**
|
|
6375
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CanCollaborateError#TooManyCollaborators)
|
|
6376
|
+
*/
|
|
6377
|
+
export interface TooManyCollaborators extends globalThis.EnumItem {
|
|
6378
|
+
Name: "TooManyCollaborators";
|
|
6379
|
+
Value: 4;
|
|
6380
|
+
EnumType: typeof globalThis.Enum.CanCollaborateError;
|
|
6381
|
+
}
|
|
6382
|
+
export const TooManyCollaborators: TooManyCollaborators;
|
|
6383
|
+
/**
|
|
6384
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CanCollaborateError#PCBlock)
|
|
6385
|
+
*/
|
|
6386
|
+
export interface PCBlock extends globalThis.EnumItem {
|
|
6387
|
+
Name: "PCBlock";
|
|
6388
|
+
Value: 5;
|
|
6389
|
+
EnumType: typeof globalThis.Enum.CanCollaborateError;
|
|
6390
|
+
}
|
|
6391
|
+
export const PCBlock: PCBlock;
|
|
6392
|
+
/**
|
|
6393
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CanCollaborateError#NotFound)
|
|
6394
|
+
*/
|
|
6395
|
+
export interface NotFound extends globalThis.EnumItem {
|
|
6396
|
+
Name: "NotFound";
|
|
6397
|
+
Value: 6;
|
|
6398
|
+
EnumType: typeof globalThis.Enum.CanCollaborateError;
|
|
6399
|
+
}
|
|
6400
|
+
export const NotFound: NotFound;
|
|
6401
|
+
/**
|
|
6402
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CanCollaborateError#OutsideOwnerAgeBucket)
|
|
6403
|
+
*/
|
|
6404
|
+
export interface OutsideOwnerAgeBucket extends globalThis.EnumItem {
|
|
6405
|
+
Name: "OutsideOwnerAgeBucket";
|
|
6406
|
+
Value: 7;
|
|
6407
|
+
EnumType: typeof globalThis.Enum.CanCollaborateError;
|
|
6408
|
+
}
|
|
6409
|
+
export const OutsideOwnerAgeBucket: OutsideOwnerAgeBucket;
|
|
6410
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CanCollaborateError>;
|
|
6411
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CanCollaborateError | undefined;
|
|
6412
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CanCollaborateError | undefined;
|
|
6413
|
+
}
|
|
6414
|
+
export type CanCollaborateError = CanCollaborateError.Invalid | CanCollaborateError.None | CanCollaborateError.NotAgeVerified | CanCollaborateError.OutsideAgeBucket | CanCollaborateError.TooManyCollaborators | CanCollaborateError.PCBlock | CanCollaborateError.NotFound | CanCollaborateError.OutsideOwnerAgeBucket;
|
|
6308
6415
|
/**
|
|
6309
6416
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CaptureGalleryPermission)
|
|
6310
6417
|
*/
|
|
@@ -8938,6 +9045,15 @@ declare namespace Enum {
|
|
|
8938
9045
|
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
8939
9046
|
}
|
|
8940
9047
|
export const PlacelaunchCreatorBan: PlacelaunchCreatorBan;
|
|
9048
|
+
/**
|
|
9049
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#PlacelaunchDeviceBlock)
|
|
9050
|
+
*/
|
|
9051
|
+
export interface PlacelaunchDeviceBlock extends globalThis.EnumItem {
|
|
9052
|
+
Name: "PlacelaunchDeviceBlock";
|
|
9053
|
+
Value: 601;
|
|
9054
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
9055
|
+
}
|
|
9056
|
+
export const PlacelaunchDeviceBlock: PlacelaunchDeviceBlock;
|
|
8941
9057
|
/**
|
|
8942
9058
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#PlacelaunchCustomMessage)
|
|
8943
9059
|
*/
|
|
@@ -9032,7 +9148,7 @@ declare namespace Enum {
|
|
|
9032
9148
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ConnectionError | undefined;
|
|
9033
9149
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ConnectionError | undefined;
|
|
9034
9150
|
}
|
|
9035
|
-
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.PlacelaunchCreatorBan | ConnectionError.PlacelaunchCustomMessage | ConnectionError.PlacelaunchOtherError | ConnectionError.TeleportErrors | ConnectionError.TeleportFailure | ConnectionError.TeleportGameNotFound | ConnectionError.TeleportGameEnded | ConnectionError.TeleportGameFull | ConnectionError.TeleportUnauthorized | ConnectionError.TeleportFlooded | ConnectionError.TeleportIsTeleporting;
|
|
9151
|
+
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.PlacelaunchCreatorBan | ConnectionError.PlacelaunchDeviceBlock | ConnectionError.PlacelaunchCustomMessage | ConnectionError.PlacelaunchOtherError | ConnectionError.TeleportErrors | ConnectionError.TeleportFailure | ConnectionError.TeleportGameNotFound | ConnectionError.TeleportGameEnded | ConnectionError.TeleportGameFull | ConnectionError.TeleportUnauthorized | ConnectionError.TeleportFlooded | ConnectionError.TeleportIsTeleporting;
|
|
9036
9152
|
/**
|
|
9037
9153
|
* Used to determine the connection state of the client to the game server.
|
|
9038
9154
|
*
|
|
@@ -11086,6 +11202,60 @@ declare namespace Enum {
|
|
|
11086
11202
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DialogTone | undefined;
|
|
11087
11203
|
}
|
|
11088
11204
|
export type DialogTone = DialogTone.Neutral | DialogTone.Friendly | DialogTone.Enemy;
|
|
11205
|
+
/**
|
|
11206
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DigitsRigDescriptionSide)
|
|
11207
|
+
*/
|
|
11208
|
+
export namespace DigitsRigDescriptionSide {
|
|
11209
|
+
/**
|
|
11210
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DigitsRigDescriptionSide#None)
|
|
11211
|
+
*/
|
|
11212
|
+
export interface None extends globalThis.EnumItem {
|
|
11213
|
+
Name: "None";
|
|
11214
|
+
Value: 0;
|
|
11215
|
+
EnumType: typeof globalThis.Enum.DigitsRigDescriptionSide;
|
|
11216
|
+
}
|
|
11217
|
+
export const None: None;
|
|
11218
|
+
/**
|
|
11219
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DigitsRigDescriptionSide#Left)
|
|
11220
|
+
*/
|
|
11221
|
+
export interface Left extends globalThis.EnumItem {
|
|
11222
|
+
Name: "Left";
|
|
11223
|
+
Value: 1;
|
|
11224
|
+
EnumType: typeof globalThis.Enum.DigitsRigDescriptionSide;
|
|
11225
|
+
}
|
|
11226
|
+
export const Left: Left;
|
|
11227
|
+
/**
|
|
11228
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DigitsRigDescriptionSide#Right)
|
|
11229
|
+
*/
|
|
11230
|
+
export interface Right extends globalThis.EnumItem {
|
|
11231
|
+
Name: "Right";
|
|
11232
|
+
Value: 2;
|
|
11233
|
+
EnumType: typeof globalThis.Enum.DigitsRigDescriptionSide;
|
|
11234
|
+
}
|
|
11235
|
+
export const Right: Right;
|
|
11236
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DigitsRigDescriptionSide>;
|
|
11237
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DigitsRigDescriptionSide | undefined;
|
|
11238
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DigitsRigDescriptionSide | undefined;
|
|
11239
|
+
}
|
|
11240
|
+
export type DigitsRigDescriptionSide = DigitsRigDescriptionSide.None | DigitsRigDescriptionSide.Left | DigitsRigDescriptionSide.Right;
|
|
11241
|
+
/**
|
|
11242
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DiscountType)
|
|
11243
|
+
*/
|
|
11244
|
+
export namespace DiscountType {
|
|
11245
|
+
/**
|
|
11246
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DiscountType#Uncategorized)
|
|
11247
|
+
*/
|
|
11248
|
+
export interface Uncategorized extends globalThis.EnumItem {
|
|
11249
|
+
Name: "Uncategorized";
|
|
11250
|
+
Value: 0;
|
|
11251
|
+
EnumType: typeof globalThis.Enum.DiscountType;
|
|
11252
|
+
}
|
|
11253
|
+
export const Uncategorized: Uncategorized;
|
|
11254
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DiscountType>;
|
|
11255
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DiscountType | undefined;
|
|
11256
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DiscountType | undefined;
|
|
11257
|
+
}
|
|
11258
|
+
export type DiscountType = DiscountType.Uncategorized;
|
|
11089
11259
|
/**
|
|
11090
11260
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DisplayScalingMode)
|
|
11091
11261
|
*/
|
|
@@ -11166,6 +11336,42 @@ declare namespace Enum {
|
|
|
11166
11336
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DisplaySize | undefined;
|
|
11167
11337
|
}
|
|
11168
11338
|
export type DisplaySize = DisplaySize.Small | DisplaySize.Medium | DisplaySize.Large;
|
|
11339
|
+
/**
|
|
11340
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DomainType)
|
|
11341
|
+
*/
|
|
11342
|
+
export namespace DomainType {
|
|
11343
|
+
/**
|
|
11344
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DomainType#EXPERIENCE)
|
|
11345
|
+
*/
|
|
11346
|
+
export interface EXPERIENCE extends globalThis.EnumItem {
|
|
11347
|
+
Name: "EXPERIENCE";
|
|
11348
|
+
Value: 1;
|
|
11349
|
+
EnumType: typeof globalThis.Enum.DomainType;
|
|
11350
|
+
}
|
|
11351
|
+
export const EXPERIENCE: EXPERIENCE;
|
|
11352
|
+
/**
|
|
11353
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DomainType#GROUP)
|
|
11354
|
+
*/
|
|
11355
|
+
export interface GROUP extends globalThis.EnumItem {
|
|
11356
|
+
Name: "GROUP";
|
|
11357
|
+
Value: 2;
|
|
11358
|
+
EnumType: typeof globalThis.Enum.DomainType;
|
|
11359
|
+
}
|
|
11360
|
+
export const GROUP: GROUP;
|
|
11361
|
+
/**
|
|
11362
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DomainType#OAUTH)
|
|
11363
|
+
*/
|
|
11364
|
+
export interface OAUTH extends globalThis.EnumItem {
|
|
11365
|
+
Name: "OAUTH";
|
|
11366
|
+
Value: 3;
|
|
11367
|
+
EnumType: typeof globalThis.Enum.DomainType;
|
|
11368
|
+
}
|
|
11369
|
+
export const OAUTH: OAUTH;
|
|
11370
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DomainType>;
|
|
11371
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DomainType | undefined;
|
|
11372
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DomainType | undefined;
|
|
11373
|
+
}
|
|
11374
|
+
export type DomainType = DomainType.EXPERIENCE | DomainType.GROUP | DomainType.OAUTH;
|
|
11169
11375
|
/**
|
|
11170
11376
|
* Used by `UIAspectRatioConstraint.DominantAxis` for resizing the object to maintain the aspect ratio.
|
|
11171
11377
|
*
|
|
@@ -12157,6 +12363,33 @@ declare namespace Enum {
|
|
|
12157
12363
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExplosionType | undefined;
|
|
12158
12364
|
}
|
|
12159
12365
|
export type ExplosionType = ExplosionType.NoCraters | ExplosionType.Craters;
|
|
12366
|
+
/**
|
|
12367
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExternalEditorMode)
|
|
12368
|
+
*/
|
|
12369
|
+
export namespace ExternalEditorMode {
|
|
12370
|
+
/**
|
|
12371
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExternalEditorMode#SystemDefault)
|
|
12372
|
+
*/
|
|
12373
|
+
export interface SystemDefault extends globalThis.EnumItem {
|
|
12374
|
+
Name: "SystemDefault";
|
|
12375
|
+
Value: 0;
|
|
12376
|
+
EnumType: typeof globalThis.Enum.ExternalEditorMode;
|
|
12377
|
+
}
|
|
12378
|
+
export const SystemDefault: SystemDefault;
|
|
12379
|
+
/**
|
|
12380
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExternalEditorMode#CustomEditor)
|
|
12381
|
+
*/
|
|
12382
|
+
export interface CustomEditor extends globalThis.EnumItem {
|
|
12383
|
+
Name: "CustomEditor";
|
|
12384
|
+
Value: 1;
|
|
12385
|
+
EnumType: typeof globalThis.Enum.ExternalEditorMode;
|
|
12386
|
+
}
|
|
12387
|
+
export const CustomEditor: CustomEditor;
|
|
12388
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ExternalEditorMode>;
|
|
12389
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ExternalEditorMode | undefined;
|
|
12390
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExternalEditorMode | undefined;
|
|
12391
|
+
}
|
|
12392
|
+
export type ExternalEditorMode = ExternalEditorMode.SystemDefault | ExternalEditorMode.CustomEditor;
|
|
12160
12393
|
/**
|
|
12161
12394
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FACSDataLod)
|
|
12162
12395
|
*/
|
|
@@ -15181,42 +15414,6 @@ declare namespace Enum {
|
|
|
15181
15414
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.GuiType | undefined;
|
|
15182
15415
|
}
|
|
15183
15416
|
export type GuiType = GuiType.Core | GuiType.Custom | GuiType.PlayerNameplates | GuiType.CustomBillboards | GuiType.CoreBillboards;
|
|
15184
|
-
/**
|
|
15185
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HandRigDescriptionSide)
|
|
15186
|
-
*/
|
|
15187
|
-
export namespace HandRigDescriptionSide {
|
|
15188
|
-
/**
|
|
15189
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HandRigDescriptionSide#None)
|
|
15190
|
-
*/
|
|
15191
|
-
export interface None extends globalThis.EnumItem {
|
|
15192
|
-
Name: "None";
|
|
15193
|
-
Value: 0;
|
|
15194
|
-
EnumType: typeof globalThis.Enum.HandRigDescriptionSide;
|
|
15195
|
-
}
|
|
15196
|
-
export const None: None;
|
|
15197
|
-
/**
|
|
15198
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HandRigDescriptionSide#Left)
|
|
15199
|
-
*/
|
|
15200
|
-
export interface Left extends globalThis.EnumItem {
|
|
15201
|
-
Name: "Left";
|
|
15202
|
-
Value: 1;
|
|
15203
|
-
EnumType: typeof globalThis.Enum.HandRigDescriptionSide;
|
|
15204
|
-
}
|
|
15205
|
-
export const Left: Left;
|
|
15206
|
-
/**
|
|
15207
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HandRigDescriptionSide#Right)
|
|
15208
|
-
*/
|
|
15209
|
-
export interface Right extends globalThis.EnumItem {
|
|
15210
|
-
Name: "Right";
|
|
15211
|
-
Value: 2;
|
|
15212
|
-
EnumType: typeof globalThis.Enum.HandRigDescriptionSide;
|
|
15213
|
-
}
|
|
15214
|
-
export const Right: Right;
|
|
15215
|
-
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.HandRigDescriptionSide>;
|
|
15216
|
-
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.HandRigDescriptionSide | undefined;
|
|
15217
|
-
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HandRigDescriptionSide | undefined;
|
|
15218
|
-
}
|
|
15219
|
-
export type HandRigDescriptionSide = HandRigDescriptionSide.None | HandRigDescriptionSide.Left | HandRigDescriptionSide.Right;
|
|
15220
15417
|
/**
|
|
15221
15418
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HandlesStyle)
|
|
15222
15419
|
*/
|
|
@@ -16829,6 +17026,42 @@ declare namespace Enum {
|
|
|
16829
17026
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.InputActionType | undefined;
|
|
16830
17027
|
}
|
|
16831
17028
|
export type InputActionType = InputActionType.Bool | InputActionType.Direction1D | InputActionType.Direction2D | InputActionType.Direction3D | InputActionType.ViewportPosition;
|
|
17029
|
+
/**
|
|
17030
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputSink)
|
|
17031
|
+
*/
|
|
17032
|
+
export namespace InputSink {
|
|
17033
|
+
/**
|
|
17034
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputSink#None)
|
|
17035
|
+
*/
|
|
17036
|
+
export interface None extends globalThis.EnumItem {
|
|
17037
|
+
Name: "None";
|
|
17038
|
+
Value: 0;
|
|
17039
|
+
EnumType: typeof globalThis.Enum.InputSink;
|
|
17040
|
+
}
|
|
17041
|
+
export const None: None;
|
|
17042
|
+
/**
|
|
17043
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputSink#Activate)
|
|
17044
|
+
*/
|
|
17045
|
+
export interface Activate extends globalThis.EnumItem {
|
|
17046
|
+
Name: "Activate";
|
|
17047
|
+
Value: 1;
|
|
17048
|
+
EnumType: typeof globalThis.Enum.InputSink;
|
|
17049
|
+
}
|
|
17050
|
+
export const Activate: Activate;
|
|
17051
|
+
/**
|
|
17052
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputSink#All)
|
|
17053
|
+
*/
|
|
17054
|
+
export interface All extends globalThis.EnumItem {
|
|
17055
|
+
Name: "All";
|
|
17056
|
+
Value: 100;
|
|
17057
|
+
EnumType: typeof globalThis.Enum.InputSink;
|
|
17058
|
+
}
|
|
17059
|
+
export const All: All;
|
|
17060
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.InputSink>;
|
|
17061
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.InputSink | undefined;
|
|
17062
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.InputSink | undefined;
|
|
17063
|
+
}
|
|
17064
|
+
export type InputSink = InputSink.None | InputSink.Activate | InputSink.All;
|
|
16832
17065
|
/**
|
|
16833
17066
|
* The InputType Enum controls the SurfaceInputs of `Part`.
|
|
16834
17067
|
*
|
|
@@ -27814,14 +28047,18 @@ declare namespace Enum {
|
|
|
27814
28047
|
}
|
|
27815
28048
|
export const Neck: Neck;
|
|
27816
28049
|
/**
|
|
27817
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
28050
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Spine)
|
|
27818
28051
|
*/
|
|
27819
|
-
export interface
|
|
27820
|
-
Name: "
|
|
28052
|
+
export interface Spine extends globalThis.EnumItem {
|
|
28053
|
+
Name: "Spine";
|
|
27821
28054
|
Value: 23;
|
|
27822
28055
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27823
28056
|
}
|
|
27824
|
-
export const
|
|
28057
|
+
export const Spine: Spine;
|
|
28058
|
+
/**
|
|
28059
|
+
* @deprecated renamed to Spine
|
|
28060
|
+
*/
|
|
28061
|
+
export const Pelvis: Spine;
|
|
27825
28062
|
/**
|
|
27826
28063
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Chest)
|
|
27827
28064
|
*/
|
|
@@ -27859,28 +28096,171 @@ declare namespace Enum {
|
|
|
27859
28096
|
}
|
|
27860
28097
|
export const RightClavicle: RightClavicle;
|
|
27861
28098
|
/**
|
|
27862
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
28099
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftToeBase)
|
|
27863
28100
|
*/
|
|
27864
|
-
export interface
|
|
27865
|
-
Name: "
|
|
28101
|
+
export interface LeftToeBase extends globalThis.EnumItem {
|
|
28102
|
+
Name: "LeftToeBase";
|
|
27866
28103
|
Value: 28;
|
|
27867
28104
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27868
28105
|
}
|
|
27869
|
-
export const
|
|
28106
|
+
export const LeftToeBase: LeftToeBase;
|
|
27870
28107
|
/**
|
|
27871
|
-
*
|
|
28108
|
+
* @deprecated renamed to LeftToeBase
|
|
27872
28109
|
*/
|
|
27873
|
-
export
|
|
27874
|
-
|
|
28110
|
+
export const LeftToes: LeftToeBase;
|
|
28111
|
+
/**
|
|
28112
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightToeBase)
|
|
28113
|
+
*/
|
|
28114
|
+
export interface RightToeBase extends globalThis.EnumItem {
|
|
28115
|
+
Name: "RightToeBase";
|
|
27875
28116
|
Value: 29;
|
|
27876
28117
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27877
28118
|
}
|
|
27878
|
-
export const
|
|
28119
|
+
export const RightToeBase: RightToeBase;
|
|
28120
|
+
/**
|
|
28121
|
+
* @deprecated renamed to RightToeBase
|
|
28122
|
+
*/
|
|
28123
|
+
export const RightToes: RightToeBase;
|
|
28124
|
+
/**
|
|
28125
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Thumb1)
|
|
28126
|
+
*/
|
|
28127
|
+
export interface Thumb1 extends globalThis.EnumItem {
|
|
28128
|
+
Name: "Thumb1";
|
|
28129
|
+
Value: 30;
|
|
28130
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28131
|
+
}
|
|
28132
|
+
export const Thumb1: Thumb1;
|
|
28133
|
+
/**
|
|
28134
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Thumb2)
|
|
28135
|
+
*/
|
|
28136
|
+
export interface Thumb2 extends globalThis.EnumItem {
|
|
28137
|
+
Name: "Thumb2";
|
|
28138
|
+
Value: 31;
|
|
28139
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28140
|
+
}
|
|
28141
|
+
export const Thumb2: Thumb2;
|
|
28142
|
+
/**
|
|
28143
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Thumb3)
|
|
28144
|
+
*/
|
|
28145
|
+
export interface Thumb3 extends globalThis.EnumItem {
|
|
28146
|
+
Name: "Thumb3";
|
|
28147
|
+
Value: 32;
|
|
28148
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28149
|
+
}
|
|
28150
|
+
export const Thumb3: Thumb3;
|
|
28151
|
+
/**
|
|
28152
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Index1)
|
|
28153
|
+
*/
|
|
28154
|
+
export interface Index1 extends globalThis.EnumItem {
|
|
28155
|
+
Name: "Index1";
|
|
28156
|
+
Value: 33;
|
|
28157
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28158
|
+
}
|
|
28159
|
+
export const Index1: Index1;
|
|
28160
|
+
/**
|
|
28161
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Index2)
|
|
28162
|
+
*/
|
|
28163
|
+
export interface Index2 extends globalThis.EnumItem {
|
|
28164
|
+
Name: "Index2";
|
|
28165
|
+
Value: 34;
|
|
28166
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28167
|
+
}
|
|
28168
|
+
export const Index2: Index2;
|
|
28169
|
+
/**
|
|
28170
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Index3)
|
|
28171
|
+
*/
|
|
28172
|
+
export interface Index3 extends globalThis.EnumItem {
|
|
28173
|
+
Name: "Index3";
|
|
28174
|
+
Value: 35;
|
|
28175
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28176
|
+
}
|
|
28177
|
+
export const Index3: Index3;
|
|
28178
|
+
/**
|
|
28179
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Middle1)
|
|
28180
|
+
*/
|
|
28181
|
+
export interface Middle1 extends globalThis.EnumItem {
|
|
28182
|
+
Name: "Middle1";
|
|
28183
|
+
Value: 36;
|
|
28184
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28185
|
+
}
|
|
28186
|
+
export const Middle1: Middle1;
|
|
28187
|
+
/**
|
|
28188
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Middle2)
|
|
28189
|
+
*/
|
|
28190
|
+
export interface Middle2 extends globalThis.EnumItem {
|
|
28191
|
+
Name: "Middle2";
|
|
28192
|
+
Value: 37;
|
|
28193
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28194
|
+
}
|
|
28195
|
+
export const Middle2: Middle2;
|
|
28196
|
+
/**
|
|
28197
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Middle3)
|
|
28198
|
+
*/
|
|
28199
|
+
export interface Middle3 extends globalThis.EnumItem {
|
|
28200
|
+
Name: "Middle3";
|
|
28201
|
+
Value: 38;
|
|
28202
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28203
|
+
}
|
|
28204
|
+
export const Middle3: Middle3;
|
|
28205
|
+
/**
|
|
28206
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Ring1)
|
|
28207
|
+
*/
|
|
28208
|
+
export interface Ring1 extends globalThis.EnumItem {
|
|
28209
|
+
Name: "Ring1";
|
|
28210
|
+
Value: 39;
|
|
28211
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28212
|
+
}
|
|
28213
|
+
export const Ring1: Ring1;
|
|
28214
|
+
/**
|
|
28215
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Ring2)
|
|
28216
|
+
*/
|
|
28217
|
+
export interface Ring2 extends globalThis.EnumItem {
|
|
28218
|
+
Name: "Ring2";
|
|
28219
|
+
Value: 40;
|
|
28220
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28221
|
+
}
|
|
28222
|
+
export const Ring2: Ring2;
|
|
28223
|
+
/**
|
|
28224
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Ring3)
|
|
28225
|
+
*/
|
|
28226
|
+
export interface Ring3 extends globalThis.EnumItem {
|
|
28227
|
+
Name: "Ring3";
|
|
28228
|
+
Value: 41;
|
|
28229
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28230
|
+
}
|
|
28231
|
+
export const Ring3: Ring3;
|
|
28232
|
+
/**
|
|
28233
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Pinky1)
|
|
28234
|
+
*/
|
|
28235
|
+
export interface Pinky1 extends globalThis.EnumItem {
|
|
28236
|
+
Name: "Pinky1";
|
|
28237
|
+
Value: 42;
|
|
28238
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28239
|
+
}
|
|
28240
|
+
export const Pinky1: Pinky1;
|
|
28241
|
+
/**
|
|
28242
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Pinky2)
|
|
28243
|
+
*/
|
|
28244
|
+
export interface Pinky2 extends globalThis.EnumItem {
|
|
28245
|
+
Name: "Pinky2";
|
|
28246
|
+
Value: 43;
|
|
28247
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28248
|
+
}
|
|
28249
|
+
export const Pinky2: Pinky2;
|
|
28250
|
+
/**
|
|
28251
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Pinky3)
|
|
28252
|
+
*/
|
|
28253
|
+
export interface Pinky3 extends globalThis.EnumItem {
|
|
28254
|
+
Name: "Pinky3";
|
|
28255
|
+
Value: 44;
|
|
28256
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28257
|
+
}
|
|
28258
|
+
export const Pinky3: Pinky3;
|
|
27879
28259
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RigLabel>;
|
|
27880
28260
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RigLabel | undefined;
|
|
27881
28261
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RigLabel | undefined;
|
|
27882
28262
|
}
|
|
27883
|
-
export type RigLabel = RigLabel.Invalid | RigLabel.Root | RigLabel.LeftHip | RigLabel.LeftKnee | RigLabel.LeftAnkle | RigLabel.RightHip | RigLabel.RightKnee | RigLabel.RightAnkle | RigLabel.Waist | RigLabel.LeftShoulder | RigLabel.LeftElbow | RigLabel.LeftWrist | RigLabel.RightShoulder | RigLabel.RightElbow | RigLabel.RightWrist | RigLabel.Neck | RigLabel.
|
|
28263
|
+
export type RigLabel = RigLabel.Invalid | RigLabel.Root | RigLabel.LeftHip | RigLabel.LeftKnee | RigLabel.LeftAnkle | RigLabel.RightHip | RigLabel.RightKnee | RigLabel.RightAnkle | RigLabel.Waist | RigLabel.LeftShoulder | RigLabel.LeftElbow | RigLabel.LeftWrist | RigLabel.RightShoulder | RigLabel.RightElbow | RigLabel.RightWrist | RigLabel.Neck | RigLabel.Spine | RigLabel.Chest | RigLabel.HeadBase | RigLabel.LeftClavicle | RigLabel.RightClavicle | RigLabel.LeftToeBase | RigLabel.RightToeBase | RigLabel.Thumb1 | RigLabel.Thumb2 | RigLabel.Thumb3 | RigLabel.Index1 | RigLabel.Index2 | RigLabel.Index3 | RigLabel.Middle1 | RigLabel.Middle2 | RigLabel.Middle3 | RigLabel.Ring1 | RigLabel.Ring2 | RigLabel.Ring3 | RigLabel.Pinky1 | RigLabel.Pinky2 | RigLabel.Pinky3;
|
|
27884
28264
|
/**
|
|
27885
28265
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigScale)
|
|
27886
28266
|
*/
|
|
@@ -29116,15 +29496,6 @@ declare namespace Enum {
|
|
|
29116
29496
|
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
29117
29497
|
}
|
|
29118
29498
|
export const AccessOutsideWrite: AccessOutsideWrite;
|
|
29119
|
-
/**
|
|
29120
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#AssetRequire)
|
|
29121
|
-
*/
|
|
29122
|
-
export interface AssetRequire extends globalThis.EnumItem {
|
|
29123
|
-
Name: "AssetRequire";
|
|
29124
|
-
Value: 3;
|
|
29125
|
-
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
29126
|
-
}
|
|
29127
|
-
export const AssetRequire: AssetRequire;
|
|
29128
29499
|
/**
|
|
29129
29500
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#LoadString)
|
|
29130
29501
|
*/
|
|
@@ -29233,15 +29604,6 @@ declare namespace Enum {
|
|
|
29233
29604
|
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
29234
29605
|
}
|
|
29235
29606
|
export const Animation: Animation;
|
|
29236
|
-
/**
|
|
29237
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#Avatar)
|
|
29238
|
-
*/
|
|
29239
|
-
export interface Avatar extends globalThis.EnumItem {
|
|
29240
|
-
Name: "Avatar";
|
|
29241
|
-
Value: 16;
|
|
29242
|
-
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
29243
|
-
}
|
|
29244
|
-
export const Avatar: Avatar;
|
|
29245
29607
|
/**
|
|
29246
29608
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#Input)
|
|
29247
29609
|
*/
|
|
@@ -29548,11 +29910,51 @@ declare namespace Enum {
|
|
|
29548
29910
|
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
29549
29911
|
}
|
|
29550
29912
|
export const AvatarBehavior: AvatarBehavior;
|
|
29913
|
+
/**
|
|
29914
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#AvatarAppearance)
|
|
29915
|
+
*/
|
|
29916
|
+
export interface AvatarAppearance extends globalThis.EnumItem {
|
|
29917
|
+
Name: "AvatarAppearance";
|
|
29918
|
+
Value: 51;
|
|
29919
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
29920
|
+
}
|
|
29921
|
+
export const AvatarAppearance: AvatarAppearance;
|
|
29922
|
+
/**
|
|
29923
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#LoadUnownedAsset)
|
|
29924
|
+
*/
|
|
29925
|
+
export interface LoadUnownedAsset extends globalThis.EnumItem {
|
|
29926
|
+
Name: "LoadUnownedAsset";
|
|
29927
|
+
Value: 52;
|
|
29928
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
29929
|
+
}
|
|
29930
|
+
export const LoadUnownedAsset: LoadUnownedAsset;
|
|
29931
|
+
/**
|
|
29932
|
+
* **Deprecated:**
|
|
29933
|
+
*
|
|
29934
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#AssetRequire)
|
|
29935
|
+
*/
|
|
29936
|
+
export interface AssetRequire extends globalThis.EnumItem {
|
|
29937
|
+
Name: "AssetRequire";
|
|
29938
|
+
Value: 3;
|
|
29939
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
29940
|
+
}
|
|
29941
|
+
export const AssetRequire: AssetRequire;
|
|
29942
|
+
/**
|
|
29943
|
+
* **Deprecated:**
|
|
29944
|
+
*
|
|
29945
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#Avatar)
|
|
29946
|
+
*/
|
|
29947
|
+
export interface Avatar extends globalThis.EnumItem {
|
|
29948
|
+
Name: "Avatar";
|
|
29949
|
+
Value: 16;
|
|
29950
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
29951
|
+
}
|
|
29952
|
+
export const Avatar: Avatar;
|
|
29551
29953
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SecurityCapability>;
|
|
29552
29954
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SecurityCapability | undefined;
|
|
29553
29955
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SecurityCapability | undefined;
|
|
29554
29956
|
}
|
|
29555
|
-
export type SecurityCapability = SecurityCapability.RunClientScript | SecurityCapability.RunServerScript | SecurityCapability.AccessOutsideWrite | SecurityCapability.
|
|
29957
|
+
export type SecurityCapability = SecurityCapability.RunClientScript | SecurityCapability.RunServerScript | SecurityCapability.AccessOutsideWrite | SecurityCapability.LoadString | SecurityCapability.ScriptGlobals | SecurityCapability.CreateInstances | SecurityCapability.Basic | SecurityCapability.Audio | SecurityCapability.DataStore | SecurityCapability.Network | SecurityCapability.Physics | SecurityCapability.UI | SecurityCapability.CSG | SecurityCapability.Chat | SecurityCapability.Animation | SecurityCapability.Input | SecurityCapability.Environment | SecurityCapability.RemoteEvent | SecurityCapability.LegacySound | SecurityCapability.Players | SecurityCapability.CapabilityControl | SecurityCapability.Plugin | SecurityCapability.LocalUser | SecurityCapability.WritePlayer | SecurityCapability.RobloxScript | SecurityCapability.RobloxEngine | SecurityCapability.Unassigned | SecurityCapability.InternalTest | SecurityCapability.PluginOrOpenCloud | SecurityCapability.Assistant | SecurityCapability.RemoteCommand | SecurityCapability.AssetRead | SecurityCapability.AssetManagement | SecurityCapability.DynamicGeneration | SecurityCapability.PlatformAvatarEditing | SecurityCapability.AssetCreateUpdate | SecurityCapability.Capture | SecurityCapability.SensitiveInput | SecurityCapability.Monetization | SecurityCapability.LoadOwnedAsset | SecurityCapability.Social | SecurityCapability.ServerCommunication | SecurityCapability.Logging | SecurityCapability.PromptExternalPurchase | SecurityCapability.Groups | SecurityCapability.Teleport | SecurityCapability.Consequences | SecurityCapability.Material | SecurityCapability.AvatarBehavior | SecurityCapability.AvatarAppearance | SecurityCapability.LoadUnownedAsset | SecurityCapability.AssetRequire | SecurityCapability.Avatar;
|
|
29556
29958
|
/**
|
|
29557
29959
|
* Customization options for gamepad selection when `GuiBase2d.SelectionGroup` is true.
|
|
29558
29960
|
*
|
|
@@ -30031,6 +30433,33 @@ declare namespace Enum {
|
|
|
30031
30433
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SizeConstraint | undefined;
|
|
30032
30434
|
}
|
|
30033
30435
|
export type SizeConstraint = SizeConstraint.RelativeXY | SizeConstraint.RelativeXX | SizeConstraint.RelativeYY;
|
|
30436
|
+
/**
|
|
30437
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SolidPrimitiveType)
|
|
30438
|
+
*/
|
|
30439
|
+
export namespace SolidPrimitiveType {
|
|
30440
|
+
/**
|
|
30441
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SolidPrimitiveType#Capsule)
|
|
30442
|
+
*/
|
|
30443
|
+
export interface Capsule extends globalThis.EnumItem {
|
|
30444
|
+
Name: "Capsule";
|
|
30445
|
+
Value: 5;
|
|
30446
|
+
EnumType: typeof globalThis.Enum.SolidPrimitiveType;
|
|
30447
|
+
}
|
|
30448
|
+
export const Capsule: Capsule;
|
|
30449
|
+
/**
|
|
30450
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SolidPrimitiveType#Cone)
|
|
30451
|
+
*/
|
|
30452
|
+
export interface Cone extends globalThis.EnumItem {
|
|
30453
|
+
Name: "Cone";
|
|
30454
|
+
Value: 6;
|
|
30455
|
+
EnumType: typeof globalThis.Enum.SolidPrimitiveType;
|
|
30456
|
+
}
|
|
30457
|
+
export const Cone: Cone;
|
|
30458
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SolidPrimitiveType>;
|
|
30459
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SolidPrimitiveType | undefined;
|
|
30460
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SolidPrimitiveType | undefined;
|
|
30461
|
+
}
|
|
30462
|
+
export type SolidPrimitiveType = SolidPrimitiveType.Capsule | SolidPrimitiveType.Cone;
|
|
30034
30463
|
/**
|
|
30035
30464
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SolverConvergenceMetricType)
|
|
30036
30465
|
*/
|
|
@@ -36248,11 +36677,29 @@ declare namespace Enum {
|
|
|
36248
36677
|
EnumType: typeof globalThis.Enum.UploadCaptureResult;
|
|
36249
36678
|
}
|
|
36250
36679
|
export const UploadQuotaReached: UploadQuotaReached;
|
|
36680
|
+
/**
|
|
36681
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UploadCaptureResult#UploadPending)
|
|
36682
|
+
*/
|
|
36683
|
+
export interface UploadPending extends globalThis.EnumItem {
|
|
36684
|
+
Name: "UploadPending";
|
|
36685
|
+
Value: 6;
|
|
36686
|
+
EnumType: typeof globalThis.Enum.UploadCaptureResult;
|
|
36687
|
+
}
|
|
36688
|
+
export const UploadPending: UploadPending;
|
|
36689
|
+
/**
|
|
36690
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UploadCaptureResult#UploadFailed)
|
|
36691
|
+
*/
|
|
36692
|
+
export interface UploadFailed extends globalThis.EnumItem {
|
|
36693
|
+
Name: "UploadFailed";
|
|
36694
|
+
Value: 7;
|
|
36695
|
+
EnumType: typeof globalThis.Enum.UploadCaptureResult;
|
|
36696
|
+
}
|
|
36697
|
+
export const UploadFailed: UploadFailed;
|
|
36251
36698
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UploadCaptureResult>;
|
|
36252
36699
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.UploadCaptureResult | undefined;
|
|
36253
36700
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UploadCaptureResult | undefined;
|
|
36254
36701
|
}
|
|
36255
|
-
export type UploadCaptureResult = UploadCaptureResult.Success | UploadCaptureResult.NeedPermission | UploadCaptureResult.CaptureModerated | UploadCaptureResult.CaptureNotInGallery | UploadCaptureResult.IneligibleCapture | UploadCaptureResult.UploadQuotaReached;
|
|
36702
|
+
export type UploadCaptureResult = UploadCaptureResult.Success | UploadCaptureResult.NeedPermission | UploadCaptureResult.CaptureModerated | UploadCaptureResult.CaptureNotInGallery | UploadCaptureResult.IneligibleCapture | UploadCaptureResult.UploadQuotaReached | UploadCaptureResult.UploadPending | UploadCaptureResult.UploadFailed;
|
|
36256
36703
|
/**
|
|
36257
36704
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UsageContext)
|
|
36258
36705
|
*/
|
|
@@ -37975,10 +38422,14 @@ declare namespace Enum {
|
|
|
37975
38422
|
}
|
|
37976
38423
|
export type VoiceRccReconnectReason = VoiceRccReconnectReason.Unknown | VoiceRccReconnectReason.Migration | VoiceRccReconnectReason.CloseRoom;
|
|
37977
38424
|
/**
|
|
38425
|
+
* Controls how the engine renders volumetric audio effects.
|
|
38426
|
+
*
|
|
37978
38427
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio)
|
|
37979
38428
|
*/
|
|
37980
38429
|
export namespace VolumetricAudio {
|
|
37981
38430
|
/**
|
|
38431
|
+
* Volumetric audio is disabled; sound emanates from a single point.
|
|
38432
|
+
*
|
|
37982
38433
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio#Disabled)
|
|
37983
38434
|
*/
|
|
37984
38435
|
export interface Disabled extends globalThis.EnumItem {
|
|
@@ -37988,6 +38439,8 @@ declare namespace Enum {
|
|
|
37988
38439
|
}
|
|
37989
38440
|
export const Disabled: Disabled;
|
|
37990
38441
|
/**
|
|
38442
|
+
* Currently equivalent to `VolumetricAudio.Disabled`.
|
|
38443
|
+
*
|
|
37991
38444
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio#Automatic)
|
|
37992
38445
|
*/
|
|
37993
38446
|
export interface Automatic extends globalThis.EnumItem {
|
|
@@ -37997,6 +38450,8 @@ declare namespace Enum {
|
|
|
37997
38450
|
}
|
|
37998
38451
|
export const Automatic: Automatic;
|
|
37999
38452
|
/**
|
|
38453
|
+
* Volumetric audio is enabled; sound emanates from the object's volume.
|
|
38454
|
+
*
|
|
38000
38455
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio#Enabled)
|
|
38001
38456
|
*/
|
|
38002
38457
|
export interface Enabled extends globalThis.EnumItem {
|