@rbxts/types 1.0.895 → 1.0.901
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/README.md +2 -0
- package/include/generated/None.d.ts +898 -51
- package/include/generated/PluginSecurity.d.ts +252 -23
- package/include/generated/enums.d.ts +198 -37
- package/package.json +1 -1
|
@@ -1098,11 +1098,20 @@ declare namespace Enum {
|
|
|
1098
1098
|
EnumType: typeof globalThis.Enum.AlphaMode;
|
|
1099
1099
|
}
|
|
1100
1100
|
export const TintMask: TintMask;
|
|
1101
|
+
/**
|
|
1102
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AlphaMode#Opaque)
|
|
1103
|
+
*/
|
|
1104
|
+
export interface Opaque extends globalThis.EnumItem {
|
|
1105
|
+
Name: "Opaque";
|
|
1106
|
+
Value: 3;
|
|
1107
|
+
EnumType: typeof globalThis.Enum.AlphaMode;
|
|
1108
|
+
}
|
|
1109
|
+
export const Opaque: Opaque;
|
|
1101
1110
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AlphaMode>;
|
|
1102
1111
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AlphaMode | undefined;
|
|
1103
1112
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AlphaMode | undefined;
|
|
1104
1113
|
}
|
|
1105
|
-
export type AlphaMode = AlphaMode.Overlay | AlphaMode.Transparency | AlphaMode.TintMask;
|
|
1114
|
+
export type AlphaMode = AlphaMode.Overlay | AlphaMode.Transparency | AlphaMode.TintMask | AlphaMode.Opaque;
|
|
1106
1115
|
/**
|
|
1107
1116
|
* Used to form a dictionary of custom fields to provide breakdowns in Roblox-provided charts.
|
|
1108
1117
|
*
|
|
@@ -3782,10 +3791,14 @@ declare namespace Enum {
|
|
|
3782
3791
|
}
|
|
3783
3792
|
export type AudioWindowSize = AudioWindowSize.Small | AudioWindowSize.Medium | AudioWindowSize.Large;
|
|
3784
3793
|
/**
|
|
3794
|
+
* Enum used with `Workspace.AuthorityMode`.
|
|
3795
|
+
*
|
|
3785
3796
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AuthorityMode)
|
|
3786
3797
|
*/
|
|
3787
3798
|
export namespace AuthorityMode {
|
|
3788
3799
|
/**
|
|
3800
|
+
* Server authority with client side prediction and rollback enabled.
|
|
3801
|
+
*
|
|
3789
3802
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AuthorityMode#Server)
|
|
3790
3803
|
*/
|
|
3791
3804
|
export interface Server extends globalThis.EnumItem {
|
|
@@ -3795,6 +3808,8 @@ declare namespace Enum {
|
|
|
3795
3808
|
}
|
|
3796
3809
|
export const Server: Server;
|
|
3797
3810
|
/**
|
|
3811
|
+
* Traditional distributed authority model where, for each instance, the engine decides whether the server or a client should be the authority; `BasePart:SetNetworkOwner()` can be used to influence the decision.
|
|
3812
|
+
*
|
|
3798
3813
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AuthorityMode#Automatic)
|
|
3799
3814
|
*/
|
|
3800
3815
|
export interface Automatic extends globalThis.EnumItem {
|
|
@@ -6499,33 +6514,6 @@ declare namespace Enum {
|
|
|
6499
6514
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CatalogSortType | undefined;
|
|
6500
6515
|
}
|
|
6501
6516
|
export type CatalogSortType = CatalogSortType.Relevance | CatalogSortType.PriceHighToLow | CatalogSortType.PriceLowToHigh | CatalogSortType.MostFavorited | CatalogSortType.RecentlyCreated | CatalogSortType.Bestselling;
|
|
6502
|
-
/**
|
|
6503
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CatalogTimedOptionFilter)
|
|
6504
|
-
*/
|
|
6505
|
-
export namespace CatalogTimedOptionFilter {
|
|
6506
|
-
/**
|
|
6507
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CatalogTimedOptionFilter#All)
|
|
6508
|
-
*/
|
|
6509
|
-
export interface All extends globalThis.EnumItem {
|
|
6510
|
-
Name: "All";
|
|
6511
|
-
Value: 1;
|
|
6512
|
-
EnumType: typeof globalThis.Enum.CatalogTimedOptionFilter;
|
|
6513
|
-
}
|
|
6514
|
-
export const All: All;
|
|
6515
|
-
/**
|
|
6516
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CatalogTimedOptionFilter#TimedOptionOnly)
|
|
6517
|
-
*/
|
|
6518
|
-
export interface TimedOptionOnly extends globalThis.EnumItem {
|
|
6519
|
-
Name: "TimedOptionOnly";
|
|
6520
|
-
Value: 2;
|
|
6521
|
-
EnumType: typeof globalThis.Enum.CatalogTimedOptionFilter;
|
|
6522
|
-
}
|
|
6523
|
-
export const TimedOptionOnly: TimedOptionOnly;
|
|
6524
|
-
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CatalogTimedOptionFilter>;
|
|
6525
|
-
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CatalogTimedOptionFilter | undefined;
|
|
6526
|
-
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CatalogTimedOptionFilter | undefined;
|
|
6527
|
-
}
|
|
6528
|
-
export type CatalogTimedOptionFilter = CatalogTimedOptionFilter.All | CatalogTimedOptionFilter.TimedOptionOnly;
|
|
6529
6517
|
/**
|
|
6530
6518
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CellBlock)
|
|
6531
6519
|
*/
|
|
@@ -7909,10 +7897,14 @@ declare namespace Enum {
|
|
|
7909
7897
|
}
|
|
7910
7898
|
export type CompletionTriggerKind = CompletionTriggerKind.Invoked | CompletionTriggerKind.TriggerCharacter | CompletionTriggerKind.TriggerForIncompleteCompletions;
|
|
7911
7899
|
/**
|
|
7900
|
+
* Describes the type of value animated by a `CompositeValueCurve`.
|
|
7901
|
+
*
|
|
7912
7902
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType)
|
|
7913
7903
|
*/
|
|
7914
7904
|
export namespace CompositeValueCurveType {
|
|
7915
7905
|
/**
|
|
7906
|
+
* The `CompositeValueCurve` will animate children of type `FloatCurve` named `"R"`, `"G"`, and `"B"` to animate the corresponding components of the `Color3` value returned by the method `CompositeValueCurve:GetValueAtTime()`.
|
|
7907
|
+
*
|
|
7916
7908
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#ColorRGB)
|
|
7917
7909
|
*/
|
|
7918
7910
|
export interface ColorRGB extends globalThis.EnumItem {
|
|
@@ -7922,6 +7914,8 @@ declare namespace Enum {
|
|
|
7922
7914
|
}
|
|
7923
7915
|
export const ColorRGB: ColorRGB;
|
|
7924
7916
|
/**
|
|
7917
|
+
* The `CompositeValueCurve` will animate children of type `FloatCurve` named `"H"`, `"S"`, and `"V"` to animate hue, saturation, and value of a color that will be converted to RGB before returning a `Color3` value from the method `CompositeValueCurve:GetValueAtTime()`.
|
|
7918
|
+
*
|
|
7925
7919
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#ColorHSV)
|
|
7926
7920
|
*/
|
|
7927
7921
|
export interface ColorHSV extends globalThis.EnumItem {
|
|
@@ -7931,6 +7925,8 @@ declare namespace Enum {
|
|
|
7931
7925
|
}
|
|
7932
7926
|
export const ColorHSV: ColorHSV;
|
|
7933
7927
|
/**
|
|
7928
|
+
* The `CompositeValueCurve` will animate children of type `FloatCurve` named `"Min"` and `"Max"` to animate the corresponding components of the `NumberRange` value returned by the method `CompositeValueCurve:GetValueAtTime()`.
|
|
7929
|
+
*
|
|
7934
7930
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#NumberRange)
|
|
7935
7931
|
*/
|
|
7936
7932
|
export interface NumberRange extends globalThis.EnumItem {
|
|
@@ -7940,6 +7936,8 @@ declare namespace Enum {
|
|
|
7940
7936
|
}
|
|
7941
7937
|
export const NumberRange: NumberRange;
|
|
7942
7938
|
/**
|
|
7939
|
+
* The `CompositeValueCurve` will animate children of type `FloatCurve` named `"MinX"`, `"MaxX"`, `"MinY"`, and `"MaxY"` to animate the corresponding components of the `Rect` value returned by the method `CompositeValueCurve:GetValueAtTime()`.
|
|
7940
|
+
*
|
|
7943
7941
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#Rect)
|
|
7944
7942
|
*/
|
|
7945
7943
|
export interface Rect extends globalThis.EnumItem {
|
|
@@ -7949,6 +7947,8 @@ declare namespace Enum {
|
|
|
7949
7947
|
}
|
|
7950
7948
|
export const Rect: Rect;
|
|
7951
7949
|
/**
|
|
7950
|
+
* The `CompositeValueCurve` will animate children of type `FloatCurve` named `"Scale"` and `"Offset"` to animate the corresponding components of the `UDim` value returned by the method `CompositeValueCurve:GetValueAtTime()`.
|
|
7951
|
+
*
|
|
7952
7952
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#UDim)
|
|
7953
7953
|
*/
|
|
7954
7954
|
export interface UDim extends globalThis.EnumItem {
|
|
@@ -7958,6 +7958,8 @@ declare namespace Enum {
|
|
|
7958
7958
|
}
|
|
7959
7959
|
export const UDim: UDim;
|
|
7960
7960
|
/**
|
|
7961
|
+
* The `CompositeValueCurve` will animate children of type `FloatCurve` named `"ScaleX"`, `"OffsetX"`, `"ScaleY"`, and `"OffsetY"` to animate the corresponding components of the `UDim2` value returned by the method `CompositeValueCurve:GetValueAtTime()`.
|
|
7962
|
+
*
|
|
7961
7963
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#UDim2)
|
|
7962
7964
|
*/
|
|
7963
7965
|
export interface UDim2 extends globalThis.EnumItem {
|
|
@@ -7967,6 +7969,8 @@ declare namespace Enum {
|
|
|
7967
7969
|
}
|
|
7968
7970
|
export const UDim2: UDim2;
|
|
7969
7971
|
/**
|
|
7972
|
+
* The `CompositeValueCurve` will animate children of type `FloatCurve` named `"X"` and `"Y"` to animate the corresponding components of the `Vector2` value returned by the method `CompositeValueCurve:GetValueAtTime()`.
|
|
7973
|
+
*
|
|
7970
7974
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#Vector2)
|
|
7971
7975
|
*/
|
|
7972
7976
|
export interface Vector2 extends globalThis.EnumItem {
|
|
@@ -7976,6 +7980,8 @@ declare namespace Enum {
|
|
|
7976
7980
|
}
|
|
7977
7981
|
export const Vector2: Vector2;
|
|
7978
7982
|
/**
|
|
7983
|
+
* The `CompositeValueCurve` will animate children of type `FloatCurve` named `"X"`, `"Y"`, and `"Z"` to animate the corresponding components of the `Vector3` value returned by the method `CompositeValueCurve:GetValueAtTime()`.
|
|
7984
|
+
*
|
|
7979
7985
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#Vector3)
|
|
7980
7986
|
*/
|
|
7981
7987
|
export interface Vector3 extends globalThis.EnumItem {
|
|
@@ -8467,6 +8473,10 @@ declare namespace Enum {
|
|
|
8467
8473
|
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
8468
8474
|
}
|
|
8469
8475
|
export const DisconnectRaknetErrors: DisconnectRaknetErrors;
|
|
8476
|
+
/**
|
|
8477
|
+
* @deprecated renamed to DisconnectRaknetErrors
|
|
8478
|
+
*/
|
|
8479
|
+
export const DisconnectNoResponse: DisconnectRaknetErrors;
|
|
8470
8480
|
/**
|
|
8471
8481
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectWrongVersion)
|
|
8472
8482
|
*/
|
|
@@ -9590,6 +9600,12 @@ declare namespace Enum {
|
|
|
9590
9600
|
}
|
|
9591
9601
|
export const RemoveVersionAsync: RemoveVersionAsync;
|
|
9592
9602
|
/**
|
|
9603
|
+
* This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
|
|
9604
|
+
*
|
|
9605
|
+
*
|
|
9606
|
+
*
|
|
9607
|
+
* Refers to `GetAsync()`, `GetVersionAsync()`, `GetVersionAtTimeAsync()`, and the read of `UpdateAsync()` for `DataStore`.
|
|
9608
|
+
*
|
|
9593
9609
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#StandardRead)
|
|
9594
9610
|
*/
|
|
9595
9611
|
export interface StandardRead extends globalThis.EnumItem {
|
|
@@ -9599,6 +9615,12 @@ declare namespace Enum {
|
|
|
9599
9615
|
}
|
|
9600
9616
|
export const StandardRead: StandardRead;
|
|
9601
9617
|
/**
|
|
9618
|
+
* This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
|
|
9619
|
+
*
|
|
9620
|
+
*
|
|
9621
|
+
*
|
|
9622
|
+
* Refers to `SetAsync()`, `IncrementAsync()`, and the write of `UpdateAsync()` for `DataStore`.
|
|
9623
|
+
*
|
|
9602
9624
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#StandardWrite)
|
|
9603
9625
|
*/
|
|
9604
9626
|
export interface StandardWrite extends globalThis.EnumItem {
|
|
@@ -9608,6 +9630,12 @@ declare namespace Enum {
|
|
|
9608
9630
|
}
|
|
9609
9631
|
export const StandardWrite: StandardWrite;
|
|
9610
9632
|
/**
|
|
9633
|
+
* This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
|
|
9634
|
+
*
|
|
9635
|
+
*
|
|
9636
|
+
*
|
|
9637
|
+
* Refers to `ListDataStoresAsync()`, and `ListKeysAsync()` and `ListVersionsAsync()` for `DataStore`.
|
|
9638
|
+
*
|
|
9611
9639
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#StandardList)
|
|
9612
9640
|
*/
|
|
9613
9641
|
export interface StandardList extends globalThis.EnumItem {
|
|
@@ -9617,6 +9645,12 @@ declare namespace Enum {
|
|
|
9617
9645
|
}
|
|
9618
9646
|
export const StandardList: StandardList;
|
|
9619
9647
|
/**
|
|
9648
|
+
* This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
|
|
9649
|
+
*
|
|
9650
|
+
*
|
|
9651
|
+
*
|
|
9652
|
+
* Refers to `RemoveAsync()` for `DataStore`.
|
|
9653
|
+
*
|
|
9620
9654
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#StandardRemove)
|
|
9621
9655
|
*/
|
|
9622
9656
|
export interface StandardRemove extends globalThis.EnumItem {
|
|
@@ -9626,6 +9660,12 @@ declare namespace Enum {
|
|
|
9626
9660
|
}
|
|
9627
9661
|
export const StandardRemove: StandardRemove;
|
|
9628
9662
|
/**
|
|
9663
|
+
* This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
|
|
9664
|
+
*
|
|
9665
|
+
*
|
|
9666
|
+
*
|
|
9667
|
+
* Refers to `GetAsync()` and the read of `UpdateAsync()` for `OrderedDataStore`.
|
|
9668
|
+
*
|
|
9629
9669
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#OrderedRead)
|
|
9630
9670
|
*/
|
|
9631
9671
|
export interface OrderedRead extends globalThis.EnumItem {
|
|
@@ -9635,6 +9675,12 @@ declare namespace Enum {
|
|
|
9635
9675
|
}
|
|
9636
9676
|
export const OrderedRead: OrderedRead;
|
|
9637
9677
|
/**
|
|
9678
|
+
* This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
|
|
9679
|
+
*
|
|
9680
|
+
*
|
|
9681
|
+
*
|
|
9682
|
+
* Refers to `SetAsync()`, `IncrementAsync()`, and the write of `UpdateAsync()` for `OrderedDataStore`.
|
|
9683
|
+
*
|
|
9638
9684
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#OrderedWrite)
|
|
9639
9685
|
*/
|
|
9640
9686
|
export interface OrderedWrite extends globalThis.EnumItem {
|
|
@@ -9644,6 +9690,12 @@ declare namespace Enum {
|
|
|
9644
9690
|
}
|
|
9645
9691
|
export const OrderedWrite: OrderedWrite;
|
|
9646
9692
|
/**
|
|
9693
|
+
* This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
|
|
9694
|
+
*
|
|
9695
|
+
*
|
|
9696
|
+
*
|
|
9697
|
+
* Refers to `GetSortedAsync()` for `OrderedDataStore`. GetRequestBudgetForRequestType()`with this enum will return`0`.
|
|
9698
|
+
*
|
|
9647
9699
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#OrderedList)
|
|
9648
9700
|
*/
|
|
9649
9701
|
export interface OrderedList extends globalThis.EnumItem {
|
|
@@ -9653,6 +9705,12 @@ declare namespace Enum {
|
|
|
9653
9705
|
}
|
|
9654
9706
|
export const OrderedList: OrderedList;
|
|
9655
9707
|
/**
|
|
9708
|
+
* This request type is not yet active, `GetRequestBudgetForRequestType()` with this enum will return `0`.
|
|
9709
|
+
*
|
|
9710
|
+
*
|
|
9711
|
+
*
|
|
9712
|
+
* Refers to `RemoveAsync()` for `OrderedDataStore`.
|
|
9713
|
+
*
|
|
9656
9714
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#OrderedRemove)
|
|
9657
9715
|
*/
|
|
9658
9716
|
export interface OrderedRemove extends globalThis.EnumItem {
|
|
@@ -16648,6 +16706,51 @@ declare namespace Enum {
|
|
|
16648
16706
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.InputType | undefined;
|
|
16649
16707
|
}
|
|
16650
16708
|
export type InputType = InputType.NoInput | InputType.Constant | InputType.Sin;
|
|
16709
|
+
/**
|
|
16710
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InstanceFileSyncStatus)
|
|
16711
|
+
*/
|
|
16712
|
+
export namespace InstanceFileSyncStatus {
|
|
16713
|
+
/**
|
|
16714
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InstanceFileSyncStatus#NotSynced)
|
|
16715
|
+
*/
|
|
16716
|
+
export interface NotSynced extends globalThis.EnumItem {
|
|
16717
|
+
Name: "NotSynced";
|
|
16718
|
+
Value: 0;
|
|
16719
|
+
EnumType: typeof globalThis.Enum.InstanceFileSyncStatus;
|
|
16720
|
+
}
|
|
16721
|
+
export const NotSynced: NotSynced;
|
|
16722
|
+
/**
|
|
16723
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InstanceFileSyncStatus#Errored)
|
|
16724
|
+
*/
|
|
16725
|
+
export interface Errored extends globalThis.EnumItem {
|
|
16726
|
+
Name: "Errored";
|
|
16727
|
+
Value: 1;
|
|
16728
|
+
EnumType: typeof globalThis.Enum.InstanceFileSyncStatus;
|
|
16729
|
+
}
|
|
16730
|
+
export const Errored: Errored;
|
|
16731
|
+
/**
|
|
16732
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InstanceFileSyncStatus#SyncedAsRoot)
|
|
16733
|
+
*/
|
|
16734
|
+
export interface SyncedAsRoot extends globalThis.EnumItem {
|
|
16735
|
+
Name: "SyncedAsRoot";
|
|
16736
|
+
Value: 2;
|
|
16737
|
+
EnumType: typeof globalThis.Enum.InstanceFileSyncStatus;
|
|
16738
|
+
}
|
|
16739
|
+
export const SyncedAsRoot: SyncedAsRoot;
|
|
16740
|
+
/**
|
|
16741
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InstanceFileSyncStatus#SyncedAsDescendant)
|
|
16742
|
+
*/
|
|
16743
|
+
export interface SyncedAsDescendant extends globalThis.EnumItem {
|
|
16744
|
+
Name: "SyncedAsDescendant";
|
|
16745
|
+
Value: 3;
|
|
16746
|
+
EnumType: typeof globalThis.Enum.InstanceFileSyncStatus;
|
|
16747
|
+
}
|
|
16748
|
+
export const SyncedAsDescendant: SyncedAsDescendant;
|
|
16749
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.InstanceFileSyncStatus>;
|
|
16750
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.InstanceFileSyncStatus | undefined;
|
|
16751
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.InstanceFileSyncStatus | undefined;
|
|
16752
|
+
}
|
|
16753
|
+
export type InstanceFileSyncStatus = InstanceFileSyncStatus.NotSynced | InstanceFileSyncStatus.Errored | InstanceFileSyncStatus.SyncedAsRoot | InstanceFileSyncStatus.SyncedAsDescendant;
|
|
16651
16754
|
/**
|
|
16652
16755
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/IntermediateMeshGenerationResult)
|
|
16653
16756
|
*/
|
|
@@ -18755,6 +18858,15 @@ declare namespace Enum {
|
|
|
18755
18858
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
18756
18859
|
}
|
|
18757
18860
|
export const MousePosition: MousePosition;
|
|
18861
|
+
/**
|
|
18862
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Touch)
|
|
18863
|
+
*/
|
|
18864
|
+
export interface Touch extends globalThis.EnumItem {
|
|
18865
|
+
Name: "Touch";
|
|
18866
|
+
Value: 1034;
|
|
18867
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
18868
|
+
}
|
|
18869
|
+
export const Touch: Touch;
|
|
18758
18870
|
/**
|
|
18759
18871
|
* **Deprecated:**
|
|
18760
18872
|
*
|
|
@@ -19859,7 +19971,7 @@ declare namespace Enum {
|
|
|
19859
19971
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.KeyCode | undefined;
|
|
19860
19972
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.KeyCode | undefined;
|
|
19861
19973
|
}
|
|
19862
|
-
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;
|
|
19974
|
+
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.Touch | 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;
|
|
19863
19975
|
/**
|
|
19864
19976
|
* Describes the interpolation method between two keys.
|
|
19865
19977
|
*
|
|
@@ -24859,10 +24971,14 @@ declare namespace Enum {
|
|
|
24859
24971
|
}
|
|
24860
24972
|
export type PositionAlignmentMode = PositionAlignmentMode.OneAttachment | PositionAlignmentMode.TwoAttachment;
|
|
24861
24973
|
/**
|
|
24974
|
+
* Enum used with `RunService:SetPredictionMode()` to define the prediction mode for the instance.
|
|
24975
|
+
*
|
|
24862
24976
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionMode)
|
|
24863
24977
|
*/
|
|
24864
24978
|
export namespace PredictionMode {
|
|
24865
24979
|
/**
|
|
24980
|
+
* The engine will automatically decide if this instance should be predicted or not. Currently, only `BaseParts` near the local player character's `Humanoid` will be predicted within a dynamic radius that grows and shrinks based on the device's capability to handle the simulation load.
|
|
24981
|
+
*
|
|
24866
24982
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionMode#Automatic)
|
|
24867
24983
|
*/
|
|
24868
24984
|
export interface Automatic extends globalThis.EnumItem {
|
|
@@ -24872,6 +24988,8 @@ declare namespace Enum {
|
|
|
24872
24988
|
}
|
|
24873
24989
|
export const Automatic: Automatic;
|
|
24874
24990
|
/**
|
|
24991
|
+
* The instance will be predicted. Mismatches in the attributes of this instance between the client and server will cause a rollback and resimulation. If the instance is a `BasePart`, its physics properties will be predicted ahead of the replicated authoritative server state.
|
|
24992
|
+
*
|
|
24875
24993
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionMode#On)
|
|
24876
24994
|
*/
|
|
24877
24995
|
export interface On extends globalThis.EnumItem {
|
|
@@ -24881,6 +24999,8 @@ declare namespace Enum {
|
|
|
24881
24999
|
}
|
|
24882
25000
|
export const On: On;
|
|
24883
25001
|
/**
|
|
25002
|
+
* The instance will **not** be predicted. Regular network ownership semantics apply.
|
|
25003
|
+
*
|
|
24884
25004
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionMode#Off)
|
|
24885
25005
|
*/
|
|
24886
25006
|
export interface Off extends globalThis.EnumItem {
|
|
@@ -24895,10 +25015,14 @@ declare namespace Enum {
|
|
|
24895
25015
|
}
|
|
24896
25016
|
export type PredictionMode = PredictionMode.Automatic | PredictionMode.On | PredictionMode.Off;
|
|
24897
25017
|
/**
|
|
25018
|
+
* Enum used with `RunService:GetPredictionStatus()` to check the status of a specific instance.
|
|
25019
|
+
*
|
|
24898
25020
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionStatus)
|
|
24899
25021
|
*/
|
|
24900
25022
|
export namespace PredictionStatus {
|
|
24901
25023
|
/**
|
|
25024
|
+
* This instance is authoritative.
|
|
25025
|
+
*
|
|
24902
25026
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionStatus#Authoritative)
|
|
24903
25027
|
*/
|
|
24904
25028
|
export interface Authoritative extends globalThis.EnumItem {
|
|
@@ -24908,6 +25032,8 @@ declare namespace Enum {
|
|
|
24908
25032
|
}
|
|
24909
25033
|
export const Authoritative: Authoritative;
|
|
24910
25034
|
/**
|
|
25035
|
+
* This instance is being predicted.
|
|
25036
|
+
*
|
|
24911
25037
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionStatus#Predicted)
|
|
24912
25038
|
*/
|
|
24913
25039
|
export interface Predicted extends globalThis.EnumItem {
|
|
@@ -24917,6 +25043,8 @@ declare namespace Enum {
|
|
|
24917
25043
|
}
|
|
24918
25044
|
export const Predicted: Predicted;
|
|
24919
25045
|
/**
|
|
25046
|
+
* The instance will not be resimulated; classic simulation rules apply instead.
|
|
25047
|
+
*
|
|
24920
25048
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionStatus#None)
|
|
24921
25049
|
*/
|
|
24922
25050
|
export interface None extends globalThis.EnumItem {
|
|
@@ -26738,6 +26866,33 @@ declare namespace Enum {
|
|
|
26738
26866
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RestPose | undefined;
|
|
26739
26867
|
}
|
|
26740
26868
|
export type RestPose = RestPose.Default | RestPose.RotationsReset | RestPose.Custom;
|
|
26869
|
+
/**
|
|
26870
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RestPoseModel)
|
|
26871
|
+
*/
|
|
26872
|
+
export namespace RestPoseModel {
|
|
26873
|
+
/**
|
|
26874
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RestPoseModel#FromRigInACE)
|
|
26875
|
+
*/
|
|
26876
|
+
export interface FromRigInACE extends globalThis.EnumItem {
|
|
26877
|
+
Name: "FromRigInACE";
|
|
26878
|
+
Value: 0;
|
|
26879
|
+
EnumType: typeof globalThis.Enum.RestPoseModel;
|
|
26880
|
+
}
|
|
26881
|
+
export const FromRigInACE: FromRigInACE;
|
|
26882
|
+
/**
|
|
26883
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RestPoseModel#FromRigInFile)
|
|
26884
|
+
*/
|
|
26885
|
+
export interface FromRigInFile extends globalThis.EnumItem {
|
|
26886
|
+
Name: "FromRigInFile";
|
|
26887
|
+
Value: 1;
|
|
26888
|
+
EnumType: typeof globalThis.Enum.RestPoseModel;
|
|
26889
|
+
}
|
|
26890
|
+
export const FromRigInFile: FromRigInFile;
|
|
26891
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RestPoseModel>;
|
|
26892
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RestPoseModel | undefined;
|
|
26893
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RestPoseModel | undefined;
|
|
26894
|
+
}
|
|
26895
|
+
export type RestPoseModel = RestPoseModel.FromRigInACE | RestPoseModel.FromRigInFile;
|
|
26741
26896
|
/**
|
|
26742
26897
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReturnKeyType)
|
|
26743
26898
|
*/
|
|
@@ -29779,10 +29934,14 @@ declare namespace Enum {
|
|
|
29779
29934
|
}
|
|
29780
29935
|
export type Status = Status.Poison | Status.Confusion;
|
|
29781
29936
|
/**
|
|
29937
|
+
* Enum used with `RunService:BindToSimulation()` to indicate the frequency at which the bound function is called.
|
|
29938
|
+
*
|
|
29782
29939
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StepFrequency)
|
|
29783
29940
|
*/
|
|
29784
29941
|
export namespace StepFrequency {
|
|
29785
29942
|
/**
|
|
29943
|
+
* The bound function is called at 60 Hz.
|
|
29944
|
+
*
|
|
29786
29945
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StepFrequency#Hz60)
|
|
29787
29946
|
*/
|
|
29788
29947
|
export interface Hz60 extends globalThis.EnumItem {
|
|
@@ -29792,6 +29951,8 @@ declare namespace Enum {
|
|
|
29792
29951
|
}
|
|
29793
29952
|
export const Hz60: Hz60;
|
|
29794
29953
|
/**
|
|
29954
|
+
* The bound function is called at 30 Hz.
|
|
29955
|
+
*
|
|
29795
29956
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StepFrequency#Hz30)
|
|
29796
29957
|
*/
|
|
29797
29958
|
export interface Hz30 extends globalThis.EnumItem {
|
|
@@ -29801,6 +29962,8 @@ declare namespace Enum {
|
|
|
29801
29962
|
}
|
|
29802
29963
|
export const Hz30: Hz30;
|
|
29803
29964
|
/**
|
|
29965
|
+
* The bound function is called at 15 Hz.
|
|
29966
|
+
*
|
|
29804
29967
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StepFrequency#Hz15)
|
|
29805
29968
|
*/
|
|
29806
29969
|
export interface Hz15 extends globalThis.EnumItem {
|
|
@@ -29810,6 +29973,8 @@ declare namespace Enum {
|
|
|
29810
29973
|
}
|
|
29811
29974
|
export const Hz15: Hz15;
|
|
29812
29975
|
/**
|
|
29976
|
+
* The bound function is called at 10 Hz.
|
|
29977
|
+
*
|
|
29813
29978
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StepFrequency#Hz10)
|
|
29814
29979
|
*/
|
|
29815
29980
|
export interface Hz10 extends globalThis.EnumItem {
|
|
@@ -29819,6 +29984,8 @@ declare namespace Enum {
|
|
|
29819
29984
|
}
|
|
29820
29985
|
export const Hz10: Hz10;
|
|
29821
29986
|
/**
|
|
29987
|
+
* The bound function is called at 5 Hz.
|
|
29988
|
+
*
|
|
29822
29989
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StepFrequency#Hz5)
|
|
29823
29990
|
*/
|
|
29824
29991
|
export interface Hz5 extends globalThis.EnumItem {
|
|
@@ -29828,6 +29995,8 @@ declare namespace Enum {
|
|
|
29828
29995
|
}
|
|
29829
29996
|
export const Hz5: Hz5;
|
|
29830
29997
|
/**
|
|
29998
|
+
* The bound function is called at 1 Hz.
|
|
29999
|
+
*
|
|
29831
30000
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StepFrequency#Hz1)
|
|
29832
30001
|
*/
|
|
29833
30002
|
export interface Hz1 extends globalThis.EnumItem {
|
|
@@ -37107,14 +37276,10 @@ declare namespace Enum {
|
|
|
37107
37276
|
}
|
|
37108
37277
|
export type VoiceControlPath = VoiceControlPath.Publish | VoiceControlPath.Subscribe | VoiceControlPath.Join;
|
|
37109
37278
|
/**
|
|
37110
|
-
* Enum used with `SoundService.VolumetricAudio`.
|
|
37111
|
-
*
|
|
37112
37279
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio)
|
|
37113
37280
|
*/
|
|
37114
37281
|
export namespace VolumetricAudio {
|
|
37115
37282
|
/**
|
|
37116
|
-
* Volumetric audio is disabled.
|
|
37117
|
-
*
|
|
37118
37283
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio#Disabled)
|
|
37119
37284
|
*/
|
|
37120
37285
|
export interface Disabled extends globalThis.EnumItem {
|
|
@@ -37124,8 +37289,6 @@ declare namespace Enum {
|
|
|
37124
37289
|
}
|
|
37125
37290
|
export const Disabled: Disabled;
|
|
37126
37291
|
/**
|
|
37127
|
-
* Volumetric audio is in the default state, currently `Disabled`.
|
|
37128
|
-
*
|
|
37129
37292
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio#Automatic)
|
|
37130
37293
|
*/
|
|
37131
37294
|
export interface Automatic extends globalThis.EnumItem {
|
|
@@ -37135,8 +37298,6 @@ declare namespace Enum {
|
|
|
37135
37298
|
}
|
|
37136
37299
|
export const Automatic: Automatic;
|
|
37137
37300
|
/**
|
|
37138
|
-
* Volumetric audio is enabled.
|
|
37139
|
-
*
|
|
37140
37301
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio#Enabled)
|
|
37141
37302
|
*/
|
|
37142
37303
|
export interface Enabled extends globalThis.EnumItem {
|