@rbxts/types 1.0.886 → 1.0.888
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 +241 -17
- package/include/generated/PluginSecurity.d.ts +73 -11
- package/include/generated/enums.d.ts +564 -26
- package/package.json +1 -1
|
@@ -1590,6 +1590,141 @@ declare namespace Enum {
|
|
|
1590
1590
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationClipFromVideoStatus | undefined;
|
|
1591
1591
|
}
|
|
1592
1592
|
export type AnimationClipFromVideoStatus = AnimationClipFromVideoStatus.Initializing | AnimationClipFromVideoStatus.Pending | AnimationClipFromVideoStatus.Processing | AnimationClipFromVideoStatus.ErrorGeneric | AnimationClipFromVideoStatus.Success | AnimationClipFromVideoStatus.ErrorVideoTooLong | AnimationClipFromVideoStatus.ErrorNoPersonDetected | AnimationClipFromVideoStatus.ErrorVideoUnstable | AnimationClipFromVideoStatus.Timeout | AnimationClipFromVideoStatus.Cancelled | AnimationClipFromVideoStatus.ErrorMultiplePeople | AnimationClipFromVideoStatus.ErrorUploadingVideo;
|
|
1593
|
+
/**
|
|
1594
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType)
|
|
1595
|
+
*/
|
|
1596
|
+
export namespace AnimationNodeType {
|
|
1597
|
+
/**
|
|
1598
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#InvalidNode)
|
|
1599
|
+
*/
|
|
1600
|
+
export interface InvalidNode extends globalThis.EnumItem {
|
|
1601
|
+
Name: "InvalidNode";
|
|
1602
|
+
Value: 0;
|
|
1603
|
+
EnumType: typeof globalThis.Enum.AnimationNodeType;
|
|
1604
|
+
}
|
|
1605
|
+
export const InvalidNode: InvalidNode;
|
|
1606
|
+
/**
|
|
1607
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#AddNode)
|
|
1608
|
+
*/
|
|
1609
|
+
export interface AddNode extends globalThis.EnumItem {
|
|
1610
|
+
Name: "AddNode";
|
|
1611
|
+
Value: 1;
|
|
1612
|
+
EnumType: typeof globalThis.Enum.AnimationNodeType;
|
|
1613
|
+
}
|
|
1614
|
+
export const AddNode: AddNode;
|
|
1615
|
+
/**
|
|
1616
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#BlendNode)
|
|
1617
|
+
*/
|
|
1618
|
+
export interface BlendNode extends globalThis.EnumItem {
|
|
1619
|
+
Name: "BlendNode";
|
|
1620
|
+
Value: 2;
|
|
1621
|
+
EnumType: typeof globalThis.Enum.AnimationNodeType;
|
|
1622
|
+
}
|
|
1623
|
+
export const BlendNode: BlendNode;
|
|
1624
|
+
/**
|
|
1625
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#Blend1DNode)
|
|
1626
|
+
*/
|
|
1627
|
+
export interface Blend1DNode extends globalThis.EnumItem {
|
|
1628
|
+
Name: "Blend1DNode";
|
|
1629
|
+
Value: 3;
|
|
1630
|
+
EnumType: typeof globalThis.Enum.AnimationNodeType;
|
|
1631
|
+
}
|
|
1632
|
+
export const Blend1DNode: Blend1DNode;
|
|
1633
|
+
/**
|
|
1634
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#Blend2DNode)
|
|
1635
|
+
*/
|
|
1636
|
+
export interface Blend2DNode extends globalThis.EnumItem {
|
|
1637
|
+
Name: "Blend2DNode";
|
|
1638
|
+
Value: 4;
|
|
1639
|
+
EnumType: typeof globalThis.Enum.AnimationNodeType;
|
|
1640
|
+
}
|
|
1641
|
+
export const Blend2DNode: Blend2DNode;
|
|
1642
|
+
/**
|
|
1643
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#ClipNode)
|
|
1644
|
+
*/
|
|
1645
|
+
export interface ClipNode extends globalThis.EnumItem {
|
|
1646
|
+
Name: "ClipNode";
|
|
1647
|
+
Value: 5;
|
|
1648
|
+
EnumType: typeof globalThis.Enum.AnimationNodeType;
|
|
1649
|
+
}
|
|
1650
|
+
export const ClipNode: ClipNode;
|
|
1651
|
+
/**
|
|
1652
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#GraphOutput)
|
|
1653
|
+
*/
|
|
1654
|
+
export interface GraphOutput extends globalThis.EnumItem {
|
|
1655
|
+
Name: "GraphOutput";
|
|
1656
|
+
Value: 6;
|
|
1657
|
+
EnumType: typeof globalThis.Enum.AnimationNodeType;
|
|
1658
|
+
}
|
|
1659
|
+
export const GraphOutput: GraphOutput;
|
|
1660
|
+
/**
|
|
1661
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#MaskNode)
|
|
1662
|
+
*/
|
|
1663
|
+
export interface MaskNode extends globalThis.EnumItem {
|
|
1664
|
+
Name: "MaskNode";
|
|
1665
|
+
Value: 7;
|
|
1666
|
+
EnumType: typeof globalThis.Enum.AnimationNodeType;
|
|
1667
|
+
}
|
|
1668
|
+
export const MaskNode: MaskNode;
|
|
1669
|
+
/**
|
|
1670
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#PrioritySelectNode)
|
|
1671
|
+
*/
|
|
1672
|
+
export interface PrioritySelectNode extends globalThis.EnumItem {
|
|
1673
|
+
Name: "PrioritySelectNode";
|
|
1674
|
+
Value: 8;
|
|
1675
|
+
EnumType: typeof globalThis.Enum.AnimationNodeType;
|
|
1676
|
+
}
|
|
1677
|
+
export const PrioritySelectNode: PrioritySelectNode;
|
|
1678
|
+
/**
|
|
1679
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#RandomSequenceNode)
|
|
1680
|
+
*/
|
|
1681
|
+
export interface RandomSequenceNode extends globalThis.EnumItem {
|
|
1682
|
+
Name: "RandomSequenceNode";
|
|
1683
|
+
Value: 9;
|
|
1684
|
+
EnumType: typeof globalThis.Enum.AnimationNodeType;
|
|
1685
|
+
}
|
|
1686
|
+
export const RandomSequenceNode: RandomSequenceNode;
|
|
1687
|
+
/**
|
|
1688
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#SelectNode)
|
|
1689
|
+
*/
|
|
1690
|
+
export interface SelectNode extends globalThis.EnumItem {
|
|
1691
|
+
Name: "SelectNode";
|
|
1692
|
+
Value: 10;
|
|
1693
|
+
EnumType: typeof globalThis.Enum.AnimationNodeType;
|
|
1694
|
+
}
|
|
1695
|
+
export const SelectNode: SelectNode;
|
|
1696
|
+
/**
|
|
1697
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#SequenceNode)
|
|
1698
|
+
*/
|
|
1699
|
+
export interface SequenceNode extends globalThis.EnumItem {
|
|
1700
|
+
Name: "SequenceNode";
|
|
1701
|
+
Value: 11;
|
|
1702
|
+
EnumType: typeof globalThis.Enum.AnimationNodeType;
|
|
1703
|
+
}
|
|
1704
|
+
export const SequenceNode: SequenceNode;
|
|
1705
|
+
/**
|
|
1706
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#SpeedNode)
|
|
1707
|
+
*/
|
|
1708
|
+
export interface SpeedNode extends globalThis.EnumItem {
|
|
1709
|
+
Name: "SpeedNode";
|
|
1710
|
+
Value: 12;
|
|
1711
|
+
EnumType: typeof globalThis.Enum.AnimationNodeType;
|
|
1712
|
+
}
|
|
1713
|
+
export const SpeedNode: SpeedNode;
|
|
1714
|
+
/**
|
|
1715
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#SubtractNode)
|
|
1716
|
+
*/
|
|
1717
|
+
export interface SubtractNode extends globalThis.EnumItem {
|
|
1718
|
+
Name: "SubtractNode";
|
|
1719
|
+
Value: 13;
|
|
1720
|
+
EnumType: typeof globalThis.Enum.AnimationNodeType;
|
|
1721
|
+
}
|
|
1722
|
+
export const SubtractNode: SubtractNode;
|
|
1723
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationNodeType>;
|
|
1724
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodeType | undefined;
|
|
1725
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeType | undefined;
|
|
1726
|
+
}
|
|
1727
|
+
export type AnimationNodeType = AnimationNodeType.InvalidNode | AnimationNodeType.AddNode | AnimationNodeType.BlendNode | AnimationNodeType.Blend1DNode | AnimationNodeType.Blend2DNode | AnimationNodeType.ClipNode | AnimationNodeType.GraphOutput | AnimationNodeType.MaskNode | AnimationNodeType.PrioritySelectNode | AnimationNodeType.RandomSequenceNode | AnimationNodeType.SelectNode | AnimationNodeType.SequenceNode | AnimationNodeType.SpeedNode | AnimationNodeType.SubtractNode;
|
|
1593
1728
|
/**
|
|
1594
1729
|
* The AnimationPriority Enum determines how concurrently-playing AnimationTracks contribute to the final animation.
|
|
1595
1730
|
*
|
|
@@ -6139,6 +6274,33 @@ declare namespace Enum {
|
|
|
6139
6274
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CatalogSortType | undefined;
|
|
6140
6275
|
}
|
|
6141
6276
|
export type CatalogSortType = CatalogSortType.Relevance | CatalogSortType.PriceHighToLow | CatalogSortType.PriceLowToHigh | CatalogSortType.MostFavorited | CatalogSortType.RecentlyCreated | CatalogSortType.Bestselling;
|
|
6277
|
+
/**
|
|
6278
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CatalogTimedOptionFilter)
|
|
6279
|
+
*/
|
|
6280
|
+
export namespace CatalogTimedOptionFilter {
|
|
6281
|
+
/**
|
|
6282
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CatalogTimedOptionFilter#All)
|
|
6283
|
+
*/
|
|
6284
|
+
export interface All extends globalThis.EnumItem {
|
|
6285
|
+
Name: "All";
|
|
6286
|
+
Value: 1;
|
|
6287
|
+
EnumType: typeof globalThis.Enum.CatalogTimedOptionFilter;
|
|
6288
|
+
}
|
|
6289
|
+
export const All: All;
|
|
6290
|
+
/**
|
|
6291
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CatalogTimedOptionFilter#TimedOptionOnly)
|
|
6292
|
+
*/
|
|
6293
|
+
export interface TimedOptionOnly extends globalThis.EnumItem {
|
|
6294
|
+
Name: "TimedOptionOnly";
|
|
6295
|
+
Value: 2;
|
|
6296
|
+
EnumType: typeof globalThis.Enum.CatalogTimedOptionFilter;
|
|
6297
|
+
}
|
|
6298
|
+
export const TimedOptionOnly: TimedOptionOnly;
|
|
6299
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CatalogTimedOptionFilter>;
|
|
6300
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CatalogTimedOptionFilter | undefined;
|
|
6301
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CatalogTimedOptionFilter | undefined;
|
|
6302
|
+
}
|
|
6303
|
+
export type CatalogTimedOptionFilter = CatalogTimedOptionFilter.All | CatalogTimedOptionFilter.TimedOptionOnly;
|
|
6142
6304
|
/**
|
|
6143
6305
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CellBlock)
|
|
6144
6306
|
*/
|
|
@@ -7521,6 +7683,28 @@ declare namespace Enum {
|
|
|
7521
7683
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CompletionTriggerKind | undefined;
|
|
7522
7684
|
}
|
|
7523
7685
|
export type CompletionTriggerKind = CompletionTriggerKind.Invoked | CompletionTriggerKind.TriggerCharacter | CompletionTriggerKind.TriggerForIncompleteCompletions;
|
|
7686
|
+
/**
|
|
7687
|
+
* A compression algorithm to use in `EncodingService` methods.
|
|
7688
|
+
*
|
|
7689
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompressionAlgorithm)
|
|
7690
|
+
*/
|
|
7691
|
+
export namespace CompressionAlgorithm {
|
|
7692
|
+
/**
|
|
7693
|
+
* Used to perform compression using [Zstandard](https://en.wikipedia.org/wiki/Zstd) compression, also known as zstd.
|
|
7694
|
+
*
|
|
7695
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompressionAlgorithm#Zstd)
|
|
7696
|
+
*/
|
|
7697
|
+
export interface Zstd extends globalThis.EnumItem {
|
|
7698
|
+
Name: "Zstd";
|
|
7699
|
+
Value: 0;
|
|
7700
|
+
EnumType: typeof globalThis.Enum.CompressionAlgorithm;
|
|
7701
|
+
}
|
|
7702
|
+
export const Zstd: Zstd;
|
|
7703
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CompressionAlgorithm>;
|
|
7704
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CompressionAlgorithm | undefined;
|
|
7705
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CompressionAlgorithm | undefined;
|
|
7706
|
+
}
|
|
7707
|
+
export type CompressionAlgorithm = CompressionAlgorithm.Zstd;
|
|
7524
7708
|
/**
|
|
7525
7709
|
* The camera movement mode currently in-use by the client.
|
|
7526
7710
|
*
|
|
@@ -9448,6 +9632,33 @@ declare namespace Enum {
|
|
|
9448
9632
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DebuggerStatus | undefined;
|
|
9449
9633
|
}
|
|
9450
9634
|
export type DebuggerStatus = DebuggerStatus.Success | DebuggerStatus.Timeout | DebuggerStatus.ConnectionLost | DebuggerStatus.InvalidResponse | DebuggerStatus.InternalError | DebuggerStatus.InvalidState | DebuggerStatus.RpcError | DebuggerStatus.InvalidArgument | DebuggerStatus.ConnectionClosed;
|
|
9635
|
+
/**
|
|
9636
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DefaultScriptSyncFileType)
|
|
9637
|
+
*/
|
|
9638
|
+
export namespace DefaultScriptSyncFileType {
|
|
9639
|
+
/**
|
|
9640
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DefaultScriptSyncFileType#Lua)
|
|
9641
|
+
*/
|
|
9642
|
+
export interface Lua extends globalThis.EnumItem {
|
|
9643
|
+
Name: "Lua";
|
|
9644
|
+
Value: 0;
|
|
9645
|
+
EnumType: typeof globalThis.Enum.DefaultScriptSyncFileType;
|
|
9646
|
+
}
|
|
9647
|
+
export const Lua: Lua;
|
|
9648
|
+
/**
|
|
9649
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DefaultScriptSyncFileType#Luau)
|
|
9650
|
+
*/
|
|
9651
|
+
export interface Luau extends globalThis.EnumItem {
|
|
9652
|
+
Name: "Luau";
|
|
9653
|
+
Value: 1;
|
|
9654
|
+
EnumType: typeof globalThis.Enum.DefaultScriptSyncFileType;
|
|
9655
|
+
}
|
|
9656
|
+
export const Luau: Luau;
|
|
9657
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DefaultScriptSyncFileType>;
|
|
9658
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DefaultScriptSyncFileType | undefined;
|
|
9659
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DefaultScriptSyncFileType | undefined;
|
|
9660
|
+
}
|
|
9661
|
+
export type DefaultScriptSyncFileType = DefaultScriptSyncFileType.Lua | DefaultScriptSyncFileType.Luau;
|
|
9451
9662
|
/**
|
|
9452
9663
|
* Determines how the default camera handles objects that are in-between the camera and the camera subject.
|
|
9453
9664
|
*
|
|
@@ -10027,11 +10238,20 @@ declare namespace Enum {
|
|
|
10027
10238
|
EnumType: typeof globalThis.Enum.DeviceFeatureType;
|
|
10028
10239
|
}
|
|
10029
10240
|
export const DeviceCapture: DeviceCapture;
|
|
10241
|
+
/**
|
|
10242
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DeviceFeatureType#InExperienceFAE)
|
|
10243
|
+
*/
|
|
10244
|
+
export interface InExperienceFAE extends globalThis.EnumItem {
|
|
10245
|
+
Name: "InExperienceFAE";
|
|
10246
|
+
Value: 1;
|
|
10247
|
+
EnumType: typeof globalThis.Enum.DeviceFeatureType;
|
|
10248
|
+
}
|
|
10249
|
+
export const InExperienceFAE: InExperienceFAE;
|
|
10030
10250
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DeviceFeatureType>;
|
|
10031
10251
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DeviceFeatureType | undefined;
|
|
10032
10252
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DeviceFeatureType | undefined;
|
|
10033
10253
|
}
|
|
10034
|
-
export type DeviceFeatureType = DeviceFeatureType.DeviceCapture;
|
|
10254
|
+
export type DeviceFeatureType = DeviceFeatureType.DeviceCapture | DeviceFeatureType.InExperienceFAE;
|
|
10035
10255
|
/**
|
|
10036
10256
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DeviceForm)
|
|
10037
10257
|
*/
|
|
@@ -11063,6 +11283,70 @@ declare namespace Enum {
|
|
|
11063
11283
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExperienceAuthScope | undefined;
|
|
11064
11284
|
}
|
|
11065
11285
|
export type ExperienceAuthScope = ExperienceAuthScope.DefaultScope | ExperienceAuthScope.CreatorAssetsCreate;
|
|
11286
|
+
/**
|
|
11287
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceEventStatus)
|
|
11288
|
+
*/
|
|
11289
|
+
export namespace ExperienceEventStatus {
|
|
11290
|
+
/**
|
|
11291
|
+
* The event is currently published and available.
|
|
11292
|
+
*
|
|
11293
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceEventStatus#Active)
|
|
11294
|
+
*/
|
|
11295
|
+
export interface Active extends globalThis.EnumItem {
|
|
11296
|
+
Name: "Active";
|
|
11297
|
+
Value: 0;
|
|
11298
|
+
EnumType: typeof globalThis.Enum.ExperienceEventStatus;
|
|
11299
|
+
}
|
|
11300
|
+
export const Active: Active;
|
|
11301
|
+
/**
|
|
11302
|
+
* The event has been cancelled and will not occur.
|
|
11303
|
+
*
|
|
11304
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceEventStatus#Cancelled)
|
|
11305
|
+
*/
|
|
11306
|
+
export interface Cancelled extends globalThis.EnumItem {
|
|
11307
|
+
Name: "Cancelled";
|
|
11308
|
+
Value: 1;
|
|
11309
|
+
EnumType: typeof globalThis.Enum.ExperienceEventStatus;
|
|
11310
|
+
}
|
|
11311
|
+
export const Cancelled: Cancelled;
|
|
11312
|
+
/**
|
|
11313
|
+
* The event has been removed by moderation.
|
|
11314
|
+
*
|
|
11315
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceEventStatus#Moderated)
|
|
11316
|
+
*/
|
|
11317
|
+
export interface Moderated extends globalThis.EnumItem {
|
|
11318
|
+
Name: "Moderated";
|
|
11319
|
+
Value: 2;
|
|
11320
|
+
EnumType: typeof globalThis.Enum.ExperienceEventStatus;
|
|
11321
|
+
}
|
|
11322
|
+
export const Moderated: Moderated;
|
|
11323
|
+
/**
|
|
11324
|
+
* The event has been unpublished by the creator.
|
|
11325
|
+
*
|
|
11326
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceEventStatus#Unpublished)
|
|
11327
|
+
*/
|
|
11328
|
+
export interface Unpublished extends globalThis.EnumItem {
|
|
11329
|
+
Name: "Unpublished";
|
|
11330
|
+
Value: 3;
|
|
11331
|
+
EnumType: typeof globalThis.Enum.ExperienceEventStatus;
|
|
11332
|
+
}
|
|
11333
|
+
export const Unpublished: Unpublished;
|
|
11334
|
+
/**
|
|
11335
|
+
* The event status could not be determined.
|
|
11336
|
+
*
|
|
11337
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceEventStatus#Unknown)
|
|
11338
|
+
*/
|
|
11339
|
+
export interface Unknown extends globalThis.EnumItem {
|
|
11340
|
+
Name: "Unknown";
|
|
11341
|
+
Value: 4;
|
|
11342
|
+
EnumType: typeof globalThis.Enum.ExperienceEventStatus;
|
|
11343
|
+
}
|
|
11344
|
+
export const Unknown: Unknown;
|
|
11345
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ExperienceEventStatus>;
|
|
11346
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ExperienceEventStatus | undefined;
|
|
11347
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExperienceEventStatus | undefined;
|
|
11348
|
+
}
|
|
11349
|
+
export type ExperienceEventStatus = ExperienceEventStatus.Active | ExperienceEventStatus.Cancelled | ExperienceEventStatus.Moderated | ExperienceEventStatus.Unpublished | ExperienceEventStatus.Unknown;
|
|
11066
11350
|
/**
|
|
11067
11351
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingLoadMode)
|
|
11068
11352
|
*/
|
|
@@ -14288,6 +14572,72 @@ declare namespace Enum {
|
|
|
14288
14572
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HapticEffectType | undefined;
|
|
14289
14573
|
}
|
|
14290
14574
|
export type HapticEffectType = HapticEffectType.Custom | HapticEffectType.UIHover | HapticEffectType.UIClick | HapticEffectType.UINotification | HapticEffectType.GameplayExplosion | HapticEffectType.GameplayCollision;
|
|
14575
|
+
/**
|
|
14576
|
+
* A Cryptographic hash function to use in `EncodingService` methods.
|
|
14577
|
+
*
|
|
14578
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HashAlgorithm)
|
|
14579
|
+
*/
|
|
14580
|
+
export namespace HashAlgorithm {
|
|
14581
|
+
/**
|
|
14582
|
+
* Used to compute a 256-bit (32-byte) hash digest using the [BLAKE2b](https://en.wikipedia.org/wiki/BLAKE2) algorithm.
|
|
14583
|
+
*
|
|
14584
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HashAlgorithm#Blake2b)
|
|
14585
|
+
*/
|
|
14586
|
+
export interface Blake2b extends globalThis.EnumItem {
|
|
14587
|
+
Name: "Blake2b";
|
|
14588
|
+
Value: 0;
|
|
14589
|
+
EnumType: typeof globalThis.Enum.HashAlgorithm;
|
|
14590
|
+
}
|
|
14591
|
+
export const Blake2b: Blake2b;
|
|
14592
|
+
/**
|
|
14593
|
+
* Used to compute a 256-bit (32-byte) hash digest using the [BLAKE3](https://en.wikipedia.org/wiki/BLAKE3) algorithm.
|
|
14594
|
+
*
|
|
14595
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HashAlgorithm#Blake3)
|
|
14596
|
+
*/
|
|
14597
|
+
export interface Blake3 extends globalThis.EnumItem {
|
|
14598
|
+
Name: "Blake3";
|
|
14599
|
+
Value: 1;
|
|
14600
|
+
EnumType: typeof globalThis.Enum.HashAlgorithm;
|
|
14601
|
+
}
|
|
14602
|
+
export const Blake3: Blake3;
|
|
14603
|
+
/**
|
|
14604
|
+
* Used to compute a 128-bit (16-byte) hash digest using the [MD5](https://en.wikipedia.org/wiki/MD5) algorithm.
|
|
14605
|
+
*
|
|
14606
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HashAlgorithm#Md5)
|
|
14607
|
+
*/
|
|
14608
|
+
export interface Md5 extends globalThis.EnumItem {
|
|
14609
|
+
Name: "Md5";
|
|
14610
|
+
Value: 2;
|
|
14611
|
+
EnumType: typeof globalThis.Enum.HashAlgorithm;
|
|
14612
|
+
}
|
|
14613
|
+
export const Md5: Md5;
|
|
14614
|
+
/**
|
|
14615
|
+
* Used to compute a 160-bit (20-byte) hash digest using the [SHA-1](https://en.wikipedia.org/wiki/SHA-1) algorithm.
|
|
14616
|
+
*
|
|
14617
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HashAlgorithm#Sha1)
|
|
14618
|
+
*/
|
|
14619
|
+
export interface Sha1 extends globalThis.EnumItem {
|
|
14620
|
+
Name: "Sha1";
|
|
14621
|
+
Value: 3;
|
|
14622
|
+
EnumType: typeof globalThis.Enum.HashAlgorithm;
|
|
14623
|
+
}
|
|
14624
|
+
export const Sha1: Sha1;
|
|
14625
|
+
/**
|
|
14626
|
+
* Used to compute a 256-bit (32-byte) hash digest using the [SHA256](https://en.wikipedia.org/wiki/SHA-2) algorithm.
|
|
14627
|
+
*
|
|
14628
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HashAlgorithm#Sha256)
|
|
14629
|
+
*/
|
|
14630
|
+
export interface Sha256 extends globalThis.EnumItem {
|
|
14631
|
+
Name: "Sha256";
|
|
14632
|
+
Value: 4;
|
|
14633
|
+
EnumType: typeof globalThis.Enum.HashAlgorithm;
|
|
14634
|
+
}
|
|
14635
|
+
export const Sha256: Sha256;
|
|
14636
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.HashAlgorithm>;
|
|
14637
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.HashAlgorithm | undefined;
|
|
14638
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HashAlgorithm | undefined;
|
|
14639
|
+
}
|
|
14640
|
+
export type HashAlgorithm = HashAlgorithm.Blake2b | HashAlgorithm.Blake3 | HashAlgorithm.Md5 | HashAlgorithm.Sha1 | HashAlgorithm.Sha256;
|
|
14291
14641
|
/**
|
|
14292
14642
|
* Controls how the `Highlight` effect displays with respect to other objects in the world.
|
|
14293
14643
|
*
|
|
@@ -17779,12 +18129,84 @@ declare namespace Enum {
|
|
|
17779
18129
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
17780
18130
|
}
|
|
17781
18131
|
export const Thumbstick2: Thumbstick2;
|
|
18132
|
+
/**
|
|
18133
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Thumbstick1Up)
|
|
18134
|
+
*/
|
|
18135
|
+
export interface Thumbstick1Up extends globalThis.EnumItem {
|
|
18136
|
+
Name: "Thumbstick1Up";
|
|
18137
|
+
Value: 1018;
|
|
18138
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
18139
|
+
}
|
|
18140
|
+
export const Thumbstick1Up: Thumbstick1Up;
|
|
18141
|
+
/**
|
|
18142
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Thumbstick1Down)
|
|
18143
|
+
*/
|
|
18144
|
+
export interface Thumbstick1Down extends globalThis.EnumItem {
|
|
18145
|
+
Name: "Thumbstick1Down";
|
|
18146
|
+
Value: 1019;
|
|
18147
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
18148
|
+
}
|
|
18149
|
+
export const Thumbstick1Down: Thumbstick1Down;
|
|
18150
|
+
/**
|
|
18151
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Thumbstick1Left)
|
|
18152
|
+
*/
|
|
18153
|
+
export interface Thumbstick1Left extends globalThis.EnumItem {
|
|
18154
|
+
Name: "Thumbstick1Left";
|
|
18155
|
+
Value: 1020;
|
|
18156
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
18157
|
+
}
|
|
18158
|
+
export const Thumbstick1Left: Thumbstick1Left;
|
|
18159
|
+
/**
|
|
18160
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Thumbstick1Right)
|
|
18161
|
+
*/
|
|
18162
|
+
export interface Thumbstick1Right extends globalThis.EnumItem {
|
|
18163
|
+
Name: "Thumbstick1Right";
|
|
18164
|
+
Value: 1021;
|
|
18165
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
18166
|
+
}
|
|
18167
|
+
export const Thumbstick1Right: Thumbstick1Right;
|
|
18168
|
+
/**
|
|
18169
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Thumbstick2Up)
|
|
18170
|
+
*/
|
|
18171
|
+
export interface Thumbstick2Up extends globalThis.EnumItem {
|
|
18172
|
+
Name: "Thumbstick2Up";
|
|
18173
|
+
Value: 1022;
|
|
18174
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
18175
|
+
}
|
|
18176
|
+
export const Thumbstick2Up: Thumbstick2Up;
|
|
18177
|
+
/**
|
|
18178
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Thumbstick2Down)
|
|
18179
|
+
*/
|
|
18180
|
+
export interface Thumbstick2Down extends globalThis.EnumItem {
|
|
18181
|
+
Name: "Thumbstick2Down";
|
|
18182
|
+
Value: 1023;
|
|
18183
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
18184
|
+
}
|
|
18185
|
+
export const Thumbstick2Down: Thumbstick2Down;
|
|
18186
|
+
/**
|
|
18187
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Thumbstick2Left)
|
|
18188
|
+
*/
|
|
18189
|
+
export interface Thumbstick2Left extends globalThis.EnumItem {
|
|
18190
|
+
Name: "Thumbstick2Left";
|
|
18191
|
+
Value: 1024;
|
|
18192
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
18193
|
+
}
|
|
18194
|
+
export const Thumbstick2Left: Thumbstick2Left;
|
|
18195
|
+
/**
|
|
18196
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Thumbstick2Right)
|
|
18197
|
+
*/
|
|
18198
|
+
export interface Thumbstick2Right extends globalThis.EnumItem {
|
|
18199
|
+
Name: "Thumbstick2Right";
|
|
18200
|
+
Value: 1025;
|
|
18201
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
18202
|
+
}
|
|
18203
|
+
export const Thumbstick2Right: Thumbstick2Right;
|
|
17782
18204
|
/**
|
|
17783
18205
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseLeftButton)
|
|
17784
18206
|
*/
|
|
17785
18207
|
export interface MouseLeftButton extends globalThis.EnumItem {
|
|
17786
18208
|
Name: "MouseLeftButton";
|
|
17787
|
-
Value:
|
|
18209
|
+
Value: 1026;
|
|
17788
18210
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
17789
18211
|
}
|
|
17790
18212
|
export const MouseLeftButton: MouseLeftButton;
|
|
@@ -17793,7 +18215,7 @@ declare namespace Enum {
|
|
|
17793
18215
|
*/
|
|
17794
18216
|
export interface MouseRightButton extends globalThis.EnumItem {
|
|
17795
18217
|
Name: "MouseRightButton";
|
|
17796
|
-
Value:
|
|
18218
|
+
Value: 1027;
|
|
17797
18219
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
17798
18220
|
}
|
|
17799
18221
|
export const MouseRightButton: MouseRightButton;
|
|
@@ -17802,7 +18224,7 @@ declare namespace Enum {
|
|
|
17802
18224
|
*/
|
|
17803
18225
|
export interface MouseMiddleButton extends globalThis.EnumItem {
|
|
17804
18226
|
Name: "MouseMiddleButton";
|
|
17805
|
-
Value:
|
|
18227
|
+
Value: 1028;
|
|
17806
18228
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
17807
18229
|
}
|
|
17808
18230
|
export const MouseMiddleButton: MouseMiddleButton;
|
|
@@ -17811,7 +18233,7 @@ declare namespace Enum {
|
|
|
17811
18233
|
*/
|
|
17812
18234
|
export interface MousePosition extends globalThis.EnumItem {
|
|
17813
18235
|
Name: "MousePosition";
|
|
17814
|
-
Value:
|
|
18236
|
+
Value: 1033;
|
|
17815
18237
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
17816
18238
|
}
|
|
17817
18239
|
export const MousePosition: MousePosition;
|
|
@@ -18878,7 +19300,7 @@ declare namespace Enum {
|
|
|
18878
19300
|
*/
|
|
18879
19301
|
export interface MouseBackButton extends globalThis.EnumItem {
|
|
18880
19302
|
Name: "MouseBackButton";
|
|
18881
|
-
Value:
|
|
19303
|
+
Value: 1029;
|
|
18882
19304
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
18883
19305
|
}
|
|
18884
19306
|
export const MouseBackButton: MouseBackButton;
|
|
@@ -18889,7 +19311,7 @@ declare namespace Enum {
|
|
|
18889
19311
|
*/
|
|
18890
19312
|
export interface MouseNoButton extends globalThis.EnumItem {
|
|
18891
19313
|
Name: "MouseNoButton";
|
|
18892
|
-
Value:
|
|
19314
|
+
Value: 1030;
|
|
18893
19315
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
18894
19316
|
}
|
|
18895
19317
|
export const MouseNoButton: MouseNoButton;
|
|
@@ -18900,7 +19322,7 @@ declare namespace Enum {
|
|
|
18900
19322
|
*/
|
|
18901
19323
|
export interface MouseX extends globalThis.EnumItem {
|
|
18902
19324
|
Name: "MouseX";
|
|
18903
|
-
Value:
|
|
19325
|
+
Value: 1031;
|
|
18904
19326
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
18905
19327
|
}
|
|
18906
19328
|
export const MouseX: MouseX;
|
|
@@ -18911,7 +19333,7 @@ declare namespace Enum {
|
|
|
18911
19333
|
*/
|
|
18912
19334
|
export interface MouseY extends globalThis.EnumItem {
|
|
18913
19335
|
Name: "MouseY";
|
|
18914
|
-
Value:
|
|
19336
|
+
Value: 1032;
|
|
18915
19337
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
18916
19338
|
}
|
|
18917
19339
|
export const MouseY: MouseY;
|
|
@@ -18919,7 +19341,7 @@ declare namespace Enum {
|
|
|
18919
19341
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.KeyCode | undefined;
|
|
18920
19342
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.KeyCode | undefined;
|
|
18921
19343
|
}
|
|
18922
|
-
export type KeyCode = KeyCode.Unknown | KeyCode.Backspace | KeyCode.Tab | KeyCode.Clear | KeyCode.Return | KeyCode.Pause | KeyCode.Escape | KeyCode.Space | KeyCode.QuotedDouble | KeyCode.Hash | KeyCode.Dollar | KeyCode.Percent | KeyCode.Ampersand | KeyCode.Quote | KeyCode.LeftParenthesis | KeyCode.RightParenthesis | KeyCode.Asterisk | KeyCode.Plus | KeyCode.Comma | KeyCode.Minus | KeyCode.Period | KeyCode.Slash | KeyCode.Zero | KeyCode.One | KeyCode.Two | KeyCode.Three | KeyCode.Four | KeyCode.Five | KeyCode.Six | KeyCode.Seven | KeyCode.Eight | KeyCode.Nine | KeyCode.Colon | KeyCode.Semicolon | KeyCode.LessThan | KeyCode.Equals | KeyCode.GreaterThan | KeyCode.Question | KeyCode.At | KeyCode.LeftBracket | KeyCode.BackSlash | KeyCode.RightBracket | KeyCode.Caret | KeyCode.Underscore | KeyCode.Backquote | KeyCode.A | KeyCode.B | KeyCode.C | KeyCode.D | KeyCode.E | KeyCode.F | KeyCode.G | KeyCode.H | KeyCode.I | KeyCode.J | KeyCode.K | KeyCode.L | KeyCode.M | KeyCode.N | KeyCode.O | KeyCode.P | KeyCode.Q | KeyCode.R | KeyCode.S | KeyCode.T | KeyCode.U | KeyCode.V | KeyCode.W | KeyCode.X | KeyCode.Y | KeyCode.Z | KeyCode.LeftCurly | KeyCode.Pipe | KeyCode.RightCurly | KeyCode.Tilde | KeyCode.Delete | KeyCode.KeypadZero | KeyCode.KeypadOne | KeyCode.KeypadTwo | KeyCode.KeypadThree | KeyCode.KeypadFour | KeyCode.KeypadFive | KeyCode.KeypadSix | KeyCode.KeypadSeven | KeyCode.KeypadEight | KeyCode.KeypadNine | KeyCode.KeypadPeriod | KeyCode.KeypadDivide | KeyCode.KeypadMultiply | KeyCode.KeypadMinus | KeyCode.KeypadPlus | KeyCode.KeypadEnter | KeyCode.KeypadEquals | KeyCode.Up | KeyCode.Down | KeyCode.Right | KeyCode.Left | KeyCode.Insert | KeyCode.Home | KeyCode.End | KeyCode.PageUp | KeyCode.PageDown | KeyCode.F1 | KeyCode.F2 | KeyCode.F3 | KeyCode.F4 | KeyCode.F5 | KeyCode.F6 | KeyCode.F7 | KeyCode.F8 | KeyCode.F9 | KeyCode.F10 | KeyCode.F11 | KeyCode.F12 | KeyCode.F13 | KeyCode.F14 | KeyCode.F15 | KeyCode.NumLock | KeyCode.CapsLock | KeyCode.ScrollLock | KeyCode.RightShift | KeyCode.LeftShift | KeyCode.RightControl | KeyCode.LeftControl | KeyCode.RightAlt | KeyCode.LeftAlt | KeyCode.RightMeta | KeyCode.LeftMeta | KeyCode.LeftSuper | KeyCode.RightSuper | KeyCode.Mode | KeyCode.Compose | KeyCode.Help | KeyCode.Print | KeyCode.SysReq | KeyCode.Break | KeyCode.Menu | KeyCode.Power | KeyCode.Euro | KeyCode.Undo | KeyCode.ButtonX | KeyCode.ButtonY | KeyCode.ButtonA | KeyCode.ButtonB | KeyCode.ButtonR1 | KeyCode.ButtonL1 | KeyCode.ButtonR2 | KeyCode.ButtonL2 | KeyCode.ButtonR3 | KeyCode.ButtonL3 | KeyCode.ButtonStart | KeyCode.ButtonSelect | KeyCode.DPadLeft | KeyCode.DPadRight | KeyCode.DPadUp | KeyCode.DPadDown | KeyCode.Thumbstick1 | KeyCode.Thumbstick2 | KeyCode.MouseLeftButton | KeyCode.MouseRightButton | KeyCode.MouseMiddleButton | KeyCode.MousePosition | KeyCode.World0 | KeyCode.World1 | KeyCode.World2 | KeyCode.World3 | KeyCode.World4 | KeyCode.World5 | KeyCode.World6 | KeyCode.World7 | KeyCode.World8 | KeyCode.World9 | KeyCode.World10 | KeyCode.World11 | KeyCode.World12 | KeyCode.World13 | KeyCode.World14 | KeyCode.World15 | KeyCode.World16 | KeyCode.World17 | KeyCode.World18 | KeyCode.World19 | KeyCode.World20 | KeyCode.World21 | KeyCode.World22 | KeyCode.World23 | KeyCode.World24 | KeyCode.World25 | KeyCode.World26 | KeyCode.World27 | KeyCode.World28 | KeyCode.World29 | KeyCode.World30 | KeyCode.World31 | KeyCode.World32 | KeyCode.World33 | KeyCode.World34 | KeyCode.World35 | KeyCode.World36 | KeyCode.World37 | KeyCode.World38 | KeyCode.World39 | KeyCode.World40 | KeyCode.World41 | KeyCode.World42 | KeyCode.World43 | KeyCode.World44 | KeyCode.World45 | KeyCode.World46 | KeyCode.World47 | KeyCode.World48 | KeyCode.World49 | KeyCode.World50 | KeyCode.World51 | KeyCode.World52 | KeyCode.World53 | KeyCode.World54 | KeyCode.World55 | KeyCode.World56 | KeyCode.World57 | KeyCode.World58 | KeyCode.World59 | KeyCode.World60 | KeyCode.World61 | KeyCode.World62 | KeyCode.World63 | KeyCode.World64 | KeyCode.World65 | KeyCode.World66 | KeyCode.World67 | KeyCode.World68 | KeyCode.World69 | KeyCode.World70 | KeyCode.World71 | KeyCode.World72 | KeyCode.World73 | KeyCode.World74 | KeyCode.World75 | KeyCode.World76 | KeyCode.World77 | KeyCode.World78 | KeyCode.World79 | KeyCode.World80 | KeyCode.World81 | KeyCode.World82 | KeyCode.World83 | KeyCode.World84 | KeyCode.World85 | KeyCode.World86 | KeyCode.World87 | KeyCode.World88 | KeyCode.World89 | KeyCode.World90 | KeyCode.World91 | KeyCode.World92 | KeyCode.World93 | KeyCode.World94 | KeyCode.World95 | KeyCode.MouseBackButton | KeyCode.MouseNoButton | KeyCode.MouseX | KeyCode.MouseY;
|
|
19344
|
+
export type KeyCode = KeyCode.Unknown | KeyCode.Backspace | KeyCode.Tab | KeyCode.Clear | KeyCode.Return | KeyCode.Pause | KeyCode.Escape | KeyCode.Space | KeyCode.QuotedDouble | KeyCode.Hash | KeyCode.Dollar | KeyCode.Percent | KeyCode.Ampersand | KeyCode.Quote | KeyCode.LeftParenthesis | KeyCode.RightParenthesis | KeyCode.Asterisk | KeyCode.Plus | KeyCode.Comma | KeyCode.Minus | KeyCode.Period | KeyCode.Slash | KeyCode.Zero | KeyCode.One | KeyCode.Two | KeyCode.Three | KeyCode.Four | KeyCode.Five | KeyCode.Six | KeyCode.Seven | KeyCode.Eight | KeyCode.Nine | KeyCode.Colon | KeyCode.Semicolon | KeyCode.LessThan | KeyCode.Equals | KeyCode.GreaterThan | KeyCode.Question | KeyCode.At | KeyCode.LeftBracket | KeyCode.BackSlash | KeyCode.RightBracket | KeyCode.Caret | KeyCode.Underscore | KeyCode.Backquote | KeyCode.A | KeyCode.B | KeyCode.C | KeyCode.D | KeyCode.E | KeyCode.F | KeyCode.G | KeyCode.H | KeyCode.I | KeyCode.J | KeyCode.K | KeyCode.L | KeyCode.M | KeyCode.N | KeyCode.O | KeyCode.P | KeyCode.Q | KeyCode.R | KeyCode.S | KeyCode.T | KeyCode.U | KeyCode.V | KeyCode.W | KeyCode.X | KeyCode.Y | KeyCode.Z | KeyCode.LeftCurly | KeyCode.Pipe | KeyCode.RightCurly | KeyCode.Tilde | KeyCode.Delete | KeyCode.KeypadZero | KeyCode.KeypadOne | KeyCode.KeypadTwo | KeyCode.KeypadThree | KeyCode.KeypadFour | KeyCode.KeypadFive | KeyCode.KeypadSix | KeyCode.KeypadSeven | KeyCode.KeypadEight | KeyCode.KeypadNine | KeyCode.KeypadPeriod | KeyCode.KeypadDivide | KeyCode.KeypadMultiply | KeyCode.KeypadMinus | KeyCode.KeypadPlus | KeyCode.KeypadEnter | KeyCode.KeypadEquals | KeyCode.Up | KeyCode.Down | KeyCode.Right | KeyCode.Left | KeyCode.Insert | KeyCode.Home | KeyCode.End | KeyCode.PageUp | KeyCode.PageDown | KeyCode.F1 | KeyCode.F2 | KeyCode.F3 | KeyCode.F4 | KeyCode.F5 | KeyCode.F6 | KeyCode.F7 | KeyCode.F8 | KeyCode.F9 | KeyCode.F10 | KeyCode.F11 | KeyCode.F12 | KeyCode.F13 | KeyCode.F14 | KeyCode.F15 | KeyCode.NumLock | KeyCode.CapsLock | KeyCode.ScrollLock | KeyCode.RightShift | KeyCode.LeftShift | KeyCode.RightControl | KeyCode.LeftControl | KeyCode.RightAlt | KeyCode.LeftAlt | KeyCode.RightMeta | KeyCode.LeftMeta | KeyCode.LeftSuper | KeyCode.RightSuper | KeyCode.Mode | KeyCode.Compose | KeyCode.Help | KeyCode.Print | KeyCode.SysReq | KeyCode.Break | KeyCode.Menu | KeyCode.Power | KeyCode.Euro | KeyCode.Undo | KeyCode.ButtonX | KeyCode.ButtonY | KeyCode.ButtonA | KeyCode.ButtonB | KeyCode.ButtonR1 | KeyCode.ButtonL1 | KeyCode.ButtonR2 | KeyCode.ButtonL2 | KeyCode.ButtonR3 | KeyCode.ButtonL3 | KeyCode.ButtonStart | KeyCode.ButtonSelect | KeyCode.DPadLeft | KeyCode.DPadRight | KeyCode.DPadUp | KeyCode.DPadDown | KeyCode.Thumbstick1 | KeyCode.Thumbstick2 | KeyCode.Thumbstick1Up | KeyCode.Thumbstick1Down | KeyCode.Thumbstick1Left | KeyCode.Thumbstick1Right | KeyCode.Thumbstick2Up | KeyCode.Thumbstick2Down | KeyCode.Thumbstick2Left | KeyCode.Thumbstick2Right | KeyCode.MouseLeftButton | KeyCode.MouseRightButton | KeyCode.MouseMiddleButton | KeyCode.MousePosition | KeyCode.World0 | KeyCode.World1 | KeyCode.World2 | KeyCode.World3 | KeyCode.World4 | KeyCode.World5 | KeyCode.World6 | KeyCode.World7 | KeyCode.World8 | KeyCode.World9 | KeyCode.World10 | KeyCode.World11 | KeyCode.World12 | KeyCode.World13 | KeyCode.World14 | KeyCode.World15 | KeyCode.World16 | KeyCode.World17 | KeyCode.World18 | KeyCode.World19 | KeyCode.World20 | KeyCode.World21 | KeyCode.World22 | KeyCode.World23 | KeyCode.World24 | KeyCode.World25 | KeyCode.World26 | KeyCode.World27 | KeyCode.World28 | KeyCode.World29 | KeyCode.World30 | KeyCode.World31 | KeyCode.World32 | KeyCode.World33 | KeyCode.World34 | KeyCode.World35 | KeyCode.World36 | KeyCode.World37 | KeyCode.World38 | KeyCode.World39 | KeyCode.World40 | KeyCode.World41 | KeyCode.World42 | KeyCode.World43 | KeyCode.World44 | KeyCode.World45 | KeyCode.World46 | KeyCode.World47 | KeyCode.World48 | KeyCode.World49 | KeyCode.World50 | KeyCode.World51 | KeyCode.World52 | KeyCode.World53 | KeyCode.World54 | KeyCode.World55 | KeyCode.World56 | KeyCode.World57 | KeyCode.World58 | KeyCode.World59 | KeyCode.World60 | KeyCode.World61 | KeyCode.World62 | KeyCode.World63 | KeyCode.World64 | KeyCode.World65 | KeyCode.World66 | KeyCode.World67 | KeyCode.World68 | KeyCode.World69 | KeyCode.World70 | KeyCode.World71 | KeyCode.World72 | KeyCode.World73 | KeyCode.World74 | KeyCode.World75 | KeyCode.World76 | KeyCode.World77 | KeyCode.World78 | KeyCode.World79 | KeyCode.World80 | KeyCode.World81 | KeyCode.World82 | KeyCode.World83 | KeyCode.World84 | KeyCode.World85 | KeyCode.World86 | KeyCode.World87 | KeyCode.World88 | KeyCode.World89 | KeyCode.World90 | KeyCode.World91 | KeyCode.World92 | KeyCode.World93 | KeyCode.World94 | KeyCode.World95 | KeyCode.MouseBackButton | KeyCode.MouseNoButton | KeyCode.MouseX | KeyCode.MouseY;
|
|
18923
19345
|
/**
|
|
18924
19346
|
* Describes the interpolation method between two keys.
|
|
18925
19347
|
*
|
|
@@ -20297,7 +20719,7 @@ declare namespace Enum {
|
|
|
20297
20719
|
}
|
|
20298
20720
|
export const Pavement: Pavement;
|
|
20299
20721
|
/**
|
|
20300
|
-
* Applies to `BasePart`
|
|
20722
|
+
* Applies to `BasePart` only.
|
|
20301
20723
|
*
|
|
20302
20724
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/Material#CorrodedMetal)
|
|
20303
20725
|
*/
|
|
@@ -21119,15 +21541,6 @@ declare namespace Enum {
|
|
|
21119
21541
|
EnumType: typeof globalThis.Enum.ModelLevelOfDetail;
|
|
21120
21542
|
}
|
|
21121
21543
|
export const StreamingMesh: StreamingMesh;
|
|
21122
|
-
/**
|
|
21123
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModelLevelOfDetail#SLIM)
|
|
21124
|
-
*/
|
|
21125
|
-
export interface SLIM extends globalThis.EnumItem {
|
|
21126
|
-
Name: "SLIM";
|
|
21127
|
-
Value: 2;
|
|
21128
|
-
EnumType: typeof globalThis.Enum.ModelLevelOfDetail;
|
|
21129
|
-
}
|
|
21130
|
-
export const SLIM: SLIM;
|
|
21131
21544
|
/**
|
|
21132
21545
|
* A lower resolution mesh will not be displayed.
|
|
21133
21546
|
*
|
|
@@ -21135,15 +21548,30 @@ declare namespace Enum {
|
|
|
21135
21548
|
*/
|
|
21136
21549
|
export interface Disabled extends globalThis.EnumItem {
|
|
21137
21550
|
Name: "Disabled";
|
|
21138
|
-
Value:
|
|
21551
|
+
Value: 2;
|
|
21139
21552
|
EnumType: typeof globalThis.Enum.ModelLevelOfDetail;
|
|
21140
21553
|
}
|
|
21141
21554
|
export const Disabled: Disabled;
|
|
21555
|
+
/**
|
|
21556
|
+
* @deprecated renamed to Disabled
|
|
21557
|
+
*/
|
|
21558
|
+
export const Deactivated: Disabled;
|
|
21559
|
+
/**
|
|
21560
|
+
* A Scalable Lightweight Interactive Model, or SLIM, model (a composite of all child parts of the model) renders at progressively lower resolutions at distances based on the streaming radius. Greatly improves visual quality over `StreamingMesh`.
|
|
21561
|
+
*
|
|
21562
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModelLevelOfDetail#SLIM)
|
|
21563
|
+
*/
|
|
21564
|
+
export interface SLIM extends globalThis.EnumItem {
|
|
21565
|
+
Name: "SLIM";
|
|
21566
|
+
Value: 4;
|
|
21567
|
+
EnumType: typeof globalThis.Enum.ModelLevelOfDetail;
|
|
21568
|
+
}
|
|
21569
|
+
export const SLIM: SLIM;
|
|
21142
21570
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ModelLevelOfDetail>;
|
|
21143
21571
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ModelLevelOfDetail | undefined;
|
|
21144
21572
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ModelLevelOfDetail | undefined;
|
|
21145
21573
|
}
|
|
21146
|
-
export type ModelLevelOfDetail = ModelLevelOfDetail.Automatic | ModelLevelOfDetail.StreamingMesh | ModelLevelOfDetail.
|
|
21574
|
+
export type ModelLevelOfDetail = ModelLevelOfDetail.Automatic | ModelLevelOfDetail.StreamingMesh | ModelLevelOfDetail.Disabled | ModelLevelOfDetail.SLIM;
|
|
21147
21575
|
/**
|
|
21148
21576
|
* Controls how `Models` are sent to clients in experiences with instance streaming enabled.
|
|
21149
21577
|
*
|
|
@@ -27541,11 +27969,101 @@ declare namespace Enum {
|
|
|
27541
27969
|
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
27542
27970
|
}
|
|
27543
27971
|
export const CapabilityControl: CapabilityControl;
|
|
27972
|
+
/**
|
|
27973
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#Plugin)
|
|
27974
|
+
*/
|
|
27975
|
+
export interface Plugin extends globalThis.EnumItem {
|
|
27976
|
+
Name: "Plugin";
|
|
27977
|
+
Value: 23;
|
|
27978
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
27979
|
+
}
|
|
27980
|
+
export const Plugin: Plugin;
|
|
27981
|
+
/**
|
|
27982
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#LocalUser)
|
|
27983
|
+
*/
|
|
27984
|
+
export interface LocalUser extends globalThis.EnumItem {
|
|
27985
|
+
Name: "LocalUser";
|
|
27986
|
+
Value: 24;
|
|
27987
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
27988
|
+
}
|
|
27989
|
+
export const LocalUser: LocalUser;
|
|
27990
|
+
/**
|
|
27991
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#WritePlayer)
|
|
27992
|
+
*/
|
|
27993
|
+
export interface WritePlayer extends globalThis.EnumItem {
|
|
27994
|
+
Name: "WritePlayer";
|
|
27995
|
+
Value: 25;
|
|
27996
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
27997
|
+
}
|
|
27998
|
+
export const WritePlayer: WritePlayer;
|
|
27999
|
+
/**
|
|
28000
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#RobloxScript)
|
|
28001
|
+
*/
|
|
28002
|
+
export interface RobloxScript extends globalThis.EnumItem {
|
|
28003
|
+
Name: "RobloxScript";
|
|
28004
|
+
Value: 26;
|
|
28005
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
28006
|
+
}
|
|
28007
|
+
export const RobloxScript: RobloxScript;
|
|
28008
|
+
/**
|
|
28009
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#RobloxEngine)
|
|
28010
|
+
*/
|
|
28011
|
+
export interface RobloxEngine extends globalThis.EnumItem {
|
|
28012
|
+
Name: "RobloxEngine";
|
|
28013
|
+
Value: 27;
|
|
28014
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
28015
|
+
}
|
|
28016
|
+
export const RobloxEngine: RobloxEngine;
|
|
28017
|
+
/**
|
|
28018
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#Unassigned)
|
|
28019
|
+
*/
|
|
28020
|
+
export interface Unassigned extends globalThis.EnumItem {
|
|
28021
|
+
Name: "Unassigned";
|
|
28022
|
+
Value: 28;
|
|
28023
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
28024
|
+
}
|
|
28025
|
+
export const Unassigned: Unassigned;
|
|
28026
|
+
/**
|
|
28027
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#InternalTest)
|
|
28028
|
+
*/
|
|
28029
|
+
export interface InternalTest extends globalThis.EnumItem {
|
|
28030
|
+
Name: "InternalTest";
|
|
28031
|
+
Value: 29;
|
|
28032
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
28033
|
+
}
|
|
28034
|
+
export const InternalTest: InternalTest;
|
|
28035
|
+
/**
|
|
28036
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#PluginOrOpenCloud)
|
|
28037
|
+
*/
|
|
28038
|
+
export interface PluginOrOpenCloud extends globalThis.EnumItem {
|
|
28039
|
+
Name: "PluginOrOpenCloud";
|
|
28040
|
+
Value: 30;
|
|
28041
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
28042
|
+
}
|
|
28043
|
+
export const PluginOrOpenCloud: PluginOrOpenCloud;
|
|
28044
|
+
/**
|
|
28045
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#Assistant)
|
|
28046
|
+
*/
|
|
28047
|
+
export interface Assistant extends globalThis.EnumItem {
|
|
28048
|
+
Name: "Assistant";
|
|
28049
|
+
Value: 31;
|
|
28050
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
28051
|
+
}
|
|
28052
|
+
export const Assistant: Assistant;
|
|
28053
|
+
/**
|
|
28054
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#RemoteCommand)
|
|
28055
|
+
*/
|
|
28056
|
+
export interface RemoteCommand extends globalThis.EnumItem {
|
|
28057
|
+
Name: "RemoteCommand";
|
|
28058
|
+
Value: 32;
|
|
28059
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
28060
|
+
}
|
|
28061
|
+
export const RemoteCommand: RemoteCommand;
|
|
27544
28062
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SecurityCapability>;
|
|
27545
28063
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SecurityCapability | undefined;
|
|
27546
28064
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SecurityCapability | undefined;
|
|
27547
28065
|
}
|
|
27548
|
-
export type SecurityCapability = SecurityCapability.RunClientScript | SecurityCapability.RunServerScript | SecurityCapability.AccessOutsideWrite | SecurityCapability.AssetRequire | 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.Avatar | SecurityCapability.Input | SecurityCapability.Environment | SecurityCapability.RemoteEvent | SecurityCapability.LegacySound | SecurityCapability.Players | SecurityCapability.CapabilityControl;
|
|
28066
|
+
export type SecurityCapability = SecurityCapability.RunClientScript | SecurityCapability.RunServerScript | SecurityCapability.AccessOutsideWrite | SecurityCapability.AssetRequire | 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.Avatar | 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;
|
|
27549
28067
|
/**
|
|
27550
28068
|
* Customization options for gamepad selection when `GuiBase2d.SelectionGroup` is true.
|
|
27551
28069
|
*
|
|
@@ -33987,11 +34505,20 @@ declare namespace Enum {
|
|
|
33987
34505
|
EnumType: typeof globalThis.Enum.UploadCaptureResult;
|
|
33988
34506
|
}
|
|
33989
34507
|
export const IneligibleCapture: IneligibleCapture;
|
|
34508
|
+
/**
|
|
34509
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UploadCaptureResult#UploadQuotaReached)
|
|
34510
|
+
*/
|
|
34511
|
+
export interface UploadQuotaReached extends globalThis.EnumItem {
|
|
34512
|
+
Name: "UploadQuotaReached";
|
|
34513
|
+
Value: 5;
|
|
34514
|
+
EnumType: typeof globalThis.Enum.UploadCaptureResult;
|
|
34515
|
+
}
|
|
34516
|
+
export const UploadQuotaReached: UploadQuotaReached;
|
|
33990
34517
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UploadCaptureResult>;
|
|
33991
34518
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.UploadCaptureResult | undefined;
|
|
33992
34519
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UploadCaptureResult | undefined;
|
|
33993
34520
|
}
|
|
33994
|
-
export type UploadCaptureResult = UploadCaptureResult.Success | UploadCaptureResult.NeedPermission | UploadCaptureResult.CaptureModerated | UploadCaptureResult.CaptureNotInGallery | UploadCaptureResult.IneligibleCapture;
|
|
34521
|
+
export type UploadCaptureResult = UploadCaptureResult.Success | UploadCaptureResult.NeedPermission | UploadCaptureResult.CaptureModerated | UploadCaptureResult.CaptureNotInGallery | UploadCaptureResult.IneligibleCapture | UploadCaptureResult.UploadQuotaReached;
|
|
33995
34522
|
/**
|
|
33996
34523
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UsageContext)
|
|
33997
34524
|
*/
|
|
@@ -35905,7 +36432,7 @@ declare namespace Enum {
|
|
|
35905
36432
|
}
|
|
35906
36433
|
export const SSE: SSE;
|
|
35907
36434
|
/**
|
|
35908
|
-
*
|
|
36435
|
+
* General purpose HTTP streaming client. It can connect to any server that provides streaming data transfer (e.g. [chunked encoding](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Transfer-Encoding)). It provides no guarantees about the stream format.
|
|
35909
36436
|
*
|
|
35910
36437
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WebStreamClientType#RawStream)
|
|
35911
36438
|
*/
|
|
@@ -35915,11 +36442,22 @@ declare namespace Enum {
|
|
|
35915
36442
|
EnumType: typeof globalThis.Enum.WebStreamClientType;
|
|
35916
36443
|
}
|
|
35917
36444
|
export const RawStream: RawStream;
|
|
36445
|
+
/**
|
|
36446
|
+
* [WebSocket](https://en.wikipedia.org/wiki/WebSocket) client that provides a bidirectional communication channel over a TCP connection.
|
|
36447
|
+
*
|
|
36448
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WebStreamClientType#WebSocket)
|
|
36449
|
+
*/
|
|
36450
|
+
export interface WebSocket extends globalThis.EnumItem {
|
|
36451
|
+
Name: "WebSocket";
|
|
36452
|
+
Value: 2;
|
|
36453
|
+
EnumType: typeof globalThis.Enum.WebStreamClientType;
|
|
36454
|
+
}
|
|
36455
|
+
export const WebSocket: WebSocket;
|
|
35918
36456
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.WebStreamClientType>;
|
|
35919
36457
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.WebStreamClientType | undefined;
|
|
35920
36458
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WebStreamClientType | undefined;
|
|
35921
36459
|
}
|
|
35922
|
-
export type WebStreamClientType = WebStreamClientType.SSE | WebStreamClientType.RawStream;
|
|
36460
|
+
export type WebStreamClientType = WebStreamClientType.SSE | WebStreamClientType.RawStream | WebStreamClientType.WebSocket;
|
|
35923
36461
|
/**
|
|
35924
36462
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WeldConstraintPreserve)
|
|
35925
36463
|
*/
|