@rbxts/types 1.0.910 → 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 +309 -118
- package/include/generated/PluginSecurity.d.ts +58 -2
- package/include/generated/enums.d.ts +120 -14
- package/package.json +1 -1
|
@@ -12,6 +12,7 @@ interface Services {
|
|
|
12
12
|
AnimationFromVideoCreatorService: AnimationFromVideoCreatorService;
|
|
13
13
|
AnimationFromVideoCreatorStudioService: AnimationFromVideoCreatorStudioService;
|
|
14
14
|
AnnotationsService: AnnotationsService;
|
|
15
|
+
AppAgeSignalsService: AppAgeSignalsService;
|
|
15
16
|
AppLifecycleObserverService: AppLifecycleObserverService;
|
|
16
17
|
AppRatingPromptService: AppRatingPromptService;
|
|
17
18
|
AppUpdateService: AppUpdateService;
|
|
@@ -87,6 +88,7 @@ interface Services {
|
|
|
87
88
|
GenerationService: GenerationService;
|
|
88
89
|
GenericChallengeService: GenericChallengeService;
|
|
89
90
|
GeometryService: GeometryService;
|
|
91
|
+
GongService: GongService;
|
|
90
92
|
GroupService: GroupService;
|
|
91
93
|
GuiService: GuiService;
|
|
92
94
|
HapticService: HapticService;
|
|
@@ -757,6 +759,7 @@ interface Instances extends Services, CreatableInstances {
|
|
|
757
759
|
SyncScriptBuilder: SyncScriptBuilder;
|
|
758
760
|
TeleportAsyncResult: TeleportAsyncResult;
|
|
759
761
|
Terrain: Terrain;
|
|
762
|
+
TestCase: TestCase;
|
|
760
763
|
TextChatConfigurations: TextChatConfigurations;
|
|
761
764
|
TextChatMessage: TextChatMessage;
|
|
762
765
|
TextFilterResult: TextFilterResult;
|
|
@@ -1468,6 +1471,21 @@ interface AnnotationsService extends Instance {
|
|
|
1468
1471
|
*/
|
|
1469
1472
|
readonly _nominal_AnnotationsService: unique symbol;
|
|
1470
1473
|
}
|
|
1474
|
+
/**
|
|
1475
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
1476
|
+
*
|
|
1477
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AppAgeSignalsService)
|
|
1478
|
+
*/
|
|
1479
|
+
interface AppAgeSignalsService extends Instance {
|
|
1480
|
+
/**
|
|
1481
|
+
* **DO NOT USE!**
|
|
1482
|
+
*
|
|
1483
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1484
|
+
* @hidden
|
|
1485
|
+
* @deprecated
|
|
1486
|
+
*/
|
|
1487
|
+
readonly _nominal_AppAgeSignalsService: unique symbol;
|
|
1488
|
+
}
|
|
1471
1489
|
/**
|
|
1472
1490
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
1473
1491
|
*
|
|
@@ -1891,6 +1909,8 @@ interface AudioFocusService extends Instance {
|
|
|
1891
1909
|
readonly _nominal_AudioFocusService: unique symbol;
|
|
1892
1910
|
}
|
|
1893
1911
|
/**
|
|
1912
|
+
* Mutes audio streams that fall below a certain volume threshold.
|
|
1913
|
+
*
|
|
1894
1914
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate)
|
|
1895
1915
|
*/
|
|
1896
1916
|
interface AudioGate extends Instance {
|
|
@@ -2221,7 +2241,7 @@ interface AvatarCreationService extends Instance {
|
|
|
2221
2241
|
/**
|
|
2222
2242
|
* A service to support developer Avatar Editors.
|
|
2223
2243
|
*
|
|
2224
|
-
* - **Tags**: NotCreatable, Service
|
|
2244
|
+
* - **Tags**: NotCreatable, Service
|
|
2225
2245
|
*
|
|
2226
2246
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService)
|
|
2227
2247
|
*/
|
|
@@ -3108,7 +3128,7 @@ interface ChangeHistoryService extends Instance {
|
|
|
3108
3128
|
*
|
|
3109
3129
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#FinishRecording)
|
|
3110
3130
|
* @param this **Must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
|
|
3111
|
-
* @param identifier Identifies the recording from the previous call to `TryBeginRecording()`. If the operation is `
|
|
3131
|
+
* @param identifier Identifies the recording from the previous call to `TryBeginRecording()`. If the operation is `FinishRecordingOperation.Cancel`, this value is ignored, and the recording is determined by context.
|
|
3112
3132
|
* @param operation Specifies the operation to take.
|
|
3113
3133
|
* @param finalOptions Optional table of values to pass to `OnFinishRecording`.
|
|
3114
3134
|
*/
|
|
@@ -6098,6 +6118,21 @@ interface OrderedDataStore extends GlobalDataStore {
|
|
|
6098
6118
|
SetAsync(this: OrderedDataStore, key: string, value?: unknown): void;
|
|
6099
6119
|
UpdateAsync(this: OrderedDataStore, key: string, transformFunction: (oldValue: number | undefined) => number | undefined): number | undefined;
|
|
6100
6120
|
}
|
|
6121
|
+
/**
|
|
6122
|
+
* - **Tags**: NotCreatable, Service
|
|
6123
|
+
*
|
|
6124
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GongService)
|
|
6125
|
+
*/
|
|
6126
|
+
interface GongService extends Instance {
|
|
6127
|
+
/**
|
|
6128
|
+
* **DO NOT USE!**
|
|
6129
|
+
*
|
|
6130
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
6131
|
+
* @hidden
|
|
6132
|
+
* @deprecated
|
|
6133
|
+
*/
|
|
6134
|
+
readonly _nominal_GongService: unique symbol;
|
|
6135
|
+
}
|
|
6101
6136
|
/**
|
|
6102
6137
|
* GroupService is a service that allows developers to fetch information about a Roblox group from within a game.
|
|
6103
6138
|
*
|
|
@@ -14013,6 +14048,12 @@ interface StudioTestService extends Instance {
|
|
|
14013
14048
|
* @deprecated
|
|
14014
14049
|
*/
|
|
14015
14050
|
readonly _nominal_StudioTestService: unique symbol;
|
|
14051
|
+
/**
|
|
14052
|
+
* - **ThreadSafety**: ReadSafe
|
|
14053
|
+
*
|
|
14054
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioTestService#EditModeActive)
|
|
14055
|
+
*/
|
|
14056
|
+
EditModeActive: boolean;
|
|
14016
14057
|
/**
|
|
14017
14058
|
* - **ThreadSafety**: Unsafe
|
|
14018
14059
|
* - **Tags**: Yields
|
|
@@ -14598,6 +14639,21 @@ interface TerrainRegion extends Instance {
|
|
|
14598
14639
|
*/
|
|
14599
14640
|
ConvertToSmooth(this: TerrainRegion): void;
|
|
14600
14641
|
}
|
|
14642
|
+
/**
|
|
14643
|
+
* - **Tags**: NotCreatable
|
|
14644
|
+
*
|
|
14645
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestCase)
|
|
14646
|
+
*/
|
|
14647
|
+
interface TestCase extends Instance {
|
|
14648
|
+
/**
|
|
14649
|
+
* **DO NOT USE!**
|
|
14650
|
+
*
|
|
14651
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
14652
|
+
* @hidden
|
|
14653
|
+
* @deprecated
|
|
14654
|
+
*/
|
|
14655
|
+
readonly _nominal_TestCase: unique symbol;
|
|
14656
|
+
}
|
|
14601
14657
|
/**
|
|
14602
14658
|
* A service used by Roblox to run controlled tests of the engine. It is available for developers to use, to a limited degree.
|
|
14603
14659
|
*
|
|
@@ -3699,6 +3699,8 @@ declare namespace Enum {
|
|
|
3699
3699
|
}
|
|
3700
3700
|
export const Notch: Notch;
|
|
3701
3701
|
/**
|
|
3702
|
+
* Filter that cuts sound above a specified `Frequency`, at a slope of -6dB/octave.
|
|
3703
|
+
*
|
|
3702
3704
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioFilterType#Lowpass6dB)
|
|
3703
3705
|
*/
|
|
3704
3706
|
export interface Lowpass6dB extends globalThis.EnumItem {
|
|
@@ -3746,10 +3748,14 @@ declare namespace Enum {
|
|
|
3746
3748
|
}
|
|
3747
3749
|
export type AudioSimulationFidelity = AudioSimulationFidelity.None | AudioSimulationFidelity.Automatic;
|
|
3748
3750
|
/**
|
|
3751
|
+
* The categorization of an audio asset.
|
|
3752
|
+
*
|
|
3749
3753
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioSubType)
|
|
3750
3754
|
*/
|
|
3751
3755
|
export namespace AudioSubType {
|
|
3752
3756
|
/**
|
|
3757
|
+
* Represents an asset which contains music.
|
|
3758
|
+
*
|
|
3753
3759
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioSubType#Music)
|
|
3754
3760
|
*/
|
|
3755
3761
|
export interface Music extends globalThis.EnumItem {
|
|
@@ -3759,6 +3765,8 @@ declare namespace Enum {
|
|
|
3759
3765
|
}
|
|
3760
3766
|
export const Music: Music;
|
|
3761
3767
|
/**
|
|
3768
|
+
* Represents an asset which is a sound effect.
|
|
3769
|
+
*
|
|
3762
3770
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioSubType#SoundEffect)
|
|
3763
3771
|
*/
|
|
3764
3772
|
export interface SoundEffect extends globalThis.EnumItem {
|
|
@@ -3773,6 +3781,8 @@ declare namespace Enum {
|
|
|
3773
3781
|
}
|
|
3774
3782
|
export type AudioSubType = AudioSubType.Music | AudioSubType.SoundEffect;
|
|
3775
3783
|
/**
|
|
3784
|
+
* For audio effects that use some internal buffering, determines the window-size used.
|
|
3785
|
+
*
|
|
3776
3786
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioWindowSize)
|
|
3777
3787
|
*/
|
|
3778
3788
|
export namespace AudioWindowSize {
|
|
@@ -9035,6 +9045,15 @@ declare namespace Enum {
|
|
|
9035
9045
|
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
9036
9046
|
}
|
|
9037
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;
|
|
9038
9057
|
/**
|
|
9039
9058
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#PlacelaunchCustomMessage)
|
|
9040
9059
|
*/
|
|
@@ -9129,7 +9148,7 @@ declare namespace Enum {
|
|
|
9129
9148
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ConnectionError | undefined;
|
|
9130
9149
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ConnectionError | undefined;
|
|
9131
9150
|
}
|
|
9132
|
-
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;
|
|
9133
9152
|
/**
|
|
9134
9153
|
* Used to determine the connection state of the client to the game server.
|
|
9135
9154
|
*
|
|
@@ -11317,6 +11336,42 @@ declare namespace Enum {
|
|
|
11317
11336
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DisplaySize | undefined;
|
|
11318
11337
|
}
|
|
11319
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;
|
|
11320
11375
|
/**
|
|
11321
11376
|
* Used by `UIAspectRatioConstraint.DominantAxis` for resizing the object to maintain the aspect ratio.
|
|
11322
11377
|
*
|
|
@@ -12308,6 +12363,33 @@ declare namespace Enum {
|
|
|
12308
12363
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExplosionType | undefined;
|
|
12309
12364
|
}
|
|
12310
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;
|
|
12311
12393
|
/**
|
|
12312
12394
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FACSDataLod)
|
|
12313
12395
|
*/
|
|
@@ -27965,14 +28047,18 @@ declare namespace Enum {
|
|
|
27965
28047
|
}
|
|
27966
28048
|
export const Neck: Neck;
|
|
27967
28049
|
/**
|
|
27968
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
28050
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Spine)
|
|
27969
28051
|
*/
|
|
27970
|
-
export interface
|
|
27971
|
-
Name: "
|
|
28052
|
+
export interface Spine extends globalThis.EnumItem {
|
|
28053
|
+
Name: "Spine";
|
|
27972
28054
|
Value: 23;
|
|
27973
28055
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27974
28056
|
}
|
|
27975
|
-
export const
|
|
28057
|
+
export const Spine: Spine;
|
|
28058
|
+
/**
|
|
28059
|
+
* @deprecated renamed to Spine
|
|
28060
|
+
*/
|
|
28061
|
+
export const Pelvis: Spine;
|
|
27976
28062
|
/**
|
|
27977
28063
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Chest)
|
|
27978
28064
|
*/
|
|
@@ -28010,23 +28096,31 @@ declare namespace Enum {
|
|
|
28010
28096
|
}
|
|
28011
28097
|
export const RightClavicle: RightClavicle;
|
|
28012
28098
|
/**
|
|
28013
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
28099
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftToeBase)
|
|
28014
28100
|
*/
|
|
28015
|
-
export interface
|
|
28016
|
-
Name: "
|
|
28101
|
+
export interface LeftToeBase extends globalThis.EnumItem {
|
|
28102
|
+
Name: "LeftToeBase";
|
|
28017
28103
|
Value: 28;
|
|
28018
28104
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28019
28105
|
}
|
|
28020
|
-
export const
|
|
28106
|
+
export const LeftToeBase: LeftToeBase;
|
|
28021
28107
|
/**
|
|
28022
|
-
*
|
|
28108
|
+
* @deprecated renamed to LeftToeBase
|
|
28023
28109
|
*/
|
|
28024
|
-
export
|
|
28025
|
-
|
|
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";
|
|
28026
28116
|
Value: 29;
|
|
28027
28117
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28028
28118
|
}
|
|
28029
|
-
export const
|
|
28119
|
+
export const RightToeBase: RightToeBase;
|
|
28120
|
+
/**
|
|
28121
|
+
* @deprecated renamed to RightToeBase
|
|
28122
|
+
*/
|
|
28123
|
+
export const RightToes: RightToeBase;
|
|
28030
28124
|
/**
|
|
28031
28125
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Thumb1)
|
|
28032
28126
|
*/
|
|
@@ -28166,7 +28260,7 @@ declare namespace Enum {
|
|
|
28166
28260
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RigLabel | undefined;
|
|
28167
28261
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RigLabel | undefined;
|
|
28168
28262
|
}
|
|
28169
|
-
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;
|
|
28170
28264
|
/**
|
|
28171
28265
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigScale)
|
|
28172
28266
|
*/
|
|
@@ -29835,6 +29929,8 @@ declare namespace Enum {
|
|
|
29835
29929
|
}
|
|
29836
29930
|
export const LoadUnownedAsset: LoadUnownedAsset;
|
|
29837
29931
|
/**
|
|
29932
|
+
* **Deprecated:**
|
|
29933
|
+
*
|
|
29838
29934
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#AssetRequire)
|
|
29839
29935
|
*/
|
|
29840
29936
|
export interface AssetRequire extends globalThis.EnumItem {
|
|
@@ -29844,6 +29940,8 @@ declare namespace Enum {
|
|
|
29844
29940
|
}
|
|
29845
29941
|
export const AssetRequire: AssetRequire;
|
|
29846
29942
|
/**
|
|
29943
|
+
* **Deprecated:**
|
|
29944
|
+
*
|
|
29847
29945
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#Avatar)
|
|
29848
29946
|
*/
|
|
29849
29947
|
export interface Avatar extends globalThis.EnumItem {
|
|
@@ -38324,10 +38422,14 @@ declare namespace Enum {
|
|
|
38324
38422
|
}
|
|
38325
38423
|
export type VoiceRccReconnectReason = VoiceRccReconnectReason.Unknown | VoiceRccReconnectReason.Migration | VoiceRccReconnectReason.CloseRoom;
|
|
38326
38424
|
/**
|
|
38425
|
+
* Controls how the engine renders volumetric audio effects.
|
|
38426
|
+
*
|
|
38327
38427
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio)
|
|
38328
38428
|
*/
|
|
38329
38429
|
export namespace VolumetricAudio {
|
|
38330
38430
|
/**
|
|
38431
|
+
* Volumetric audio is disabled; sound emanates from a single point.
|
|
38432
|
+
*
|
|
38331
38433
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio#Disabled)
|
|
38332
38434
|
*/
|
|
38333
38435
|
export interface Disabled extends globalThis.EnumItem {
|
|
@@ -38337,6 +38439,8 @@ declare namespace Enum {
|
|
|
38337
38439
|
}
|
|
38338
38440
|
export const Disabled: Disabled;
|
|
38339
38441
|
/**
|
|
38442
|
+
* Currently equivalent to `VolumetricAudio.Disabled`.
|
|
38443
|
+
*
|
|
38340
38444
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio#Automatic)
|
|
38341
38445
|
*/
|
|
38342
38446
|
export interface Automatic extends globalThis.EnumItem {
|
|
@@ -38346,6 +38450,8 @@ declare namespace Enum {
|
|
|
38346
38450
|
}
|
|
38347
38451
|
export const Automatic: Automatic;
|
|
38348
38452
|
/**
|
|
38453
|
+
* Volumetric audio is enabled; sound emanates from the object's volume.
|
|
38454
|
+
*
|
|
38349
38455
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio#Enabled)
|
|
38350
38456
|
*/
|
|
38351
38457
|
export interface Enabled extends globalThis.EnumItem {
|