@rbxts/types 1.0.941 → 1.0.943
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 +439 -101
- package/include/generated/PluginSecurity.d.ts +228 -14
- package/include/generated/enums.d.ts +372 -2
- package/package.json +1 -1
|
@@ -3620,6 +3620,8 @@ declare namespace Enum {
|
|
|
3620
3620
|
}
|
|
3621
3621
|
export const AvatarBackground: AvatarBackground;
|
|
3622
3622
|
/**
|
|
3623
|
+
* The asset is a text document.
|
|
3624
|
+
*
|
|
3623
3625
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#TextDocument)
|
|
3624
3626
|
*/
|
|
3625
3627
|
export interface TextDocument extends globalThis.EnumItem {
|
|
@@ -3952,6 +3954,33 @@ declare namespace Enum {
|
|
|
3952
3954
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AudioFilterType | undefined;
|
|
3953
3955
|
}
|
|
3954
3956
|
export type AudioFilterType = AudioFilterType.Peak | AudioFilterType.LowShelf | AudioFilterType.HighShelf | AudioFilterType.Lowpass12dB | AudioFilterType.Lowpass24dB | AudioFilterType.Lowpass48dB | AudioFilterType.Highpass12dB | AudioFilterType.Highpass24dB | AudioFilterType.Highpass48dB | AudioFilterType.Bandpass | AudioFilterType.Notch | AudioFilterType.Lowpass6dB;
|
|
3957
|
+
/**
|
|
3958
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioPositionType)
|
|
3959
|
+
*/
|
|
3960
|
+
export namespace AudioPositionType {
|
|
3961
|
+
/**
|
|
3962
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioPositionType#Parent)
|
|
3963
|
+
*/
|
|
3964
|
+
export interface Parent extends globalThis.EnumItem {
|
|
3965
|
+
Name: "Parent";
|
|
3966
|
+
Value: 0;
|
|
3967
|
+
EnumType: typeof globalThis.Enum.AudioPositionType;
|
|
3968
|
+
}
|
|
3969
|
+
export const Parent: Parent;
|
|
3970
|
+
/**
|
|
3971
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioPositionType#Instance)
|
|
3972
|
+
*/
|
|
3973
|
+
export interface Instance extends globalThis.EnumItem {
|
|
3974
|
+
Name: "Instance";
|
|
3975
|
+
Value: 1;
|
|
3976
|
+
EnumType: typeof globalThis.Enum.AudioPositionType;
|
|
3977
|
+
}
|
|
3978
|
+
export const Instance: Instance;
|
|
3979
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AudioPositionType>;
|
|
3980
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AudioPositionType | undefined;
|
|
3981
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AudioPositionType | undefined;
|
|
3982
|
+
}
|
|
3983
|
+
export type AudioPositionType = AudioPositionType.Parent | AudioPositionType.Instance;
|
|
3955
3984
|
/**
|
|
3956
3985
|
* Enum which determines how detailed audio simulation should be for `AudioEmitters` and `AudioListeners`.
|
|
3957
3986
|
*
|
|
@@ -10223,6 +10252,51 @@ declare namespace Enum {
|
|
|
10223
10252
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CustomCameraMode | undefined;
|
|
10224
10253
|
}
|
|
10225
10254
|
export type CustomCameraMode = CustomCameraMode.Default | CustomCameraMode.Classic | CustomCameraMode.Follow;
|
|
10255
|
+
/**
|
|
10256
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataModelChangeType)
|
|
10257
|
+
*/
|
|
10258
|
+
export namespace DataModelChangeType {
|
|
10259
|
+
/**
|
|
10260
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataModelChangeType#Add)
|
|
10261
|
+
*/
|
|
10262
|
+
export interface Add extends globalThis.EnumItem {
|
|
10263
|
+
Name: "Add";
|
|
10264
|
+
Value: 0;
|
|
10265
|
+
EnumType: typeof globalThis.Enum.DataModelChangeType;
|
|
10266
|
+
}
|
|
10267
|
+
export const Add: Add;
|
|
10268
|
+
/**
|
|
10269
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataModelChangeType#Remove)
|
|
10270
|
+
*/
|
|
10271
|
+
export interface Remove extends globalThis.EnumItem {
|
|
10272
|
+
Name: "Remove";
|
|
10273
|
+
Value: 1;
|
|
10274
|
+
EnumType: typeof globalThis.Enum.DataModelChangeType;
|
|
10275
|
+
}
|
|
10276
|
+
export const Remove: Remove;
|
|
10277
|
+
/**
|
|
10278
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataModelChangeType#Modify)
|
|
10279
|
+
*/
|
|
10280
|
+
export interface Modify extends globalThis.EnumItem {
|
|
10281
|
+
Name: "Modify";
|
|
10282
|
+
Value: 2;
|
|
10283
|
+
EnumType: typeof globalThis.Enum.DataModelChangeType;
|
|
10284
|
+
}
|
|
10285
|
+
export const Modify: Modify;
|
|
10286
|
+
/**
|
|
10287
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataModelChangeType#AddPackage)
|
|
10288
|
+
*/
|
|
10289
|
+
export interface AddPackage extends globalThis.EnumItem {
|
|
10290
|
+
Name: "AddPackage";
|
|
10291
|
+
Value: 3;
|
|
10292
|
+
EnumType: typeof globalThis.Enum.DataModelChangeType;
|
|
10293
|
+
}
|
|
10294
|
+
export const AddPackage: AddPackage;
|
|
10295
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DataModelChangeType>;
|
|
10296
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DataModelChangeType | undefined;
|
|
10297
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DataModelChangeType | undefined;
|
|
10298
|
+
}
|
|
10299
|
+
export type DataModelChangeType = DataModelChangeType.Add | DataModelChangeType.Remove | DataModelChangeType.Modify | DataModelChangeType.AddPackage;
|
|
10226
10300
|
/**
|
|
10227
10301
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataModelExtractorFileType)
|
|
10228
10302
|
*/
|
|
@@ -15553,6 +15627,51 @@ declare namespace Enum {
|
|
|
15553
15627
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FriendStatus | undefined;
|
|
15554
15628
|
}
|
|
15555
15629
|
export type FriendStatus = FriendStatus.Unknown | FriendStatus.NotFriend | FriendStatus.Friend | FriendStatus.FriendRequestSent | FriendStatus.FriendRequestReceived;
|
|
15630
|
+
/**
|
|
15631
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FrustumStreamingMode)
|
|
15632
|
+
*/
|
|
15633
|
+
export namespace FrustumStreamingMode {
|
|
15634
|
+
/**
|
|
15635
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FrustumStreamingMode#Default)
|
|
15636
|
+
*/
|
|
15637
|
+
export interface Default extends globalThis.EnumItem {
|
|
15638
|
+
Name: "Default";
|
|
15639
|
+
Value: 0;
|
|
15640
|
+
EnumType: typeof globalThis.Enum.FrustumStreamingMode;
|
|
15641
|
+
}
|
|
15642
|
+
export const Default: Default;
|
|
15643
|
+
/**
|
|
15644
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FrustumStreamingMode#Enabled)
|
|
15645
|
+
*/
|
|
15646
|
+
export interface Enabled extends globalThis.EnumItem {
|
|
15647
|
+
Name: "Enabled";
|
|
15648
|
+
Value: 1;
|
|
15649
|
+
EnumType: typeof globalThis.Enum.FrustumStreamingMode;
|
|
15650
|
+
}
|
|
15651
|
+
export const Enabled: Enabled;
|
|
15652
|
+
/**
|
|
15653
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FrustumStreamingMode#Disabled)
|
|
15654
|
+
*/
|
|
15655
|
+
export interface Disabled extends globalThis.EnumItem {
|
|
15656
|
+
Name: "Disabled";
|
|
15657
|
+
Value: 2;
|
|
15658
|
+
EnumType: typeof globalThis.Enum.FrustumStreamingMode;
|
|
15659
|
+
}
|
|
15660
|
+
export const Disabled: Disabled;
|
|
15661
|
+
/**
|
|
15662
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FrustumStreamingMode#Automatic)
|
|
15663
|
+
*/
|
|
15664
|
+
export interface Automatic extends globalThis.EnumItem {
|
|
15665
|
+
Name: "Automatic";
|
|
15666
|
+
Value: 3;
|
|
15667
|
+
EnumType: typeof globalThis.Enum.FrustumStreamingMode;
|
|
15668
|
+
}
|
|
15669
|
+
export const Automatic: Automatic;
|
|
15670
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FrustumStreamingMode>;
|
|
15671
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FrustumStreamingMode | undefined;
|
|
15672
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FrustumStreamingMode | undefined;
|
|
15673
|
+
}
|
|
15674
|
+
export type FrustumStreamingMode = FrustumStreamingMode.Default | FrustumStreamingMode.Enabled | FrustumStreamingMode.Disabled | FrustumStreamingMode.Automatic;
|
|
15556
15675
|
/**
|
|
15557
15676
|
* Status of a single functional test run.
|
|
15558
15677
|
*
|
|
@@ -17790,11 +17909,20 @@ declare namespace Enum {
|
|
|
17790
17909
|
EnumType: typeof globalThis.Enum.ImageCombineType;
|
|
17791
17910
|
}
|
|
17792
17911
|
export const NormalMapBlend: NormalMapBlend;
|
|
17912
|
+
/**
|
|
17913
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ImageCombineType#Subtract)
|
|
17914
|
+
*/
|
|
17915
|
+
export interface Subtract extends globalThis.EnumItem {
|
|
17916
|
+
Name: "Subtract";
|
|
17917
|
+
Value: 7;
|
|
17918
|
+
EnumType: typeof globalThis.Enum.ImageCombineType;
|
|
17919
|
+
}
|
|
17920
|
+
export const Subtract: Subtract;
|
|
17793
17921
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ImageCombineType>;
|
|
17794
17922
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ImageCombineType | undefined;
|
|
17795
17923
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ImageCombineType | undefined;
|
|
17796
17924
|
}
|
|
17797
|
-
export type ImageCombineType = ImageCombineType.BlendSourceOver | ImageCombineType.Overwrite | ImageCombineType.Add | ImageCombineType.Multiply | ImageCombineType.AlphaBlend | ImageCombineType.NormalMapBlend;
|
|
17925
|
+
export type ImageCombineType = ImageCombineType.BlendSourceOver | ImageCombineType.Overwrite | ImageCombineType.Add | ImageCombineType.Multiply | ImageCombineType.AlphaBlend | ImageCombineType.NormalMapBlend | ImageCombineType.Subtract;
|
|
17798
17926
|
/**
|
|
17799
17927
|
* The InOut Enum is used to set where the object is on the side of its parent.
|
|
17800
17928
|
*
|
|
@@ -21596,6 +21724,8 @@ declare namespace Enum {
|
|
|
21596
21724
|
}
|
|
21597
21725
|
export const TouchPinch: TouchPinch;
|
|
21598
21726
|
/**
|
|
21727
|
+
* TV remote `Center` button.
|
|
21728
|
+
*
|
|
21599
21729
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonCenter)
|
|
21600
21730
|
*/
|
|
21601
21731
|
export interface ButtonCenter extends globalThis.EnumItem {
|
|
@@ -21605,6 +21735,8 @@ declare namespace Enum {
|
|
|
21605
21735
|
}
|
|
21606
21736
|
export const ButtonCenter: ButtonCenter;
|
|
21607
21737
|
/**
|
|
21738
|
+
* TV remote `Back` button.
|
|
21739
|
+
*
|
|
21608
21740
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonBack)
|
|
21609
21741
|
*/
|
|
21610
21742
|
export interface ButtonBack extends globalThis.EnumItem {
|
|
@@ -21614,6 +21746,8 @@ declare namespace Enum {
|
|
|
21614
21746
|
}
|
|
21615
21747
|
export const ButtonBack: ButtonBack;
|
|
21616
21748
|
/**
|
|
21749
|
+
* `MicroGamepad` (including TV remotes) `Up` directional button.
|
|
21750
|
+
*
|
|
21617
21751
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonUp)
|
|
21618
21752
|
*/
|
|
21619
21753
|
export interface ButtonUp extends globalThis.EnumItem {
|
|
@@ -21623,6 +21757,8 @@ declare namespace Enum {
|
|
|
21623
21757
|
}
|
|
21624
21758
|
export const ButtonUp: ButtonUp;
|
|
21625
21759
|
/**
|
|
21760
|
+
* `MicroGamepad` (including TV remotes) `Down` directional button.
|
|
21761
|
+
*
|
|
21626
21762
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonDown)
|
|
21627
21763
|
*/
|
|
21628
21764
|
export interface ButtonDown extends globalThis.EnumItem {
|
|
@@ -21632,6 +21768,8 @@ declare namespace Enum {
|
|
|
21632
21768
|
}
|
|
21633
21769
|
export const ButtonDown: ButtonDown;
|
|
21634
21770
|
/**
|
|
21771
|
+
* `MicroGamepad` (including TV remotes) `Left` directional button.
|
|
21772
|
+
*
|
|
21635
21773
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonLeft)
|
|
21636
21774
|
*/
|
|
21637
21775
|
export interface ButtonLeft extends globalThis.EnumItem {
|
|
@@ -21641,6 +21779,8 @@ declare namespace Enum {
|
|
|
21641
21779
|
}
|
|
21642
21780
|
export const ButtonLeft: ButtonLeft;
|
|
21643
21781
|
/**
|
|
21782
|
+
* `MicroGamepad` (including TV remotes) `Right` directional button.
|
|
21783
|
+
*
|
|
21644
21784
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonRight)
|
|
21645
21785
|
*/
|
|
21646
21786
|
export interface ButtonRight extends globalThis.EnumItem {
|
|
@@ -27122,10 +27262,14 @@ declare namespace Enum {
|
|
|
27122
27262
|
}
|
|
27123
27263
|
export type PredictionStatus = PredictionStatus.Authoritative | PredictionStatus.Predicted | PredictionStatus.None;
|
|
27124
27264
|
/**
|
|
27265
|
+
* Used with `Workspace.PredictiveStreamingMode` to control whether the engine streams instances predictively. predictively.
|
|
27266
|
+
*
|
|
27125
27267
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictiveStreamingMode)
|
|
27126
27268
|
*/
|
|
27127
27269
|
export namespace PredictiveStreamingMode {
|
|
27128
27270
|
/**
|
|
27271
|
+
* Default behavior, currently equivalent to `Disabled`.
|
|
27272
|
+
*
|
|
27129
27273
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictiveStreamingMode#Default)
|
|
27130
27274
|
*/
|
|
27131
27275
|
export interface Default extends globalThis.EnumItem {
|
|
@@ -27135,6 +27279,8 @@ declare namespace Enum {
|
|
|
27135
27279
|
}
|
|
27136
27280
|
export const Default: Default;
|
|
27137
27281
|
/**
|
|
27282
|
+
* Allow the engine to make streaming decisions predictively.
|
|
27283
|
+
*
|
|
27138
27284
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictiveStreamingMode#Enabled)
|
|
27139
27285
|
*/
|
|
27140
27286
|
export interface Enabled extends globalThis.EnumItem {
|
|
@@ -27144,6 +27290,8 @@ declare namespace Enum {
|
|
|
27144
27290
|
}
|
|
27145
27291
|
export const Enabled: Enabled;
|
|
27146
27292
|
/**
|
|
27293
|
+
* Disable predictive streaming.
|
|
27294
|
+
*
|
|
27147
27295
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictiveStreamingMode#Disabled)
|
|
27148
27296
|
*/
|
|
27149
27297
|
export interface Disabled extends globalThis.EnumItem {
|
|
@@ -27197,6 +27345,8 @@ declare namespace Enum {
|
|
|
27197
27345
|
}
|
|
27198
27346
|
export const Touch: Touch;
|
|
27199
27347
|
/**
|
|
27348
|
+
* The player has connected or most recently interacted with a gamepad without a thumbstick (for example, a TV remote or another limited-input gamepad), and no standard gamepad is currently connected.
|
|
27349
|
+
*
|
|
27200
27350
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PreferredInput#MicroGamepad)
|
|
27201
27351
|
*/
|
|
27202
27352
|
export interface MicroGamepad extends globalThis.EnumItem {
|
|
@@ -32624,6 +32774,24 @@ declare namespace Enum {
|
|
|
32624
32774
|
EnumType: typeof globalThis.Enum.SlimTintMode;
|
|
32625
32775
|
}
|
|
32626
32776
|
export const Meshes: Meshes;
|
|
32777
|
+
/**
|
|
32778
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTintMode#MeshResourcePtr)
|
|
32779
|
+
*/
|
|
32780
|
+
export interface MeshResourcePtr extends globalThis.EnumItem {
|
|
32781
|
+
Name: "MeshResourcePtr";
|
|
32782
|
+
Value: 3;
|
|
32783
|
+
EnumType: typeof globalThis.Enum.SlimTintMode;
|
|
32784
|
+
}
|
|
32785
|
+
export const MeshResourcePtr: MeshResourcePtr;
|
|
32786
|
+
/**
|
|
32787
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTintMode#ContentId)
|
|
32788
|
+
*/
|
|
32789
|
+
export interface ContentId extends globalThis.EnumItem {
|
|
32790
|
+
Name: "ContentId";
|
|
32791
|
+
Value: 4;
|
|
32792
|
+
EnumType: typeof globalThis.Enum.SlimTintMode;
|
|
32793
|
+
}
|
|
32794
|
+
export const ContentId: ContentId;
|
|
32627
32795
|
/**
|
|
32628
32796
|
* Colors meshes by streaming zone. Green indicates the high-fidelity zone where the DataModel is present.; yellow indicates the low-fidelity zone where the DataModel is absent).
|
|
32629
32797
|
*
|
|
@@ -32635,11 +32803,144 @@ declare namespace Enum {
|
|
|
32635
32803
|
EnumType: typeof globalThis.Enum.SlimTintMode;
|
|
32636
32804
|
}
|
|
32637
32805
|
export const Zone: Zone;
|
|
32806
|
+
/**
|
|
32807
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTintMode#TranscoderStatus)
|
|
32808
|
+
*/
|
|
32809
|
+
export interface TranscoderStatus extends globalThis.EnumItem {
|
|
32810
|
+
Name: "TranscoderStatus";
|
|
32811
|
+
Value: 6;
|
|
32812
|
+
EnumType: typeof globalThis.Enum.SlimTintMode;
|
|
32813
|
+
}
|
|
32814
|
+
export const TranscoderStatus: TranscoderStatus;
|
|
32638
32815
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SlimTintMode>;
|
|
32639
32816
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SlimTintMode | undefined;
|
|
32640
32817
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SlimTintMode | undefined;
|
|
32641
32818
|
}
|
|
32642
|
-
export type SlimTintMode = SlimTintMode.None | SlimTintMode.LOD | SlimTintMode.Meshes | SlimTintMode.Zone;
|
|
32819
|
+
export type SlimTintMode = SlimTintMode.None | SlimTintMode.LOD | SlimTintMode.Meshes | SlimTintMode.MeshResourcePtr | SlimTintMode.ContentId | SlimTintMode.Zone | SlimTintMode.TranscoderStatus;
|
|
32820
|
+
/**
|
|
32821
|
+
* Describes the backend transcoding state of a SLIM model, from upload through transcoding to success or failure.
|
|
32822
|
+
*
|
|
32823
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTranscoderStatus)
|
|
32824
|
+
*/
|
|
32825
|
+
export namespace SlimTranscoderStatus {
|
|
32826
|
+
/**
|
|
32827
|
+
* The transcoding status has not yet been determined. This is the initial state before the model has been queried. Shown as magenta in the debug tint overlay.
|
|
32828
|
+
*
|
|
32829
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTranscoderStatus#Unknown)
|
|
32830
|
+
*/
|
|
32831
|
+
export interface Unknown extends globalThis.EnumItem {
|
|
32832
|
+
Name: "Unknown";
|
|
32833
|
+
Value: 0;
|
|
32834
|
+
EnumType: typeof globalThis.Enum.SlimTranscoderStatus;
|
|
32835
|
+
}
|
|
32836
|
+
export const Unknown: Unknown;
|
|
32837
|
+
/**
|
|
32838
|
+
* The model is SLIM-enabled but does not yet have a generated hash, so transcoding has not been requested. Shown as cyan in the debug tint overlay.
|
|
32839
|
+
*
|
|
32840
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTranscoderStatus#NoHash)
|
|
32841
|
+
*/
|
|
32842
|
+
export interface NoHash extends globalThis.EnumItem {
|
|
32843
|
+
Name: "NoHash";
|
|
32844
|
+
Value: 1;
|
|
32845
|
+
EnumType: typeof globalThis.Enum.SlimTranscoderStatus;
|
|
32846
|
+
}
|
|
32847
|
+
export const NoHash: NoHash;
|
|
32848
|
+
/**
|
|
32849
|
+
* The model's property set has not been uploaded to the content-delivery network. Shown as orange in the debug tint overlay.
|
|
32850
|
+
*
|
|
32851
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTranscoderStatus#NotUploaded)
|
|
32852
|
+
*/
|
|
32853
|
+
export interface NotUploaded extends globalThis.EnumItem {
|
|
32854
|
+
Name: "NotUploaded";
|
|
32855
|
+
Value: 2;
|
|
32856
|
+
EnumType: typeof globalThis.Enum.SlimTranscoderStatus;
|
|
32857
|
+
}
|
|
32858
|
+
export const NotUploaded: NotUploaded;
|
|
32859
|
+
/**
|
|
32860
|
+
* The property set has been uploaded to the content-delivery network but has not yet been transcoded into SLIM assets. Shown as yellow in the debug tint overlay.
|
|
32861
|
+
*
|
|
32862
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTranscoderStatus#Uploaded)
|
|
32863
|
+
*/
|
|
32864
|
+
export interface Uploaded extends globalThis.EnumItem {
|
|
32865
|
+
Name: "Uploaded";
|
|
32866
|
+
Value: 3;
|
|
32867
|
+
EnumType: typeof globalThis.Enum.SlimTranscoderStatus;
|
|
32868
|
+
}
|
|
32869
|
+
export const Uploaded: Uploaded;
|
|
32870
|
+
/**
|
|
32871
|
+
* SLIM transcoding is currently in progress on the backend. The model is expected to transition to Succeeded or Failed once transcoding completes. Shown as blue in the debug tint overlay.
|
|
32872
|
+
*
|
|
32873
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTranscoderStatus#InProgress)
|
|
32874
|
+
*/
|
|
32875
|
+
export interface InProgress extends globalThis.EnumItem {
|
|
32876
|
+
Name: "InProgress";
|
|
32877
|
+
Value: 4;
|
|
32878
|
+
EnumType: typeof globalThis.Enum.SlimTranscoderStatus;
|
|
32879
|
+
}
|
|
32880
|
+
export const InProgress: InProgress;
|
|
32881
|
+
/**
|
|
32882
|
+
* Transcoding completed successfully and the SLIM assets are available for streaming. Shown as green in the debug tint overlay.
|
|
32883
|
+
*
|
|
32884
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTranscoderStatus#Succeeded)
|
|
32885
|
+
*/
|
|
32886
|
+
export interface Succeeded extends globalThis.EnumItem {
|
|
32887
|
+
Name: "Succeeded";
|
|
32888
|
+
Value: 5;
|
|
32889
|
+
EnumType: typeof globalThis.Enum.SlimTranscoderStatus;
|
|
32890
|
+
}
|
|
32891
|
+
export const Succeeded: Succeeded;
|
|
32892
|
+
/**
|
|
32893
|
+
* Transcoding did not complete successfully. Shown as red in the debug tint overlay.
|
|
32894
|
+
*
|
|
32895
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTranscoderStatus#Failed)
|
|
32896
|
+
*/
|
|
32897
|
+
export interface Failed extends globalThis.EnumItem {
|
|
32898
|
+
Name: "Failed";
|
|
32899
|
+
Value: 6;
|
|
32900
|
+
EnumType: typeof globalThis.Enum.SlimTranscoderStatus;
|
|
32901
|
+
}
|
|
32902
|
+
export const Failed: Failed;
|
|
32903
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SlimTranscoderStatus>;
|
|
32904
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SlimTranscoderStatus | undefined;
|
|
32905
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SlimTranscoderStatus | undefined;
|
|
32906
|
+
}
|
|
32907
|
+
export type SlimTranscoderStatus = SlimTranscoderStatus.Unknown | SlimTranscoderStatus.NoHash | SlimTranscoderStatus.NotUploaded | SlimTranscoderStatus.Uploaded | SlimTranscoderStatus.InProgress | SlimTranscoderStatus.Succeeded | SlimTranscoderStatus.Failed;
|
|
32908
|
+
/**
|
|
32909
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimViewContext)
|
|
32910
|
+
*/
|
|
32911
|
+
export namespace SlimViewContext {
|
|
32912
|
+
/**
|
|
32913
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimViewContext#Player)
|
|
32914
|
+
*/
|
|
32915
|
+
export interface Player extends globalThis.EnumItem {
|
|
32916
|
+
Name: "Player";
|
|
32917
|
+
Value: 0;
|
|
32918
|
+
EnumType: typeof globalThis.Enum.SlimViewContext;
|
|
32919
|
+
}
|
|
32920
|
+
export const Player: Player;
|
|
32921
|
+
/**
|
|
32922
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimViewContext#Editor)
|
|
32923
|
+
*/
|
|
32924
|
+
export interface Editor extends globalThis.EnumItem {
|
|
32925
|
+
Name: "Editor";
|
|
32926
|
+
Value: 1;
|
|
32927
|
+
EnumType: typeof globalThis.Enum.SlimViewContext;
|
|
32928
|
+
}
|
|
32929
|
+
export const Editor: Editor;
|
|
32930
|
+
/**
|
|
32931
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimViewContext#ImGui)
|
|
32932
|
+
*/
|
|
32933
|
+
export interface ImGui extends globalThis.EnumItem {
|
|
32934
|
+
Name: "ImGui";
|
|
32935
|
+
Value: 2;
|
|
32936
|
+
EnumType: typeof globalThis.Enum.SlimViewContext;
|
|
32937
|
+
}
|
|
32938
|
+
export const ImGui: ImGui;
|
|
32939
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SlimViewContext>;
|
|
32940
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SlimViewContext | undefined;
|
|
32941
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SlimViewContext | undefined;
|
|
32942
|
+
}
|
|
32943
|
+
export type SlimViewContext = SlimViewContext.Player | SlimViewContext.Editor | SlimViewContext.ImGui;
|
|
32643
32944
|
/**
|
|
32644
32945
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SolidPrimitiveType)
|
|
32645
32946
|
*/
|
|
@@ -40170,6 +40471,39 @@ declare namespace Enum {
|
|
|
40170
40471
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VelocityConstraintMode | undefined;
|
|
40171
40472
|
}
|
|
40172
40473
|
export type VelocityConstraintMode = VelocityConstraintMode.Line | VelocityConstraintMode.Plane | VelocityConstraintMode.Vector;
|
|
40474
|
+
/**
|
|
40475
|
+
* Specifies the level of player verification required by `Player:IsVerified()`.
|
|
40476
|
+
*
|
|
40477
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VerifiedLevel)
|
|
40478
|
+
*/
|
|
40479
|
+
export namespace VerifiedLevel {
|
|
40480
|
+
/**
|
|
40481
|
+
* Requires the player to meet the low verification level or higher. This is the default value for `Player:IsVerified()`.
|
|
40482
|
+
*
|
|
40483
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VerifiedLevel#Low)
|
|
40484
|
+
*/
|
|
40485
|
+
export interface Low extends globalThis.EnumItem {
|
|
40486
|
+
Name: "Low";
|
|
40487
|
+
Value: 0;
|
|
40488
|
+
EnumType: typeof globalThis.Enum.VerifiedLevel;
|
|
40489
|
+
}
|
|
40490
|
+
export const Low: Low;
|
|
40491
|
+
/**
|
|
40492
|
+
* Requires the player to meet the high verification level.
|
|
40493
|
+
*
|
|
40494
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VerifiedLevel#High)
|
|
40495
|
+
*/
|
|
40496
|
+
export interface High extends globalThis.EnumItem {
|
|
40497
|
+
Name: "High";
|
|
40498
|
+
Value: 1;
|
|
40499
|
+
EnumType: typeof globalThis.Enum.VerifiedLevel;
|
|
40500
|
+
}
|
|
40501
|
+
export const High: High;
|
|
40502
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VerifiedLevel>;
|
|
40503
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VerifiedLevel | undefined;
|
|
40504
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VerifiedLevel | undefined;
|
|
40505
|
+
}
|
|
40506
|
+
export type VerifiedLevel = VerifiedLevel.Low | VerifiedLevel.High;
|
|
40173
40507
|
/**
|
|
40174
40508
|
* Used by `UIGridStyleLayout.VerticalAlignment` to align the layout vertically within its parent.
|
|
40175
40509
|
*
|
|
@@ -41560,6 +41894,42 @@ declare namespace Enum {
|
|
|
41560
41894
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WhisperChatPrivacyMode | undefined;
|
|
41561
41895
|
}
|
|
41562
41896
|
export type WhisperChatPrivacyMode = WhisperChatPrivacyMode.AllUsers | WhisperChatPrivacyMode.NoOne;
|
|
41897
|
+
/**
|
|
41898
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WindSoundProfile)
|
|
41899
|
+
*/
|
|
41900
|
+
export namespace WindSoundProfile {
|
|
41901
|
+
/**
|
|
41902
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WindSoundProfile#Turbulence)
|
|
41903
|
+
*/
|
|
41904
|
+
export interface Turbulence extends globalThis.EnumItem {
|
|
41905
|
+
Name: "Turbulence";
|
|
41906
|
+
Value: 0;
|
|
41907
|
+
EnumType: typeof globalThis.Enum.WindSoundProfile;
|
|
41908
|
+
}
|
|
41909
|
+
export const Turbulence: Turbulence;
|
|
41910
|
+
/**
|
|
41911
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WindSoundProfile#Whistle)
|
|
41912
|
+
*/
|
|
41913
|
+
export interface Whistle extends globalThis.EnumItem {
|
|
41914
|
+
Name: "Whistle";
|
|
41915
|
+
Value: 1;
|
|
41916
|
+
EnumType: typeof globalThis.Enum.WindSoundProfile;
|
|
41917
|
+
}
|
|
41918
|
+
export const Whistle: Whistle;
|
|
41919
|
+
/**
|
|
41920
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WindSoundProfile#Foliage)
|
|
41921
|
+
*/
|
|
41922
|
+
export interface Foliage extends globalThis.EnumItem {
|
|
41923
|
+
Name: "Foliage";
|
|
41924
|
+
Value: 2;
|
|
41925
|
+
EnumType: typeof globalThis.Enum.WindSoundProfile;
|
|
41926
|
+
}
|
|
41927
|
+
export const Foliage: Foliage;
|
|
41928
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.WindSoundProfile>;
|
|
41929
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.WindSoundProfile | undefined;
|
|
41930
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WindSoundProfile | undefined;
|
|
41931
|
+
}
|
|
41932
|
+
export type WindSoundProfile = WindSoundProfile.Turbulence | WindSoundProfile.Whistle | WindSoundProfile.Foliage;
|
|
41563
41933
|
/**
|
|
41564
41934
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WindowState)
|
|
41565
41935
|
*/
|