@rbxts/types 1.0.908 → 1.0.910
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 +529 -360
- package/include/generated/PluginSecurity.d.ts +96 -52
- package/include/generated/enums.d.ts +686 -157
- 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;
|
|
1896
1904
|
/**
|
|
1897
|
-
*
|
|
1905
|
+
* @deprecated renamed to Finished
|
|
1898
1906
|
*/
|
|
1899
|
-
export
|
|
1900
|
-
|
|
1907
|
+
export const ClipFinished: Finished;
|
|
1908
|
+
/**
|
|
1909
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeWaitFor#Trigger)
|
|
1910
|
+
*/
|
|
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
|
*
|
|
@@ -6305,6 +6321,87 @@ declare namespace Enum {
|
|
|
6305
6321
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CameraType | undefined;
|
|
6306
6322
|
}
|
|
6307
6323
|
export type CameraType = CameraType.Fixed | CameraType.Attach | CameraType.Watch | CameraType.Track | CameraType.Follow | CameraType.Custom | CameraType.Scriptable | CameraType.Orbital;
|
|
6324
|
+
/**
|
|
6325
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CanCollaborateError)
|
|
6326
|
+
*/
|
|
6327
|
+
export namespace CanCollaborateError {
|
|
6328
|
+
/**
|
|
6329
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CanCollaborateError#Invalid)
|
|
6330
|
+
*/
|
|
6331
|
+
export interface Invalid extends globalThis.EnumItem {
|
|
6332
|
+
Name: "Invalid";
|
|
6333
|
+
Value: 0;
|
|
6334
|
+
EnumType: typeof globalThis.Enum.CanCollaborateError;
|
|
6335
|
+
}
|
|
6336
|
+
export const Invalid: Invalid;
|
|
6337
|
+
/**
|
|
6338
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CanCollaborateError#None)
|
|
6339
|
+
*/
|
|
6340
|
+
export interface None extends globalThis.EnumItem {
|
|
6341
|
+
Name: "None";
|
|
6342
|
+
Value: 1;
|
|
6343
|
+
EnumType: typeof globalThis.Enum.CanCollaborateError;
|
|
6344
|
+
}
|
|
6345
|
+
export const None: None;
|
|
6346
|
+
/**
|
|
6347
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CanCollaborateError#NotAgeVerified)
|
|
6348
|
+
*/
|
|
6349
|
+
export interface NotAgeVerified extends globalThis.EnumItem {
|
|
6350
|
+
Name: "NotAgeVerified";
|
|
6351
|
+
Value: 2;
|
|
6352
|
+
EnumType: typeof globalThis.Enum.CanCollaborateError;
|
|
6353
|
+
}
|
|
6354
|
+
export const NotAgeVerified: NotAgeVerified;
|
|
6355
|
+
/**
|
|
6356
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CanCollaborateError#OutsideAgeBucket)
|
|
6357
|
+
*/
|
|
6358
|
+
export interface OutsideAgeBucket extends globalThis.EnumItem {
|
|
6359
|
+
Name: "OutsideAgeBucket";
|
|
6360
|
+
Value: 3;
|
|
6361
|
+
EnumType: typeof globalThis.Enum.CanCollaborateError;
|
|
6362
|
+
}
|
|
6363
|
+
export const OutsideAgeBucket: OutsideAgeBucket;
|
|
6364
|
+
/**
|
|
6365
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CanCollaborateError#TooManyCollaborators)
|
|
6366
|
+
*/
|
|
6367
|
+
export interface TooManyCollaborators extends globalThis.EnumItem {
|
|
6368
|
+
Name: "TooManyCollaborators";
|
|
6369
|
+
Value: 4;
|
|
6370
|
+
EnumType: typeof globalThis.Enum.CanCollaborateError;
|
|
6371
|
+
}
|
|
6372
|
+
export const TooManyCollaborators: TooManyCollaborators;
|
|
6373
|
+
/**
|
|
6374
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CanCollaborateError#PCBlock)
|
|
6375
|
+
*/
|
|
6376
|
+
export interface PCBlock extends globalThis.EnumItem {
|
|
6377
|
+
Name: "PCBlock";
|
|
6378
|
+
Value: 5;
|
|
6379
|
+
EnumType: typeof globalThis.Enum.CanCollaborateError;
|
|
6380
|
+
}
|
|
6381
|
+
export const PCBlock: PCBlock;
|
|
6382
|
+
/**
|
|
6383
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CanCollaborateError#NotFound)
|
|
6384
|
+
*/
|
|
6385
|
+
export interface NotFound extends globalThis.EnumItem {
|
|
6386
|
+
Name: "NotFound";
|
|
6387
|
+
Value: 6;
|
|
6388
|
+
EnumType: typeof globalThis.Enum.CanCollaborateError;
|
|
6389
|
+
}
|
|
6390
|
+
export const NotFound: NotFound;
|
|
6391
|
+
/**
|
|
6392
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CanCollaborateError#OutsideOwnerAgeBucket)
|
|
6393
|
+
*/
|
|
6394
|
+
export interface OutsideOwnerAgeBucket extends globalThis.EnumItem {
|
|
6395
|
+
Name: "OutsideOwnerAgeBucket";
|
|
6396
|
+
Value: 7;
|
|
6397
|
+
EnumType: typeof globalThis.Enum.CanCollaborateError;
|
|
6398
|
+
}
|
|
6399
|
+
export const OutsideOwnerAgeBucket: OutsideOwnerAgeBucket;
|
|
6400
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CanCollaborateError>;
|
|
6401
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CanCollaborateError | undefined;
|
|
6402
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CanCollaborateError | undefined;
|
|
6403
|
+
}
|
|
6404
|
+
export type CanCollaborateError = CanCollaborateError.Invalid | CanCollaborateError.None | CanCollaborateError.NotAgeVerified | CanCollaborateError.OutsideAgeBucket | CanCollaborateError.TooManyCollaborators | CanCollaborateError.PCBlock | CanCollaborateError.NotFound | CanCollaborateError.OutsideOwnerAgeBucket;
|
|
6308
6405
|
/**
|
|
6309
6406
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CaptureGalleryPermission)
|
|
6310
6407
|
*/
|
|
@@ -11086,6 +11183,60 @@ declare namespace Enum {
|
|
|
11086
11183
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DialogTone | undefined;
|
|
11087
11184
|
}
|
|
11088
11185
|
export type DialogTone = DialogTone.Neutral | DialogTone.Friendly | DialogTone.Enemy;
|
|
11186
|
+
/**
|
|
11187
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DigitsRigDescriptionSide)
|
|
11188
|
+
*/
|
|
11189
|
+
export namespace DigitsRigDescriptionSide {
|
|
11190
|
+
/**
|
|
11191
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DigitsRigDescriptionSide#None)
|
|
11192
|
+
*/
|
|
11193
|
+
export interface None extends globalThis.EnumItem {
|
|
11194
|
+
Name: "None";
|
|
11195
|
+
Value: 0;
|
|
11196
|
+
EnumType: typeof globalThis.Enum.DigitsRigDescriptionSide;
|
|
11197
|
+
}
|
|
11198
|
+
export const None: None;
|
|
11199
|
+
/**
|
|
11200
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DigitsRigDescriptionSide#Left)
|
|
11201
|
+
*/
|
|
11202
|
+
export interface Left extends globalThis.EnumItem {
|
|
11203
|
+
Name: "Left";
|
|
11204
|
+
Value: 1;
|
|
11205
|
+
EnumType: typeof globalThis.Enum.DigitsRigDescriptionSide;
|
|
11206
|
+
}
|
|
11207
|
+
export const Left: Left;
|
|
11208
|
+
/**
|
|
11209
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DigitsRigDescriptionSide#Right)
|
|
11210
|
+
*/
|
|
11211
|
+
export interface Right extends globalThis.EnumItem {
|
|
11212
|
+
Name: "Right";
|
|
11213
|
+
Value: 2;
|
|
11214
|
+
EnumType: typeof globalThis.Enum.DigitsRigDescriptionSide;
|
|
11215
|
+
}
|
|
11216
|
+
export const Right: Right;
|
|
11217
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DigitsRigDescriptionSide>;
|
|
11218
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DigitsRigDescriptionSide | undefined;
|
|
11219
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DigitsRigDescriptionSide | undefined;
|
|
11220
|
+
}
|
|
11221
|
+
export type DigitsRigDescriptionSide = DigitsRigDescriptionSide.None | DigitsRigDescriptionSide.Left | DigitsRigDescriptionSide.Right;
|
|
11222
|
+
/**
|
|
11223
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DiscountType)
|
|
11224
|
+
*/
|
|
11225
|
+
export namespace DiscountType {
|
|
11226
|
+
/**
|
|
11227
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DiscountType#Uncategorized)
|
|
11228
|
+
*/
|
|
11229
|
+
export interface Uncategorized extends globalThis.EnumItem {
|
|
11230
|
+
Name: "Uncategorized";
|
|
11231
|
+
Value: 0;
|
|
11232
|
+
EnumType: typeof globalThis.Enum.DiscountType;
|
|
11233
|
+
}
|
|
11234
|
+
export const Uncategorized: Uncategorized;
|
|
11235
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DiscountType>;
|
|
11236
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DiscountType | undefined;
|
|
11237
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DiscountType | undefined;
|
|
11238
|
+
}
|
|
11239
|
+
export type DiscountType = DiscountType.Uncategorized;
|
|
11089
11240
|
/**
|
|
11090
11241
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DisplayScalingMode)
|
|
11091
11242
|
*/
|
|
@@ -15181,42 +15332,6 @@ declare namespace Enum {
|
|
|
15181
15332
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.GuiType | undefined;
|
|
15182
15333
|
}
|
|
15183
15334
|
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
15335
|
/**
|
|
15221
15336
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HandlesStyle)
|
|
15222
15337
|
*/
|
|
@@ -16829,6 +16944,42 @@ declare namespace Enum {
|
|
|
16829
16944
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.InputActionType | undefined;
|
|
16830
16945
|
}
|
|
16831
16946
|
export type InputActionType = InputActionType.Bool | InputActionType.Direction1D | InputActionType.Direction2D | InputActionType.Direction3D | InputActionType.ViewportPosition;
|
|
16947
|
+
/**
|
|
16948
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputSink)
|
|
16949
|
+
*/
|
|
16950
|
+
export namespace InputSink {
|
|
16951
|
+
/**
|
|
16952
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputSink#None)
|
|
16953
|
+
*/
|
|
16954
|
+
export interface None extends globalThis.EnumItem {
|
|
16955
|
+
Name: "None";
|
|
16956
|
+
Value: 0;
|
|
16957
|
+
EnumType: typeof globalThis.Enum.InputSink;
|
|
16958
|
+
}
|
|
16959
|
+
export const None: None;
|
|
16960
|
+
/**
|
|
16961
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputSink#Activate)
|
|
16962
|
+
*/
|
|
16963
|
+
export interface Activate extends globalThis.EnumItem {
|
|
16964
|
+
Name: "Activate";
|
|
16965
|
+
Value: 1;
|
|
16966
|
+
EnumType: typeof globalThis.Enum.InputSink;
|
|
16967
|
+
}
|
|
16968
|
+
export const Activate: Activate;
|
|
16969
|
+
/**
|
|
16970
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputSink#All)
|
|
16971
|
+
*/
|
|
16972
|
+
export interface All extends globalThis.EnumItem {
|
|
16973
|
+
Name: "All";
|
|
16974
|
+
Value: 100;
|
|
16975
|
+
EnumType: typeof globalThis.Enum.InputSink;
|
|
16976
|
+
}
|
|
16977
|
+
export const All: All;
|
|
16978
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.InputSink>;
|
|
16979
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.InputSink | undefined;
|
|
16980
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.InputSink | undefined;
|
|
16981
|
+
}
|
|
16982
|
+
export type InputSink = InputSink.None | InputSink.Activate | InputSink.All;
|
|
16832
16983
|
/**
|
|
16833
16984
|
* The InputType Enum controls the SurfaceInputs of `Part`.
|
|
16834
16985
|
*
|
|
@@ -27683,70 +27834,79 @@ declare namespace Enum {
|
|
|
27683
27834
|
*/
|
|
27684
27835
|
export interface Root extends globalThis.EnumItem {
|
|
27685
27836
|
Name: "Root";
|
|
27686
|
-
Value:
|
|
27837
|
+
Value: 2;
|
|
27687
27838
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27688
27839
|
}
|
|
27689
27840
|
export const Root: Root;
|
|
27690
27841
|
/**
|
|
27691
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27842
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftHip)
|
|
27692
27843
|
*/
|
|
27693
|
-
export interface
|
|
27694
|
-
Name: "
|
|
27695
|
-
Value:
|
|
27844
|
+
export interface LeftHip extends globalThis.EnumItem {
|
|
27845
|
+
Name: "LeftHip";
|
|
27846
|
+
Value: 3;
|
|
27696
27847
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27697
27848
|
}
|
|
27698
|
-
export const
|
|
27849
|
+
export const LeftHip: LeftHip;
|
|
27699
27850
|
/**
|
|
27700
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27851
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftKnee)
|
|
27701
27852
|
*/
|
|
27702
|
-
export interface
|
|
27703
|
-
Name: "
|
|
27704
|
-
Value:
|
|
27853
|
+
export interface LeftKnee extends globalThis.EnumItem {
|
|
27854
|
+
Name: "LeftKnee";
|
|
27855
|
+
Value: 4;
|
|
27705
27856
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27706
27857
|
}
|
|
27707
|
-
export const
|
|
27858
|
+
export const LeftKnee: LeftKnee;
|
|
27708
27859
|
/**
|
|
27709
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27860
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftAnkle)
|
|
27710
27861
|
*/
|
|
27711
|
-
export interface
|
|
27712
|
-
Name: "
|
|
27713
|
-
Value:
|
|
27862
|
+
export interface LeftAnkle extends globalThis.EnumItem {
|
|
27863
|
+
Name: "LeftAnkle";
|
|
27864
|
+
Value: 5;
|
|
27714
27865
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27715
27866
|
}
|
|
27716
|
-
export const
|
|
27867
|
+
export const LeftAnkle: LeftAnkle;
|
|
27717
27868
|
/**
|
|
27718
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27869
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightHip)
|
|
27719
27870
|
*/
|
|
27720
|
-
export interface
|
|
27721
|
-
Name: "
|
|
27722
|
-
Value:
|
|
27871
|
+
export interface RightHip extends globalThis.EnumItem {
|
|
27872
|
+
Name: "RightHip";
|
|
27873
|
+
Value: 7;
|
|
27723
27874
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27724
27875
|
}
|
|
27725
|
-
export const
|
|
27876
|
+
export const RightHip: RightHip;
|
|
27726
27877
|
/**
|
|
27727
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27878
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightKnee)
|
|
27728
27879
|
*/
|
|
27729
|
-
export interface
|
|
27730
|
-
Name: "
|
|
27731
|
-
Value:
|
|
27880
|
+
export interface RightKnee extends globalThis.EnumItem {
|
|
27881
|
+
Name: "RightKnee";
|
|
27882
|
+
Value: 8;
|
|
27732
27883
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27733
27884
|
}
|
|
27734
|
-
export const
|
|
27885
|
+
export const RightKnee: RightKnee;
|
|
27735
27886
|
/**
|
|
27736
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27887
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightAnkle)
|
|
27737
27888
|
*/
|
|
27738
|
-
export interface
|
|
27739
|
-
Name: "
|
|
27740
|
-
Value:
|
|
27889
|
+
export interface RightAnkle extends globalThis.EnumItem {
|
|
27890
|
+
Name: "RightAnkle";
|
|
27891
|
+
Value: 9;
|
|
27741
27892
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27742
27893
|
}
|
|
27743
|
-
export const
|
|
27894
|
+
export const RightAnkle: RightAnkle;
|
|
27895
|
+
/**
|
|
27896
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Waist)
|
|
27897
|
+
*/
|
|
27898
|
+
export interface Waist extends globalThis.EnumItem {
|
|
27899
|
+
Name: "Waist";
|
|
27900
|
+
Value: 11;
|
|
27901
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27902
|
+
}
|
|
27903
|
+
export const Waist: Waist;
|
|
27744
27904
|
/**
|
|
27745
27905
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftShoulder)
|
|
27746
27906
|
*/
|
|
27747
27907
|
export interface LeftShoulder extends globalThis.EnumItem {
|
|
27748
27908
|
Name: "LeftShoulder";
|
|
27749
|
-
Value:
|
|
27909
|
+
Value: 12;
|
|
27750
27910
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27751
27911
|
}
|
|
27752
27912
|
export const LeftShoulder: LeftShoulder;
|
|
@@ -27755,7 +27915,7 @@ declare namespace Enum {
|
|
|
27755
27915
|
*/
|
|
27756
27916
|
export interface LeftElbow extends globalThis.EnumItem {
|
|
27757
27917
|
Name: "LeftElbow";
|
|
27758
|
-
Value:
|
|
27918
|
+
Value: 13;
|
|
27759
27919
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27760
27920
|
}
|
|
27761
27921
|
export const LeftElbow: LeftElbow;
|
|
@@ -27764,25 +27924,16 @@ declare namespace Enum {
|
|
|
27764
27924
|
*/
|
|
27765
27925
|
export interface LeftWrist extends globalThis.EnumItem {
|
|
27766
27926
|
Name: "LeftWrist";
|
|
27767
|
-
Value:
|
|
27927
|
+
Value: 14;
|
|
27768
27928
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27769
27929
|
}
|
|
27770
27930
|
export const LeftWrist: LeftWrist;
|
|
27771
|
-
/**
|
|
27772
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightClavicle)
|
|
27773
|
-
*/
|
|
27774
|
-
export interface RightClavicle extends globalThis.EnumItem {
|
|
27775
|
-
Name: "RightClavicle";
|
|
27776
|
-
Value: 11;
|
|
27777
|
-
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27778
|
-
}
|
|
27779
|
-
export const RightClavicle: RightClavicle;
|
|
27780
27931
|
/**
|
|
27781
27932
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightShoulder)
|
|
27782
27933
|
*/
|
|
27783
27934
|
export interface RightShoulder extends globalThis.EnumItem {
|
|
27784
27935
|
Name: "RightShoulder";
|
|
27785
|
-
Value:
|
|
27936
|
+
Value: 16;
|
|
27786
27937
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27787
27938
|
}
|
|
27788
27939
|
export const RightShoulder: RightShoulder;
|
|
@@ -27791,7 +27942,7 @@ declare namespace Enum {
|
|
|
27791
27942
|
*/
|
|
27792
27943
|
export interface RightElbow extends globalThis.EnumItem {
|
|
27793
27944
|
Name: "RightElbow";
|
|
27794
|
-
Value:
|
|
27945
|
+
Value: 17;
|
|
27795
27946
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27796
27947
|
}
|
|
27797
27948
|
export const RightElbow: RightElbow;
|
|
@@ -27800,87 +27951,222 @@ declare namespace Enum {
|
|
|
27800
27951
|
*/
|
|
27801
27952
|
export interface RightWrist extends globalThis.EnumItem {
|
|
27802
27953
|
Name: "RightWrist";
|
|
27803
|
-
Value:
|
|
27954
|
+
Value: 18;
|
|
27804
27955
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27805
27956
|
}
|
|
27806
27957
|
export const RightWrist: RightWrist;
|
|
27807
27958
|
/**
|
|
27808
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27959
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Neck)
|
|
27809
27960
|
*/
|
|
27810
|
-
export interface
|
|
27811
|
-
Name: "
|
|
27812
|
-
Value:
|
|
27961
|
+
export interface Neck extends globalThis.EnumItem {
|
|
27962
|
+
Name: "Neck";
|
|
27963
|
+
Value: 20;
|
|
27813
27964
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27814
27965
|
}
|
|
27815
|
-
export const
|
|
27966
|
+
export const Neck: Neck;
|
|
27816
27967
|
/**
|
|
27817
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27968
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Pelvis)
|
|
27818
27969
|
*/
|
|
27819
|
-
export interface
|
|
27820
|
-
Name: "
|
|
27821
|
-
Value:
|
|
27970
|
+
export interface Pelvis extends globalThis.EnumItem {
|
|
27971
|
+
Name: "Pelvis";
|
|
27972
|
+
Value: 23;
|
|
27822
27973
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27823
27974
|
}
|
|
27824
|
-
export const
|
|
27975
|
+
export const Pelvis: Pelvis;
|
|
27825
27976
|
/**
|
|
27826
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27977
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Chest)
|
|
27827
27978
|
*/
|
|
27828
|
-
export interface
|
|
27829
|
-
Name: "
|
|
27830
|
-
Value:
|
|
27979
|
+
export interface Chest extends globalThis.EnumItem {
|
|
27980
|
+
Name: "Chest";
|
|
27981
|
+
Value: 24;
|
|
27831
27982
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27832
27983
|
}
|
|
27833
|
-
export const
|
|
27984
|
+
export const Chest: Chest;
|
|
27834
27985
|
/**
|
|
27835
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27986
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#HeadBase)
|
|
27836
27987
|
*/
|
|
27837
|
-
export interface
|
|
27838
|
-
Name: "
|
|
27839
|
-
Value:
|
|
27988
|
+
export interface HeadBase extends globalThis.EnumItem {
|
|
27989
|
+
Name: "HeadBase";
|
|
27990
|
+
Value: 25;
|
|
27840
27991
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27841
27992
|
}
|
|
27842
|
-
export const
|
|
27993
|
+
export const HeadBase: HeadBase;
|
|
27843
27994
|
/**
|
|
27844
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
27995
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftClavicle)
|
|
27845
27996
|
*/
|
|
27846
|
-
export interface
|
|
27847
|
-
Name: "
|
|
27848
|
-
Value:
|
|
27997
|
+
export interface LeftClavicle extends globalThis.EnumItem {
|
|
27998
|
+
Name: "LeftClavicle";
|
|
27999
|
+
Value: 26;
|
|
27849
28000
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27850
28001
|
}
|
|
27851
|
-
export const
|
|
28002
|
+
export const LeftClavicle: LeftClavicle;
|
|
27852
28003
|
/**
|
|
27853
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
28004
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightClavicle)
|
|
27854
28005
|
*/
|
|
27855
|
-
export interface
|
|
27856
|
-
Name: "
|
|
27857
|
-
Value:
|
|
28006
|
+
export interface RightClavicle extends globalThis.EnumItem {
|
|
28007
|
+
Name: "RightClavicle";
|
|
28008
|
+
Value: 27;
|
|
27858
28009
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27859
28010
|
}
|
|
27860
|
-
export const
|
|
28011
|
+
export const RightClavicle: RightClavicle;
|
|
27861
28012
|
/**
|
|
27862
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#
|
|
28013
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftToes)
|
|
27863
28014
|
*/
|
|
27864
|
-
export interface
|
|
27865
|
-
Name: "
|
|
27866
|
-
Value:
|
|
28015
|
+
export interface LeftToes extends globalThis.EnumItem {
|
|
28016
|
+
Name: "LeftToes";
|
|
28017
|
+
Value: 28;
|
|
27867
28018
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27868
28019
|
}
|
|
27869
|
-
export const
|
|
28020
|
+
export const LeftToes: LeftToes;
|
|
27870
28021
|
/**
|
|
27871
28022
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightToes)
|
|
27872
28023
|
*/
|
|
27873
28024
|
export interface RightToes extends globalThis.EnumItem {
|
|
27874
28025
|
Name: "RightToes";
|
|
27875
|
-
Value:
|
|
28026
|
+
Value: 29;
|
|
27876
28027
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
27877
28028
|
}
|
|
27878
28029
|
export const RightToes: RightToes;
|
|
28030
|
+
/**
|
|
28031
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Thumb1)
|
|
28032
|
+
*/
|
|
28033
|
+
export interface Thumb1 extends globalThis.EnumItem {
|
|
28034
|
+
Name: "Thumb1";
|
|
28035
|
+
Value: 30;
|
|
28036
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28037
|
+
}
|
|
28038
|
+
export const Thumb1: Thumb1;
|
|
28039
|
+
/**
|
|
28040
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Thumb2)
|
|
28041
|
+
*/
|
|
28042
|
+
export interface Thumb2 extends globalThis.EnumItem {
|
|
28043
|
+
Name: "Thumb2";
|
|
28044
|
+
Value: 31;
|
|
28045
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28046
|
+
}
|
|
28047
|
+
export const Thumb2: Thumb2;
|
|
28048
|
+
/**
|
|
28049
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Thumb3)
|
|
28050
|
+
*/
|
|
28051
|
+
export interface Thumb3 extends globalThis.EnumItem {
|
|
28052
|
+
Name: "Thumb3";
|
|
28053
|
+
Value: 32;
|
|
28054
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28055
|
+
}
|
|
28056
|
+
export const Thumb3: Thumb3;
|
|
28057
|
+
/**
|
|
28058
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Index1)
|
|
28059
|
+
*/
|
|
28060
|
+
export interface Index1 extends globalThis.EnumItem {
|
|
28061
|
+
Name: "Index1";
|
|
28062
|
+
Value: 33;
|
|
28063
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28064
|
+
}
|
|
28065
|
+
export const Index1: Index1;
|
|
28066
|
+
/**
|
|
28067
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Index2)
|
|
28068
|
+
*/
|
|
28069
|
+
export interface Index2 extends globalThis.EnumItem {
|
|
28070
|
+
Name: "Index2";
|
|
28071
|
+
Value: 34;
|
|
28072
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28073
|
+
}
|
|
28074
|
+
export const Index2: Index2;
|
|
28075
|
+
/**
|
|
28076
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Index3)
|
|
28077
|
+
*/
|
|
28078
|
+
export interface Index3 extends globalThis.EnumItem {
|
|
28079
|
+
Name: "Index3";
|
|
28080
|
+
Value: 35;
|
|
28081
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28082
|
+
}
|
|
28083
|
+
export const Index3: Index3;
|
|
28084
|
+
/**
|
|
28085
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Middle1)
|
|
28086
|
+
*/
|
|
28087
|
+
export interface Middle1 extends globalThis.EnumItem {
|
|
28088
|
+
Name: "Middle1";
|
|
28089
|
+
Value: 36;
|
|
28090
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28091
|
+
}
|
|
28092
|
+
export const Middle1: Middle1;
|
|
28093
|
+
/**
|
|
28094
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Middle2)
|
|
28095
|
+
*/
|
|
28096
|
+
export interface Middle2 extends globalThis.EnumItem {
|
|
28097
|
+
Name: "Middle2";
|
|
28098
|
+
Value: 37;
|
|
28099
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28100
|
+
}
|
|
28101
|
+
export const Middle2: Middle2;
|
|
28102
|
+
/**
|
|
28103
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Middle3)
|
|
28104
|
+
*/
|
|
28105
|
+
export interface Middle3 extends globalThis.EnumItem {
|
|
28106
|
+
Name: "Middle3";
|
|
28107
|
+
Value: 38;
|
|
28108
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28109
|
+
}
|
|
28110
|
+
export const Middle3: Middle3;
|
|
28111
|
+
/**
|
|
28112
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Ring1)
|
|
28113
|
+
*/
|
|
28114
|
+
export interface Ring1 extends globalThis.EnumItem {
|
|
28115
|
+
Name: "Ring1";
|
|
28116
|
+
Value: 39;
|
|
28117
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28118
|
+
}
|
|
28119
|
+
export const Ring1: Ring1;
|
|
28120
|
+
/**
|
|
28121
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Ring2)
|
|
28122
|
+
*/
|
|
28123
|
+
export interface Ring2 extends globalThis.EnumItem {
|
|
28124
|
+
Name: "Ring2";
|
|
28125
|
+
Value: 40;
|
|
28126
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28127
|
+
}
|
|
28128
|
+
export const Ring2: Ring2;
|
|
28129
|
+
/**
|
|
28130
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Ring3)
|
|
28131
|
+
*/
|
|
28132
|
+
export interface Ring3 extends globalThis.EnumItem {
|
|
28133
|
+
Name: "Ring3";
|
|
28134
|
+
Value: 41;
|
|
28135
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28136
|
+
}
|
|
28137
|
+
export const Ring3: Ring3;
|
|
28138
|
+
/**
|
|
28139
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Pinky1)
|
|
28140
|
+
*/
|
|
28141
|
+
export interface Pinky1 extends globalThis.EnumItem {
|
|
28142
|
+
Name: "Pinky1";
|
|
28143
|
+
Value: 42;
|
|
28144
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28145
|
+
}
|
|
28146
|
+
export const Pinky1: Pinky1;
|
|
28147
|
+
/**
|
|
28148
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Pinky2)
|
|
28149
|
+
*/
|
|
28150
|
+
export interface Pinky2 extends globalThis.EnumItem {
|
|
28151
|
+
Name: "Pinky2";
|
|
28152
|
+
Value: 43;
|
|
28153
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28154
|
+
}
|
|
28155
|
+
export const Pinky2: Pinky2;
|
|
28156
|
+
/**
|
|
28157
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Pinky3)
|
|
28158
|
+
*/
|
|
28159
|
+
export interface Pinky3 extends globalThis.EnumItem {
|
|
28160
|
+
Name: "Pinky3";
|
|
28161
|
+
Value: 44;
|
|
28162
|
+
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28163
|
+
}
|
|
28164
|
+
export const Pinky3: Pinky3;
|
|
27879
28165
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RigLabel>;
|
|
27880
28166
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RigLabel | undefined;
|
|
27881
28167
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RigLabel | undefined;
|
|
27882
28168
|
}
|
|
27883
|
-
export type RigLabel = RigLabel.Invalid | RigLabel.Root | RigLabel.
|
|
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.Pelvis | RigLabel.Chest | RigLabel.HeadBase | RigLabel.LeftClavicle | RigLabel.RightClavicle | RigLabel.LeftToes | RigLabel.RightToes | 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
28170
|
/**
|
|
27885
28171
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigScale)
|
|
27886
28172
|
*/
|
|
@@ -29116,15 +29402,6 @@ declare namespace Enum {
|
|
|
29116
29402
|
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
29117
29403
|
}
|
|
29118
29404
|
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
29405
|
/**
|
|
29129
29406
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#LoadString)
|
|
29130
29407
|
*/
|
|
@@ -29233,15 +29510,6 @@ declare namespace Enum {
|
|
|
29233
29510
|
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
29234
29511
|
}
|
|
29235
29512
|
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
29513
|
/**
|
|
29246
29514
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#Input)
|
|
29247
29515
|
*/
|
|
@@ -29548,11 +29816,47 @@ declare namespace Enum {
|
|
|
29548
29816
|
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
29549
29817
|
}
|
|
29550
29818
|
export const AvatarBehavior: AvatarBehavior;
|
|
29819
|
+
/**
|
|
29820
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#AvatarAppearance)
|
|
29821
|
+
*/
|
|
29822
|
+
export interface AvatarAppearance extends globalThis.EnumItem {
|
|
29823
|
+
Name: "AvatarAppearance";
|
|
29824
|
+
Value: 51;
|
|
29825
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
29826
|
+
}
|
|
29827
|
+
export const AvatarAppearance: AvatarAppearance;
|
|
29828
|
+
/**
|
|
29829
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#LoadUnownedAsset)
|
|
29830
|
+
*/
|
|
29831
|
+
export interface LoadUnownedAsset extends globalThis.EnumItem {
|
|
29832
|
+
Name: "LoadUnownedAsset";
|
|
29833
|
+
Value: 52;
|
|
29834
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
29835
|
+
}
|
|
29836
|
+
export const LoadUnownedAsset: LoadUnownedAsset;
|
|
29837
|
+
/**
|
|
29838
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#AssetRequire)
|
|
29839
|
+
*/
|
|
29840
|
+
export interface AssetRequire extends globalThis.EnumItem {
|
|
29841
|
+
Name: "AssetRequire";
|
|
29842
|
+
Value: 3;
|
|
29843
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
29844
|
+
}
|
|
29845
|
+
export const AssetRequire: AssetRequire;
|
|
29846
|
+
/**
|
|
29847
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#Avatar)
|
|
29848
|
+
*/
|
|
29849
|
+
export interface Avatar extends globalThis.EnumItem {
|
|
29850
|
+
Name: "Avatar";
|
|
29851
|
+
Value: 16;
|
|
29852
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
29853
|
+
}
|
|
29854
|
+
export const Avatar: Avatar;
|
|
29551
29855
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SecurityCapability>;
|
|
29552
29856
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SecurityCapability | undefined;
|
|
29553
29857
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SecurityCapability | undefined;
|
|
29554
29858
|
}
|
|
29555
|
-
export type SecurityCapability = SecurityCapability.RunClientScript | SecurityCapability.RunServerScript | SecurityCapability.AccessOutsideWrite | SecurityCapability.
|
|
29859
|
+
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
29860
|
/**
|
|
29557
29861
|
* Customization options for gamepad selection when `GuiBase2d.SelectionGroup` is true.
|
|
29558
29862
|
*
|
|
@@ -30031,6 +30335,33 @@ declare namespace Enum {
|
|
|
30031
30335
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SizeConstraint | undefined;
|
|
30032
30336
|
}
|
|
30033
30337
|
export type SizeConstraint = SizeConstraint.RelativeXY | SizeConstraint.RelativeXX | SizeConstraint.RelativeYY;
|
|
30338
|
+
/**
|
|
30339
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SolidPrimitiveType)
|
|
30340
|
+
*/
|
|
30341
|
+
export namespace SolidPrimitiveType {
|
|
30342
|
+
/**
|
|
30343
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SolidPrimitiveType#Capsule)
|
|
30344
|
+
*/
|
|
30345
|
+
export interface Capsule extends globalThis.EnumItem {
|
|
30346
|
+
Name: "Capsule";
|
|
30347
|
+
Value: 5;
|
|
30348
|
+
EnumType: typeof globalThis.Enum.SolidPrimitiveType;
|
|
30349
|
+
}
|
|
30350
|
+
export const Capsule: Capsule;
|
|
30351
|
+
/**
|
|
30352
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SolidPrimitiveType#Cone)
|
|
30353
|
+
*/
|
|
30354
|
+
export interface Cone extends globalThis.EnumItem {
|
|
30355
|
+
Name: "Cone";
|
|
30356
|
+
Value: 6;
|
|
30357
|
+
EnumType: typeof globalThis.Enum.SolidPrimitiveType;
|
|
30358
|
+
}
|
|
30359
|
+
export const Cone: Cone;
|
|
30360
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SolidPrimitiveType>;
|
|
30361
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SolidPrimitiveType | undefined;
|
|
30362
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SolidPrimitiveType | undefined;
|
|
30363
|
+
}
|
|
30364
|
+
export type SolidPrimitiveType = SolidPrimitiveType.Capsule | SolidPrimitiveType.Cone;
|
|
30034
30365
|
/**
|
|
30035
30366
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SolverConvergenceMetricType)
|
|
30036
30367
|
*/
|
|
@@ -33954,6 +34285,150 @@ declare namespace Enum {
|
|
|
33954
34285
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TerrainFace | undefined;
|
|
33955
34286
|
}
|
|
33956
34287
|
export type TerrainFace = TerrainFace.Top | TerrainFace.Side | TerrainFace.Bottom;
|
|
34288
|
+
/**
|
|
34289
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainLiquidMergeOperation)
|
|
34290
|
+
*/
|
|
34291
|
+
export namespace TerrainLiquidMergeOperation {
|
|
34292
|
+
/**
|
|
34293
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainLiquidMergeOperation#None)
|
|
34294
|
+
*/
|
|
34295
|
+
export interface None extends globalThis.EnumItem {
|
|
34296
|
+
Name: "None";
|
|
34297
|
+
Value: 0;
|
|
34298
|
+
EnumType: typeof globalThis.Enum.TerrainLiquidMergeOperation;
|
|
34299
|
+
}
|
|
34300
|
+
export const None: None;
|
|
34301
|
+
/**
|
|
34302
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainLiquidMergeOperation#Source)
|
|
34303
|
+
*/
|
|
34304
|
+
export interface Source extends globalThis.EnumItem {
|
|
34305
|
+
Name: "Source";
|
|
34306
|
+
Value: 1;
|
|
34307
|
+
EnumType: typeof globalThis.Enum.TerrainLiquidMergeOperation;
|
|
34308
|
+
}
|
|
34309
|
+
export const Source: Source;
|
|
34310
|
+
/**
|
|
34311
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainLiquidMergeOperation#Union)
|
|
34312
|
+
*/
|
|
34313
|
+
export interface Union extends globalThis.EnumItem {
|
|
34314
|
+
Name: "Union";
|
|
34315
|
+
Value: 2;
|
|
34316
|
+
EnumType: typeof globalThis.Enum.TerrainLiquidMergeOperation;
|
|
34317
|
+
}
|
|
34318
|
+
export const Union: Union;
|
|
34319
|
+
/**
|
|
34320
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainLiquidMergeOperation#Difference)
|
|
34321
|
+
*/
|
|
34322
|
+
export interface Difference extends globalThis.EnumItem {
|
|
34323
|
+
Name: "Difference";
|
|
34324
|
+
Value: 3;
|
|
34325
|
+
EnumType: typeof globalThis.Enum.TerrainLiquidMergeOperation;
|
|
34326
|
+
}
|
|
34327
|
+
export const Difference: Difference;
|
|
34328
|
+
/**
|
|
34329
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainLiquidMergeOperation#Intersect)
|
|
34330
|
+
*/
|
|
34331
|
+
export interface Intersect extends globalThis.EnumItem {
|
|
34332
|
+
Name: "Intersect";
|
|
34333
|
+
Value: 4;
|
|
34334
|
+
EnumType: typeof globalThis.Enum.TerrainLiquidMergeOperation;
|
|
34335
|
+
}
|
|
34336
|
+
export const Intersect: Intersect;
|
|
34337
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TerrainLiquidMergeOperation>;
|
|
34338
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TerrainLiquidMergeOperation | undefined;
|
|
34339
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TerrainLiquidMergeOperation | undefined;
|
|
34340
|
+
}
|
|
34341
|
+
export type TerrainLiquidMergeOperation = TerrainLiquidMergeOperation.None | TerrainLiquidMergeOperation.Source | TerrainLiquidMergeOperation.Union | TerrainLiquidMergeOperation.Difference | TerrainLiquidMergeOperation.Intersect;
|
|
34342
|
+
/**
|
|
34343
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainSolidMergeOperation)
|
|
34344
|
+
*/
|
|
34345
|
+
export namespace TerrainSolidMergeOperation {
|
|
34346
|
+
/**
|
|
34347
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainSolidMergeOperation#None)
|
|
34348
|
+
*/
|
|
34349
|
+
export interface None extends globalThis.EnumItem {
|
|
34350
|
+
Name: "None";
|
|
34351
|
+
Value: 0;
|
|
34352
|
+
EnumType: typeof globalThis.Enum.TerrainSolidMergeOperation;
|
|
34353
|
+
}
|
|
34354
|
+
export const None: None;
|
|
34355
|
+
/**
|
|
34356
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainSolidMergeOperation#Paint)
|
|
34357
|
+
*/
|
|
34358
|
+
export interface Paint extends globalThis.EnumItem {
|
|
34359
|
+
Name: "Paint";
|
|
34360
|
+
Value: 1;
|
|
34361
|
+
EnumType: typeof globalThis.Enum.TerrainSolidMergeOperation;
|
|
34362
|
+
}
|
|
34363
|
+
export const Paint: Paint;
|
|
34364
|
+
/**
|
|
34365
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainSolidMergeOperation#Source)
|
|
34366
|
+
*/
|
|
34367
|
+
export interface Source extends globalThis.EnumItem {
|
|
34368
|
+
Name: "Source";
|
|
34369
|
+
Value: 2;
|
|
34370
|
+
EnumType: typeof globalThis.Enum.TerrainSolidMergeOperation;
|
|
34371
|
+
}
|
|
34372
|
+
export const Source: Source;
|
|
34373
|
+
/**
|
|
34374
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainSolidMergeOperation#Union)
|
|
34375
|
+
*/
|
|
34376
|
+
export interface Union extends globalThis.EnumItem {
|
|
34377
|
+
Name: "Union";
|
|
34378
|
+
Value: 3;
|
|
34379
|
+
EnumType: typeof globalThis.Enum.TerrainSolidMergeOperation;
|
|
34380
|
+
}
|
|
34381
|
+
export const Union: Union;
|
|
34382
|
+
/**
|
|
34383
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainSolidMergeOperation#Dig)
|
|
34384
|
+
*/
|
|
34385
|
+
export interface Dig extends globalThis.EnumItem {
|
|
34386
|
+
Name: "Dig";
|
|
34387
|
+
Value: 4;
|
|
34388
|
+
EnumType: typeof globalThis.Enum.TerrainSolidMergeOperation;
|
|
34389
|
+
}
|
|
34390
|
+
export const Dig: Dig;
|
|
34391
|
+
/**
|
|
34392
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainSolidMergeOperation#Difference)
|
|
34393
|
+
*/
|
|
34394
|
+
export interface Difference extends globalThis.EnumItem {
|
|
34395
|
+
Name: "Difference";
|
|
34396
|
+
Value: 5;
|
|
34397
|
+
EnumType: typeof globalThis.Enum.TerrainSolidMergeOperation;
|
|
34398
|
+
}
|
|
34399
|
+
export const Difference: Difference;
|
|
34400
|
+
/**
|
|
34401
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainSolidMergeOperation#Intersect)
|
|
34402
|
+
*/
|
|
34403
|
+
export interface Intersect extends globalThis.EnumItem {
|
|
34404
|
+
Name: "Intersect";
|
|
34405
|
+
Value: 6;
|
|
34406
|
+
EnumType: typeof globalThis.Enum.TerrainSolidMergeOperation;
|
|
34407
|
+
}
|
|
34408
|
+
export const Intersect: Intersect;
|
|
34409
|
+
/**
|
|
34410
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainSolidMergeOperation#Cut)
|
|
34411
|
+
*/
|
|
34412
|
+
export interface Cut extends globalThis.EnumItem {
|
|
34413
|
+
Name: "Cut";
|
|
34414
|
+
Value: 7;
|
|
34415
|
+
EnumType: typeof globalThis.Enum.TerrainSolidMergeOperation;
|
|
34416
|
+
}
|
|
34417
|
+
export const Cut: Cut;
|
|
34418
|
+
/**
|
|
34419
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TerrainSolidMergeOperation#Place)
|
|
34420
|
+
*/
|
|
34421
|
+
export interface Place extends globalThis.EnumItem {
|
|
34422
|
+
Name: "Place";
|
|
34423
|
+
Value: 8;
|
|
34424
|
+
EnumType: typeof globalThis.Enum.TerrainSolidMergeOperation;
|
|
34425
|
+
}
|
|
34426
|
+
export const Place: Place;
|
|
34427
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TerrainSolidMergeOperation>;
|
|
34428
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TerrainSolidMergeOperation | undefined;
|
|
34429
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TerrainSolidMergeOperation | undefined;
|
|
34430
|
+
}
|
|
34431
|
+
export type TerrainSolidMergeOperation = TerrainSolidMergeOperation.None | TerrainSolidMergeOperation.Paint | TerrainSolidMergeOperation.Source | TerrainSolidMergeOperation.Union | TerrainSolidMergeOperation.Dig | TerrainSolidMergeOperation.Difference | TerrainSolidMergeOperation.Intersect | TerrainSolidMergeOperation.Cut | TerrainSolidMergeOperation.Place;
|
|
33957
34432
|
/**
|
|
33958
34433
|
* Indicates the status of a `TextChatMessage`.
|
|
33959
34434
|
*
|
|
@@ -36104,11 +36579,29 @@ declare namespace Enum {
|
|
|
36104
36579
|
EnumType: typeof globalThis.Enum.UploadCaptureResult;
|
|
36105
36580
|
}
|
|
36106
36581
|
export const UploadQuotaReached: UploadQuotaReached;
|
|
36582
|
+
/**
|
|
36583
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UploadCaptureResult#UploadPending)
|
|
36584
|
+
*/
|
|
36585
|
+
export interface UploadPending extends globalThis.EnumItem {
|
|
36586
|
+
Name: "UploadPending";
|
|
36587
|
+
Value: 6;
|
|
36588
|
+
EnumType: typeof globalThis.Enum.UploadCaptureResult;
|
|
36589
|
+
}
|
|
36590
|
+
export const UploadPending: UploadPending;
|
|
36591
|
+
/**
|
|
36592
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UploadCaptureResult#UploadFailed)
|
|
36593
|
+
*/
|
|
36594
|
+
export interface UploadFailed extends globalThis.EnumItem {
|
|
36595
|
+
Name: "UploadFailed";
|
|
36596
|
+
Value: 7;
|
|
36597
|
+
EnumType: typeof globalThis.Enum.UploadCaptureResult;
|
|
36598
|
+
}
|
|
36599
|
+
export const UploadFailed: UploadFailed;
|
|
36107
36600
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UploadCaptureResult>;
|
|
36108
36601
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.UploadCaptureResult | undefined;
|
|
36109
36602
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UploadCaptureResult | undefined;
|
|
36110
36603
|
}
|
|
36111
|
-
export type UploadCaptureResult = UploadCaptureResult.Success | UploadCaptureResult.NeedPermission | UploadCaptureResult.CaptureModerated | UploadCaptureResult.CaptureNotInGallery | UploadCaptureResult.IneligibleCapture | UploadCaptureResult.UploadQuotaReached;
|
|
36604
|
+
export type UploadCaptureResult = UploadCaptureResult.Success | UploadCaptureResult.NeedPermission | UploadCaptureResult.CaptureModerated | UploadCaptureResult.CaptureNotInGallery | UploadCaptureResult.IneligibleCapture | UploadCaptureResult.UploadQuotaReached | UploadCaptureResult.UploadPending | UploadCaptureResult.UploadFailed;
|
|
36112
36605
|
/**
|
|
36113
36606
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UsageContext)
|
|
36114
36607
|
*/
|
|
@@ -37794,6 +38287,42 @@ declare namespace Enum {
|
|
|
37794
38287
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VoiceControlPath | undefined;
|
|
37795
38288
|
}
|
|
37796
38289
|
export type VoiceControlPath = VoiceControlPath.Publish | VoiceControlPath.Subscribe | VoiceControlPath.Join;
|
|
38290
|
+
/**
|
|
38291
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VoiceRccReconnectReason)
|
|
38292
|
+
*/
|
|
38293
|
+
export namespace VoiceRccReconnectReason {
|
|
38294
|
+
/**
|
|
38295
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VoiceRccReconnectReason#Unknown)
|
|
38296
|
+
*/
|
|
38297
|
+
export interface Unknown extends globalThis.EnumItem {
|
|
38298
|
+
Name: "Unknown";
|
|
38299
|
+
Value: 0;
|
|
38300
|
+
EnumType: typeof globalThis.Enum.VoiceRccReconnectReason;
|
|
38301
|
+
}
|
|
38302
|
+
export const Unknown: Unknown;
|
|
38303
|
+
/**
|
|
38304
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VoiceRccReconnectReason#Migration)
|
|
38305
|
+
*/
|
|
38306
|
+
export interface Migration extends globalThis.EnumItem {
|
|
38307
|
+
Name: "Migration";
|
|
38308
|
+
Value: 1;
|
|
38309
|
+
EnumType: typeof globalThis.Enum.VoiceRccReconnectReason;
|
|
38310
|
+
}
|
|
38311
|
+
export const Migration: Migration;
|
|
38312
|
+
/**
|
|
38313
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VoiceRccReconnectReason#CloseRoom)
|
|
38314
|
+
*/
|
|
38315
|
+
export interface CloseRoom extends globalThis.EnumItem {
|
|
38316
|
+
Name: "CloseRoom";
|
|
38317
|
+
Value: 2;
|
|
38318
|
+
EnumType: typeof globalThis.Enum.VoiceRccReconnectReason;
|
|
38319
|
+
}
|
|
38320
|
+
export const CloseRoom: CloseRoom;
|
|
38321
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VoiceRccReconnectReason>;
|
|
38322
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VoiceRccReconnectReason | undefined;
|
|
38323
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VoiceRccReconnectReason | undefined;
|
|
38324
|
+
}
|
|
38325
|
+
export type VoiceRccReconnectReason = VoiceRccReconnectReason.Unknown | VoiceRccReconnectReason.Migration | VoiceRccReconnectReason.CloseRoom;
|
|
37797
38326
|
/**
|
|
37798
38327
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio)
|
|
37799
38328
|
*/
|