@rbxts/types 1.0.909 → 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 +452 -301
- package/include/generated/PluginSecurity.d.ts +62 -18
- package/include/generated/enums.d.ts +424 -75
- 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
|
*
|
|
@@ -27876,11 +28027,146 @@ declare namespace Enum {
|
|
|
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.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;
|
|
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
|
*/
|
|
@@ -36248,11 +36579,29 @@ declare namespace Enum {
|
|
|
36248
36579
|
EnumType: typeof globalThis.Enum.UploadCaptureResult;
|
|
36249
36580
|
}
|
|
36250
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;
|
|
36251
36600
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UploadCaptureResult>;
|
|
36252
36601
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.UploadCaptureResult | undefined;
|
|
36253
36602
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UploadCaptureResult | undefined;
|
|
36254
36603
|
}
|
|
36255
|
-
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;
|
|
36256
36605
|
/**
|
|
36257
36606
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UsageContext)
|
|
36258
36607
|
*/
|