@rbxts/types 1.0.913 → 1.0.914
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 +274 -13
- package/include/generated/PluginSecurity.d.ts +208 -0
- package/include/generated/enums.d.ts +320 -229
- package/package.json +1 -1
|
@@ -2017,17 +2017,6 @@ declare namespace Enum {
|
|
|
2017
2017
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationPriority)
|
|
2018
2018
|
*/
|
|
2019
2019
|
export namespace AnimationPriority {
|
|
2020
|
-
/**
|
|
2021
|
-
* (7) - Lowest priority, intended for use by Roblox default animations and catalog animation bundles.
|
|
2022
|
-
*
|
|
2023
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationPriority#Core)
|
|
2024
|
-
*/
|
|
2025
|
-
export interface Core extends globalThis.EnumItem {
|
|
2026
|
-
Name: "Core";
|
|
2027
|
-
Value: 1000;
|
|
2028
|
-
EnumType: typeof globalThis.Enum.AnimationPriority;
|
|
2029
|
-
}
|
|
2030
|
-
export const Core: Core;
|
|
2031
2020
|
/**
|
|
2032
2021
|
* (6) - Recommended priority for character idle animations.
|
|
2033
2022
|
*
|
|
@@ -2094,11 +2083,22 @@ declare namespace Enum {
|
|
|
2094
2083
|
EnumType: typeof globalThis.Enum.AnimationPriority;
|
|
2095
2084
|
}
|
|
2096
2085
|
export const Action4: Action4;
|
|
2086
|
+
/**
|
|
2087
|
+
* (7) - Lowest priority, intended for use by Roblox default animations and catalog animation bundles.
|
|
2088
|
+
*
|
|
2089
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationPriority#Core)
|
|
2090
|
+
*/
|
|
2091
|
+
export interface Core extends globalThis.EnumItem {
|
|
2092
|
+
Name: "Core";
|
|
2093
|
+
Value: 1000;
|
|
2094
|
+
EnumType: typeof globalThis.Enum.AnimationPriority;
|
|
2095
|
+
}
|
|
2096
|
+
export const Core: Core;
|
|
2097
2097
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationPriority>;
|
|
2098
2098
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationPriority | undefined;
|
|
2099
2099
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationPriority | undefined;
|
|
2100
2100
|
}
|
|
2101
|
-
export type AnimationPriority = AnimationPriority.
|
|
2101
|
+
export type AnimationPriority = AnimationPriority.Idle | AnimationPriority.Movement | AnimationPriority.Action | AnimationPriority.Action2 | AnimationPriority.Action3 | AnimationPriority.Action4 | AnimationPriority.Core;
|
|
2102
2102
|
/**
|
|
2103
2103
|
* Animation Retargeting setting.
|
|
2104
2104
|
*
|
|
@@ -3281,6 +3281,24 @@ declare namespace Enum {
|
|
|
3281
3281
|
EnumType: typeof globalThis.Enum.AssetType;
|
|
3282
3282
|
}
|
|
3283
3283
|
export const PoseAnimation: PoseAnimation;
|
|
3284
|
+
/**
|
|
3285
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#EarAccessory)
|
|
3286
|
+
*/
|
|
3287
|
+
export interface EarAccessory extends globalThis.EnumItem {
|
|
3288
|
+
Name: "EarAccessory";
|
|
3289
|
+
Value: 57;
|
|
3290
|
+
EnumType: typeof globalThis.Enum.AssetType;
|
|
3291
|
+
}
|
|
3292
|
+
export const EarAccessory: EarAccessory;
|
|
3293
|
+
/**
|
|
3294
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#EyeAccessory)
|
|
3295
|
+
*/
|
|
3296
|
+
export interface EyeAccessory extends globalThis.EnumItem {
|
|
3297
|
+
Name: "EyeAccessory";
|
|
3298
|
+
Value: 58;
|
|
3299
|
+
EnumType: typeof globalThis.Enum.AssetType;
|
|
3300
|
+
}
|
|
3301
|
+
export const EyeAccessory: EyeAccessory;
|
|
3284
3302
|
/**
|
|
3285
3303
|
* The asset is an emote animation.
|
|
3286
3304
|
*
|
|
@@ -3460,29 +3478,11 @@ declare namespace Enum {
|
|
|
3460
3478
|
EnumType: typeof globalThis.Enum.AssetType;
|
|
3461
3479
|
}
|
|
3462
3480
|
export const EyeMakeup: EyeMakeup;
|
|
3463
|
-
/**
|
|
3464
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#EarAccessory)
|
|
3465
|
-
*/
|
|
3466
|
-
export interface EarAccessory extends globalThis.EnumItem {
|
|
3467
|
-
Name: "EarAccessory";
|
|
3468
|
-
Value: 57;
|
|
3469
|
-
EnumType: typeof globalThis.Enum.AssetType;
|
|
3470
|
-
}
|
|
3471
|
-
export const EarAccessory: EarAccessory;
|
|
3472
|
-
/**
|
|
3473
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#EyeAccessory)
|
|
3474
|
-
*/
|
|
3475
|
-
export interface EyeAccessory extends globalThis.EnumItem {
|
|
3476
|
-
Name: "EyeAccessory";
|
|
3477
|
-
Value: 58;
|
|
3478
|
-
EnumType: typeof globalThis.Enum.AssetType;
|
|
3479
|
-
}
|
|
3480
|
-
export const EyeAccessory: EyeAccessory;
|
|
3481
3481
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AssetType>;
|
|
3482
3482
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AssetType | undefined;
|
|
3483
3483
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AssetType | undefined;
|
|
3484
3484
|
}
|
|
3485
|
-
export type AssetType = AssetType.Image | AssetType.TShirt | AssetType.Audio | AssetType.Mesh | AssetType.Lua | AssetType.Hat | AssetType.Place | AssetType.Model | AssetType.Shirt | AssetType.Pants | AssetType.Decal | AssetType.Head | AssetType.Face | AssetType.Gear | AssetType.Badge | AssetType.Animation | AssetType.Torso | AssetType.RightArm | AssetType.LeftArm | AssetType.LeftLeg | AssetType.RightLeg | AssetType.Package | AssetType.GamePass | AssetType.Plugin | AssetType.MeshPart | AssetType.HairAccessory | AssetType.FaceAccessory | AssetType.NeckAccessory | AssetType.ShoulderAccessory | AssetType.FrontAccessory | AssetType.BackAccessory | AssetType.WaistAccessory | AssetType.ClimbAnimation | AssetType.DeathAnimation | AssetType.FallAnimation | AssetType.IdleAnimation | AssetType.JumpAnimation | AssetType.RunAnimation | AssetType.SwimAnimation | AssetType.WalkAnimation | AssetType.PoseAnimation | AssetType.EmoteAnimation | AssetType.Video | AssetType.TShirtAccessory | AssetType.ShirtAccessory | AssetType.PantsAccessory | AssetType.JacketAccessory | AssetType.SweaterAccessory | AssetType.ShortsAccessory | AssetType.LeftShoeAccessory | AssetType.RightShoeAccessory | AssetType.DressSkirtAccessory | AssetType.FontFamily | AssetType.EyebrowAccessory | AssetType.EyelashAccessory | AssetType.MoodAnimation | AssetType.DynamicHead | AssetType.FaceMakeup | AssetType.LipMakeup | AssetType.EyeMakeup
|
|
3485
|
+
export type AssetType = AssetType.Image | AssetType.TShirt | AssetType.Audio | AssetType.Mesh | AssetType.Lua | AssetType.Hat | AssetType.Place | AssetType.Model | AssetType.Shirt | AssetType.Pants | AssetType.Decal | AssetType.Head | AssetType.Face | AssetType.Gear | AssetType.Badge | AssetType.Animation | AssetType.Torso | AssetType.RightArm | AssetType.LeftArm | AssetType.LeftLeg | AssetType.RightLeg | AssetType.Package | AssetType.GamePass | AssetType.Plugin | AssetType.MeshPart | AssetType.HairAccessory | AssetType.FaceAccessory | AssetType.NeckAccessory | AssetType.ShoulderAccessory | AssetType.FrontAccessory | AssetType.BackAccessory | AssetType.WaistAccessory | AssetType.ClimbAnimation | AssetType.DeathAnimation | AssetType.FallAnimation | AssetType.IdleAnimation | AssetType.JumpAnimation | AssetType.RunAnimation | AssetType.SwimAnimation | AssetType.WalkAnimation | AssetType.PoseAnimation | AssetType.EarAccessory | AssetType.EyeAccessory | AssetType.EmoteAnimation | AssetType.Video | AssetType.TShirtAccessory | AssetType.ShirtAccessory | AssetType.PantsAccessory | AssetType.JacketAccessory | AssetType.SweaterAccessory | AssetType.ShortsAccessory | AssetType.LeftShoeAccessory | AssetType.RightShoeAccessory | AssetType.DressSkirtAccessory | AssetType.FontFamily | AssetType.EyebrowAccessory | AssetType.EyelashAccessory | AssetType.MoodAnimation | AssetType.DynamicHead | AssetType.FaceMakeup | AssetType.LipMakeup | AssetType.EyeMakeup;
|
|
3486
3486
|
/**
|
|
3487
3487
|
* Determines the asset type verification mode.
|
|
3488
3488
|
*
|
|
@@ -4322,15 +4322,6 @@ declare namespace Enum {
|
|
|
4322
4322
|
EnumType: typeof globalThis.Enum.AvatarAssetType;
|
|
4323
4323
|
}
|
|
4324
4324
|
export const WalkAnimation: WalkAnimation;
|
|
4325
|
-
/**
|
|
4326
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarAssetType#MoodAnimation)
|
|
4327
|
-
*/
|
|
4328
|
-
export interface MoodAnimation extends globalThis.EnumItem {
|
|
4329
|
-
Name: "MoodAnimation";
|
|
4330
|
-
Value: 78;
|
|
4331
|
-
EnumType: typeof globalThis.Enum.AvatarAssetType;
|
|
4332
|
-
}
|
|
4333
|
-
export const MoodAnimation: MoodAnimation;
|
|
4334
4325
|
/**
|
|
4335
4326
|
* An emote animation.
|
|
4336
4327
|
*
|
|
@@ -4463,6 +4454,15 @@ declare namespace Enum {
|
|
|
4463
4454
|
EnumType: typeof globalThis.Enum.AvatarAssetType;
|
|
4464
4455
|
}
|
|
4465
4456
|
export const EyelashAccessory: EyelashAccessory;
|
|
4457
|
+
/**
|
|
4458
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarAssetType#MoodAnimation)
|
|
4459
|
+
*/
|
|
4460
|
+
export interface MoodAnimation extends globalThis.EnumItem {
|
|
4461
|
+
Name: "MoodAnimation";
|
|
4462
|
+
Value: 78;
|
|
4463
|
+
EnumType: typeof globalThis.Enum.AvatarAssetType;
|
|
4464
|
+
}
|
|
4465
|
+
export const MoodAnimation: MoodAnimation;
|
|
4466
4466
|
/**
|
|
4467
4467
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarAssetType#DynamicHead)
|
|
4468
4468
|
*/
|
|
@@ -4503,7 +4503,7 @@ declare namespace Enum {
|
|
|
4503
4503
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarAssetType | undefined;
|
|
4504
4504
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarAssetType | undefined;
|
|
4505
4505
|
}
|
|
4506
|
-
export type AvatarAssetType = AvatarAssetType.TShirt | AvatarAssetType.Hat | AvatarAssetType.Shirt | AvatarAssetType.Pants | AvatarAssetType.Head | AvatarAssetType.Face | AvatarAssetType.Gear | AvatarAssetType.Torso | AvatarAssetType.RightArm | AvatarAssetType.LeftArm | AvatarAssetType.LeftLeg | AvatarAssetType.RightLeg | AvatarAssetType.HairAccessory | AvatarAssetType.FaceAccessory | AvatarAssetType.NeckAccessory | AvatarAssetType.ShoulderAccessory | AvatarAssetType.FrontAccessory | AvatarAssetType.BackAccessory | AvatarAssetType.WaistAccessory | AvatarAssetType.ClimbAnimation | AvatarAssetType.FallAnimation | AvatarAssetType.IdleAnimation | AvatarAssetType.JumpAnimation | AvatarAssetType.RunAnimation | AvatarAssetType.SwimAnimation | AvatarAssetType.WalkAnimation | AvatarAssetType.
|
|
4506
|
+
export type AvatarAssetType = AvatarAssetType.TShirt | AvatarAssetType.Hat | AvatarAssetType.Shirt | AvatarAssetType.Pants | AvatarAssetType.Head | AvatarAssetType.Face | AvatarAssetType.Gear | AvatarAssetType.Torso | AvatarAssetType.RightArm | AvatarAssetType.LeftArm | AvatarAssetType.LeftLeg | AvatarAssetType.RightLeg | AvatarAssetType.HairAccessory | AvatarAssetType.FaceAccessory | AvatarAssetType.NeckAccessory | AvatarAssetType.ShoulderAccessory | AvatarAssetType.FrontAccessory | AvatarAssetType.BackAccessory | AvatarAssetType.WaistAccessory | AvatarAssetType.ClimbAnimation | AvatarAssetType.FallAnimation | AvatarAssetType.IdleAnimation | AvatarAssetType.JumpAnimation | AvatarAssetType.RunAnimation | AvatarAssetType.SwimAnimation | AvatarAssetType.WalkAnimation | AvatarAssetType.EmoteAnimation | AvatarAssetType.TShirtAccessory | AvatarAssetType.ShirtAccessory | AvatarAssetType.PantsAccessory | AvatarAssetType.JacketAccessory | AvatarAssetType.SweaterAccessory | AvatarAssetType.ShortsAccessory | AvatarAssetType.LeftShoeAccessory | AvatarAssetType.RightShoeAccessory | AvatarAssetType.DressSkirtAccessory | AvatarAssetType.EyebrowAccessory | AvatarAssetType.EyelashAccessory | AvatarAssetType.MoodAnimation | AvatarAssetType.DynamicHead | AvatarAssetType.FaceMakeup | AvatarAssetType.LipMakeup | AvatarAssetType.EyeMakeup;
|
|
4507
4507
|
/**
|
|
4508
4508
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarChatServiceFeature)
|
|
4509
4509
|
*/
|
|
@@ -6087,17 +6087,6 @@ declare namespace Enum {
|
|
|
6087
6087
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/Button)
|
|
6088
6088
|
*/
|
|
6089
6089
|
export namespace Button {
|
|
6090
|
-
/**
|
|
6091
|
-
* The Jump button.
|
|
6092
|
-
*
|
|
6093
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/Button#Jump)
|
|
6094
|
-
*/
|
|
6095
|
-
export interface Jump extends globalThis.EnumItem {
|
|
6096
|
-
Name: "Jump";
|
|
6097
|
-
Value: 32;
|
|
6098
|
-
EnumType: typeof globalThis.Enum.Button;
|
|
6099
|
-
}
|
|
6100
|
-
export const Jump: Jump;
|
|
6101
6090
|
/**
|
|
6102
6091
|
* The Dismount button.
|
|
6103
6092
|
*
|
|
@@ -6109,11 +6098,22 @@ declare namespace Enum {
|
|
|
6109
6098
|
EnumType: typeof globalThis.Enum.Button;
|
|
6110
6099
|
}
|
|
6111
6100
|
export const Dismount: Dismount;
|
|
6101
|
+
/**
|
|
6102
|
+
* The Jump button.
|
|
6103
|
+
*
|
|
6104
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/Button#Jump)
|
|
6105
|
+
*/
|
|
6106
|
+
export interface Jump extends globalThis.EnumItem {
|
|
6107
|
+
Name: "Jump";
|
|
6108
|
+
Value: 32;
|
|
6109
|
+
EnumType: typeof globalThis.Enum.Button;
|
|
6110
|
+
}
|
|
6111
|
+
export const Jump: Jump;
|
|
6112
6112
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.Button>;
|
|
6113
6113
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.Button | undefined;
|
|
6114
6114
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.Button | undefined;
|
|
6115
6115
|
}
|
|
6116
|
-
export type Button = Button.
|
|
6116
|
+
export type Button = Button.Dismount | Button.Jump;
|
|
6117
6117
|
/**
|
|
6118
6118
|
* Used by `GuiButton.Style` to set a special hardcoded appearance.
|
|
6119
6119
|
*
|
|
@@ -9626,6 +9626,8 @@ declare namespace Enum {
|
|
|
9626
9626
|
*/
|
|
9627
9627
|
export namespace CreateContentResult {
|
|
9628
9628
|
/**
|
|
9629
|
+
* Success.
|
|
9630
|
+
*
|
|
9629
9631
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult#Success)
|
|
9630
9632
|
*/
|
|
9631
9633
|
export interface Success extends globalThis.EnumItem {
|
|
@@ -9635,6 +9637,8 @@ declare namespace Enum {
|
|
|
9635
9637
|
}
|
|
9636
9638
|
export const Success: Success;
|
|
9637
9639
|
/**
|
|
9640
|
+
* The user does not have the required permissions to perform this operation.
|
|
9641
|
+
*
|
|
9638
9642
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult#PermissionDenied)
|
|
9639
9643
|
*/
|
|
9640
9644
|
export interface PermissionDenied extends globalThis.EnumItem {
|
|
@@ -9644,6 +9648,8 @@ declare namespace Enum {
|
|
|
9644
9648
|
}
|
|
9645
9649
|
export const PermissionDenied: PermissionDenied;
|
|
9646
9650
|
/**
|
|
9651
|
+
* Asset failed to upload.
|
|
9652
|
+
*
|
|
9647
9653
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult#UploadFailed)
|
|
9648
9654
|
*/
|
|
9649
9655
|
export interface UploadFailed extends globalThis.EnumItem {
|
|
@@ -9653,6 +9659,8 @@ declare namespace Enum {
|
|
|
9653
9659
|
}
|
|
9654
9660
|
export const UploadFailed: UploadFailed;
|
|
9655
9661
|
/**
|
|
9662
|
+
* The storage budget limit for `DataModel`-scoped content was exceeded.
|
|
9663
|
+
*
|
|
9656
9664
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult#StorageLimitExceeded)
|
|
9657
9665
|
*/
|
|
9658
9666
|
export interface StorageLimitExceeded extends globalThis.EnumItem {
|
|
@@ -9662,6 +9670,8 @@ declare namespace Enum {
|
|
|
9662
9670
|
}
|
|
9663
9671
|
export const StorageLimitExceeded: StorageLimitExceeded;
|
|
9664
9672
|
/**
|
|
9673
|
+
* An unknown error occurred.
|
|
9674
|
+
*
|
|
9665
9675
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult#Unknown)
|
|
9666
9676
|
*/
|
|
9667
9677
|
export interface Unknown extends globalThis.EnumItem {
|
|
@@ -21910,6 +21920,17 @@ declare namespace Enum {
|
|
|
21910
21920
|
EnumType: typeof globalThis.Enum.Material;
|
|
21911
21921
|
}
|
|
21912
21922
|
export const Marble: Marble;
|
|
21923
|
+
/**
|
|
21924
|
+
* Applies to `BasePart` and `Terrain`.
|
|
21925
|
+
*
|
|
21926
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/Material#Basalt)
|
|
21927
|
+
*/
|
|
21928
|
+
export interface Basalt extends globalThis.EnumItem {
|
|
21929
|
+
Name: "Basalt";
|
|
21930
|
+
Value: 788;
|
|
21931
|
+
EnumType: typeof globalThis.Enum.Material;
|
|
21932
|
+
}
|
|
21933
|
+
export const Basalt: Basalt;
|
|
21913
21934
|
/**
|
|
21914
21935
|
* Applies to `BasePart` and `Terrain`.
|
|
21915
21936
|
*
|
|
@@ -21921,6 +21942,17 @@ declare namespace Enum {
|
|
|
21921
21942
|
EnumType: typeof globalThis.Enum.Material;
|
|
21922
21943
|
}
|
|
21923
21944
|
export const Slate: Slate;
|
|
21945
|
+
/**
|
|
21946
|
+
* Applies to `BasePart` and `Terrain`.
|
|
21947
|
+
*
|
|
21948
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/Material#CrackedLava)
|
|
21949
|
+
*/
|
|
21950
|
+
export interface CrackedLava extends globalThis.EnumItem {
|
|
21951
|
+
Name: "CrackedLava";
|
|
21952
|
+
Value: 804;
|
|
21953
|
+
EnumType: typeof globalThis.Enum.Material;
|
|
21954
|
+
}
|
|
21955
|
+
export const CrackedLava: CrackedLava;
|
|
21924
21956
|
/**
|
|
21925
21957
|
* Applies to `BasePart` and `Terrain`.
|
|
21926
21958
|
*
|
|
@@ -21932,6 +21964,17 @@ declare namespace Enum {
|
|
|
21932
21964
|
EnumType: typeof globalThis.Enum.Material;
|
|
21933
21965
|
}
|
|
21934
21966
|
export const Concrete: Concrete;
|
|
21967
|
+
/**
|
|
21968
|
+
* Applies to `BasePart` and `Terrain`.
|
|
21969
|
+
*
|
|
21970
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/Material#Limestone)
|
|
21971
|
+
*/
|
|
21972
|
+
export interface Limestone extends globalThis.EnumItem {
|
|
21973
|
+
Name: "Limestone";
|
|
21974
|
+
Value: 820;
|
|
21975
|
+
EnumType: typeof globalThis.Enum.Material;
|
|
21976
|
+
}
|
|
21977
|
+
export const Limestone: Limestone;
|
|
21935
21978
|
/**
|
|
21936
21979
|
* Applies to `BasePart` only.
|
|
21937
21980
|
*
|
|
@@ -21943,6 +21986,17 @@ declare namespace Enum {
|
|
|
21943
21986
|
EnumType: typeof globalThis.Enum.Material;
|
|
21944
21987
|
}
|
|
21945
21988
|
export const Granite: Granite;
|
|
21989
|
+
/**
|
|
21990
|
+
* Applies to `BasePart` and `Terrain`.
|
|
21991
|
+
*
|
|
21992
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/Material#Pavement)
|
|
21993
|
+
*/
|
|
21994
|
+
export interface Pavement extends globalThis.EnumItem {
|
|
21995
|
+
Name: "Pavement";
|
|
21996
|
+
Value: 836;
|
|
21997
|
+
EnumType: typeof globalThis.Enum.Material;
|
|
21998
|
+
}
|
|
21999
|
+
export const Pavement: Pavement;
|
|
21946
22000
|
/**
|
|
21947
22001
|
* Applies to `BasePart` and `Terrain`.
|
|
21948
22002
|
*
|
|
@@ -21998,50 +22052,6 @@ declare namespace Enum {
|
|
|
21998
22052
|
EnumType: typeof globalThis.Enum.Material;
|
|
21999
22053
|
}
|
|
22000
22054
|
export const Sandstone: Sandstone;
|
|
22001
|
-
/**
|
|
22002
|
-
* Applies to `BasePart` and `Terrain`.
|
|
22003
|
-
*
|
|
22004
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/Material#Basalt)
|
|
22005
|
-
*/
|
|
22006
|
-
export interface Basalt extends globalThis.EnumItem {
|
|
22007
|
-
Name: "Basalt";
|
|
22008
|
-
Value: 788;
|
|
22009
|
-
EnumType: typeof globalThis.Enum.Material;
|
|
22010
|
-
}
|
|
22011
|
-
export const Basalt: Basalt;
|
|
22012
|
-
/**
|
|
22013
|
-
* Applies to `BasePart` and `Terrain`.
|
|
22014
|
-
*
|
|
22015
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/Material#CrackedLava)
|
|
22016
|
-
*/
|
|
22017
|
-
export interface CrackedLava extends globalThis.EnumItem {
|
|
22018
|
-
Name: "CrackedLava";
|
|
22019
|
-
Value: 804;
|
|
22020
|
-
EnumType: typeof globalThis.Enum.Material;
|
|
22021
|
-
}
|
|
22022
|
-
export const CrackedLava: CrackedLava;
|
|
22023
|
-
/**
|
|
22024
|
-
* Applies to `BasePart` and `Terrain`.
|
|
22025
|
-
*
|
|
22026
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/Material#Limestone)
|
|
22027
|
-
*/
|
|
22028
|
-
export interface Limestone extends globalThis.EnumItem {
|
|
22029
|
-
Name: "Limestone";
|
|
22030
|
-
Value: 820;
|
|
22031
|
-
EnumType: typeof globalThis.Enum.Material;
|
|
22032
|
-
}
|
|
22033
|
-
export const Limestone: Limestone;
|
|
22034
|
-
/**
|
|
22035
|
-
* Applies to `BasePart` and `Terrain`.
|
|
22036
|
-
*
|
|
22037
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/Material#Pavement)
|
|
22038
|
-
*/
|
|
22039
|
-
export interface Pavement extends globalThis.EnumItem {
|
|
22040
|
-
Name: "Pavement";
|
|
22041
|
-
Value: 836;
|
|
22042
|
-
EnumType: typeof globalThis.Enum.Material;
|
|
22043
|
-
}
|
|
22044
|
-
export const Pavement: Pavement;
|
|
22045
22055
|
/**
|
|
22046
22056
|
* Applies to `BasePart` only.
|
|
22047
22057
|
*
|
|
@@ -22347,7 +22357,7 @@ declare namespace Enum {
|
|
|
22347
22357
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.Material | undefined;
|
|
22348
22358
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.Material | undefined;
|
|
22349
22359
|
}
|
|
22350
|
-
export type Material = Material.Plastic | Material.SmoothPlastic | Material.Neon | Material.Wood | Material.WoodPlanks | Material.Marble | Material.
|
|
22360
|
+
export type Material = Material.Plastic | Material.SmoothPlastic | Material.Neon | Material.Wood | Material.WoodPlanks | Material.Marble | Material.Basalt | Material.Slate | Material.CrackedLava | Material.Concrete | Material.Limestone | Material.Granite | Material.Pavement | Material.Brick | Material.Pebble | Material.Cobblestone | Material.Rock | Material.Sandstone | Material.CorrodedMetal | Material.DiamondPlate | Material.Foil | Material.Metal | Material.Grass | Material.LeafyGrass | Material.Sand | Material.Fabric | Material.Snow | Material.Mud | Material.Ground | Material.Asphalt | Material.Salt | Material.Ice | Material.Glacier | Material.Glass | Material.ForceField | Material.Air | Material.Water | Material.Cardboard | Material.Carpet | Material.CeramicTiles | Material.ClayRoofTiles | Material.RoofShingles | Material.Leather | Material.Plaster | Material.Rubber;
|
|
22351
22361
|
/**
|
|
22352
22362
|
* Describes the pattern of material. Affects texture tiling method.
|
|
22353
22363
|
*
|
|
@@ -24711,6 +24721,33 @@ declare namespace Enum {
|
|
|
24711
24721
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PermissionLevelShown | undefined;
|
|
24712
24722
|
}
|
|
24713
24723
|
export type PermissionLevelShown = PermissionLevelShown.Game | PermissionLevelShown.RobloxGame | PermissionLevelShown.RobloxScript | PermissionLevelShown.Studio | PermissionLevelShown.Roblox;
|
|
24724
|
+
/**
|
|
24725
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PhysicalConstraintType)
|
|
24726
|
+
*/
|
|
24727
|
+
export namespace PhysicalConstraintType {
|
|
24728
|
+
/**
|
|
24729
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PhysicalConstraintType#AnimationConstraint)
|
|
24730
|
+
*/
|
|
24731
|
+
export interface AnimationConstraint extends globalThis.EnumItem {
|
|
24732
|
+
Name: "AnimationConstraint";
|
|
24733
|
+
Value: 0;
|
|
24734
|
+
EnumType: typeof globalThis.Enum.PhysicalConstraintType;
|
|
24735
|
+
}
|
|
24736
|
+
export const AnimationConstraint: AnimationConstraint;
|
|
24737
|
+
/**
|
|
24738
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PhysicalConstraintType#Motor6D)
|
|
24739
|
+
*/
|
|
24740
|
+
export interface Motor6D extends globalThis.EnumItem {
|
|
24741
|
+
Name: "Motor6D";
|
|
24742
|
+
Value: 1;
|
|
24743
|
+
EnumType: typeof globalThis.Enum.PhysicalConstraintType;
|
|
24744
|
+
}
|
|
24745
|
+
export const Motor6D: Motor6D;
|
|
24746
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PhysicalConstraintType>;
|
|
24747
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PhysicalConstraintType | undefined;
|
|
24748
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PhysicalConstraintType | undefined;
|
|
24749
|
+
}
|
|
24750
|
+
export type PhysicalConstraintType = PhysicalConstraintType.AnimationConstraint | PhysicalConstraintType.Motor6D;
|
|
24714
24751
|
/**
|
|
24715
24752
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PhysicsSimulationRate)
|
|
24716
24753
|
*/
|
|
@@ -25520,6 +25557,33 @@ declare namespace Enum {
|
|
|
25520
25557
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PlayerPlatformSpenderStatus | undefined;
|
|
25521
25558
|
}
|
|
25522
25559
|
export type PlayerPlatformSpenderStatus = PlayerPlatformSpenderStatus.Unknown | PlayerPlatformSpenderStatus.Active | PlayerPlatformSpenderStatus.OtherPayer;
|
|
25560
|
+
/**
|
|
25561
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PluginConnectionTargetType)
|
|
25562
|
+
*/
|
|
25563
|
+
export namespace PluginConnectionTargetType {
|
|
25564
|
+
/**
|
|
25565
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PluginConnectionTargetType#Edit)
|
|
25566
|
+
*/
|
|
25567
|
+
export interface Edit extends globalThis.EnumItem {
|
|
25568
|
+
Name: "Edit";
|
|
25569
|
+
Value: 0;
|
|
25570
|
+
EnumType: typeof globalThis.Enum.PluginConnectionTargetType;
|
|
25571
|
+
}
|
|
25572
|
+
export const Edit: Edit;
|
|
25573
|
+
/**
|
|
25574
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PluginConnectionTargetType#Test)
|
|
25575
|
+
*/
|
|
25576
|
+
export interface Test extends globalThis.EnumItem {
|
|
25577
|
+
Name: "Test";
|
|
25578
|
+
Value: 1;
|
|
25579
|
+
EnumType: typeof globalThis.Enum.PluginConnectionTargetType;
|
|
25580
|
+
}
|
|
25581
|
+
export const Test: Test;
|
|
25582
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PluginConnectionTargetType>;
|
|
25583
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PluginConnectionTargetType | undefined;
|
|
25584
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PluginConnectionTargetType | undefined;
|
|
25585
|
+
}
|
|
25586
|
+
export type PluginConnectionTargetType = PluginConnectionTargetType.Edit | PluginConnectionTargetType.Test;
|
|
25523
25587
|
/**
|
|
25524
25588
|
* Used exclusively by Pose.EasingDirection to specify direction of the EasingStyle curve.
|
|
25525
25589
|
*
|
|
@@ -26010,23 +26074,23 @@ declare namespace Enum {
|
|
|
26010
26074
|
*/
|
|
26011
26075
|
export namespace PrivilegeType {
|
|
26012
26076
|
/**
|
|
26013
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrivilegeType#
|
|
26077
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrivilegeType#Banned)
|
|
26014
26078
|
*/
|
|
26015
|
-
export interface
|
|
26016
|
-
Name: "
|
|
26017
|
-
Value:
|
|
26079
|
+
export interface Banned extends globalThis.EnumItem {
|
|
26080
|
+
Name: "Banned";
|
|
26081
|
+
Value: 0;
|
|
26018
26082
|
EnumType: typeof globalThis.Enum.PrivilegeType;
|
|
26019
26083
|
}
|
|
26020
|
-
export const
|
|
26084
|
+
export const Banned: Banned;
|
|
26021
26085
|
/**
|
|
26022
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrivilegeType#
|
|
26086
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrivilegeType#Visitor)
|
|
26023
26087
|
*/
|
|
26024
|
-
export interface
|
|
26025
|
-
Name: "
|
|
26026
|
-
Value:
|
|
26088
|
+
export interface Visitor extends globalThis.EnumItem {
|
|
26089
|
+
Name: "Visitor";
|
|
26090
|
+
Value: 10;
|
|
26027
26091
|
EnumType: typeof globalThis.Enum.PrivilegeType;
|
|
26028
26092
|
}
|
|
26029
|
-
export const
|
|
26093
|
+
export const Visitor: Visitor;
|
|
26030
26094
|
/**
|
|
26031
26095
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrivilegeType#Member)
|
|
26032
26096
|
*/
|
|
@@ -26037,28 +26101,28 @@ declare namespace Enum {
|
|
|
26037
26101
|
}
|
|
26038
26102
|
export const Member: Member;
|
|
26039
26103
|
/**
|
|
26040
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrivilegeType#
|
|
26104
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrivilegeType#Admin)
|
|
26041
26105
|
*/
|
|
26042
|
-
export interface
|
|
26043
|
-
Name: "
|
|
26044
|
-
Value:
|
|
26106
|
+
export interface Admin extends globalThis.EnumItem {
|
|
26107
|
+
Name: "Admin";
|
|
26108
|
+
Value: 240;
|
|
26045
26109
|
EnumType: typeof globalThis.Enum.PrivilegeType;
|
|
26046
26110
|
}
|
|
26047
|
-
export const
|
|
26111
|
+
export const Admin: Admin;
|
|
26048
26112
|
/**
|
|
26049
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrivilegeType#
|
|
26113
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrivilegeType#Owner)
|
|
26050
26114
|
*/
|
|
26051
|
-
export interface
|
|
26052
|
-
Name: "
|
|
26053
|
-
Value:
|
|
26115
|
+
export interface Owner extends globalThis.EnumItem {
|
|
26116
|
+
Name: "Owner";
|
|
26117
|
+
Value: 255;
|
|
26054
26118
|
EnumType: typeof globalThis.Enum.PrivilegeType;
|
|
26055
26119
|
}
|
|
26056
|
-
export const
|
|
26120
|
+
export const Owner: Owner;
|
|
26057
26121
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PrivilegeType>;
|
|
26058
26122
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PrivilegeType | undefined;
|
|
26059
26123
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PrivilegeType | undefined;
|
|
26060
26124
|
}
|
|
26061
|
-
export type PrivilegeType = PrivilegeType.
|
|
26125
|
+
export type PrivilegeType = PrivilegeType.Banned | PrivilegeType.Visitor | PrivilegeType.Member | PrivilegeType.Admin | PrivilegeType.Owner;
|
|
26062
26126
|
/**
|
|
26063
26127
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ProductLocationRestriction)
|
|
26064
26128
|
*/
|
|
@@ -26678,6 +26742,33 @@ declare namespace Enum {
|
|
|
26678
26742
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ProximityPromptStyle | undefined;
|
|
26679
26743
|
}
|
|
26680
26744
|
export type ProximityPromptStyle = ProximityPromptStyle.Default | ProximityPromptStyle.Custom;
|
|
26745
|
+
/**
|
|
26746
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PurchaseOption)
|
|
26747
|
+
*/
|
|
26748
|
+
export namespace PurchaseOption {
|
|
26749
|
+
/**
|
|
26750
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PurchaseOption#TimedOption)
|
|
26751
|
+
*/
|
|
26752
|
+
export interface TimedOption extends globalThis.EnumItem {
|
|
26753
|
+
Name: "TimedOption";
|
|
26754
|
+
Value: 1;
|
|
26755
|
+
EnumType: typeof globalThis.Enum.PurchaseOption;
|
|
26756
|
+
}
|
|
26757
|
+
export const TimedOption: TimedOption;
|
|
26758
|
+
/**
|
|
26759
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PurchaseOption#Permanent)
|
|
26760
|
+
*/
|
|
26761
|
+
export interface Permanent extends globalThis.EnumItem {
|
|
26762
|
+
Name: "Permanent";
|
|
26763
|
+
Value: 2;
|
|
26764
|
+
EnumType: typeof globalThis.Enum.PurchaseOption;
|
|
26765
|
+
}
|
|
26766
|
+
export const Permanent: Permanent;
|
|
26767
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PurchaseOption>;
|
|
26768
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PurchaseOption | undefined;
|
|
26769
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PurchaseOption | undefined;
|
|
26770
|
+
}
|
|
26771
|
+
export type PurchaseOption = PurchaseOption.TimedOption | PurchaseOption.Permanent;
|
|
26681
26772
|
/**
|
|
26682
26773
|
* Controls the rendering quality of the game.
|
|
26683
26774
|
*
|
|
@@ -27546,14 +27637,14 @@ declare namespace Enum {
|
|
|
27546
27637
|
}
|
|
27547
27638
|
export const Standard: Standard;
|
|
27548
27639
|
/**
|
|
27549
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReservedHighlightId#
|
|
27640
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReservedHighlightId#Active)
|
|
27550
27641
|
*/
|
|
27551
|
-
export interface
|
|
27552
|
-
Name: "
|
|
27553
|
-
Value:
|
|
27642
|
+
export interface Active extends globalThis.EnumItem {
|
|
27643
|
+
Name: "Active";
|
|
27644
|
+
Value: 131072;
|
|
27554
27645
|
EnumType: typeof globalThis.Enum.ReservedHighlightId;
|
|
27555
27646
|
}
|
|
27556
|
-
export const
|
|
27647
|
+
export const Active: Active;
|
|
27557
27648
|
/**
|
|
27558
27649
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReservedHighlightId#Hover)
|
|
27559
27650
|
*/
|
|
@@ -27564,14 +27655,14 @@ declare namespace Enum {
|
|
|
27564
27655
|
}
|
|
27565
27656
|
export const Hover: Hover;
|
|
27566
27657
|
/**
|
|
27567
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReservedHighlightId#
|
|
27658
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReservedHighlightId#Selection)
|
|
27568
27659
|
*/
|
|
27569
|
-
export interface
|
|
27570
|
-
Name: "
|
|
27571
|
-
Value:
|
|
27660
|
+
export interface Selection extends globalThis.EnumItem {
|
|
27661
|
+
Name: "Selection";
|
|
27662
|
+
Value: 524288;
|
|
27572
27663
|
EnumType: typeof globalThis.Enum.ReservedHighlightId;
|
|
27573
27664
|
}
|
|
27574
|
-
export const
|
|
27665
|
+
export const Selection: Selection;
|
|
27575
27666
|
/**
|
|
27576
27667
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReservedHighlightId#NegatedPart)
|
|
27577
27668
|
*/
|
|
@@ -27585,7 +27676,7 @@ declare namespace Enum {
|
|
|
27585
27676
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ReservedHighlightId | undefined;
|
|
27586
27677
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ReservedHighlightId | undefined;
|
|
27587
27678
|
}
|
|
27588
|
-
export type ReservedHighlightId = ReservedHighlightId.Standard | ReservedHighlightId.
|
|
27679
|
+
export type ReservedHighlightId = ReservedHighlightId.Standard | ReservedHighlightId.Active | ReservedHighlightId.Hover | ReservedHighlightId.Selection | ReservedHighlightId.NegatedPart;
|
|
27589
27680
|
/**
|
|
27590
27681
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RestPose)
|
|
27591
27682
|
*/
|
|
@@ -35359,50 +35450,6 @@ declare namespace Enum {
|
|
|
35359
35450
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThreadPoolConfig)
|
|
35360
35451
|
*/
|
|
35361
35452
|
export namespace ThreadPoolConfig {
|
|
35362
|
-
/**
|
|
35363
|
-
* Utilize 4 worker threads per available physical CPU core.
|
|
35364
|
-
*
|
|
35365
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThreadPoolConfig#PerCore4)
|
|
35366
|
-
*/
|
|
35367
|
-
export interface PerCore4 extends globalThis.EnumItem {
|
|
35368
|
-
Name: "PerCore4";
|
|
35369
|
-
Value: 104;
|
|
35370
|
-
EnumType: typeof globalThis.Enum.ThreadPoolConfig;
|
|
35371
|
-
}
|
|
35372
|
-
export const PerCore4: PerCore4;
|
|
35373
|
-
/**
|
|
35374
|
-
* Utilize 3 worker threads per available physical CPU core.
|
|
35375
|
-
*
|
|
35376
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThreadPoolConfig#PerCore3)
|
|
35377
|
-
*/
|
|
35378
|
-
export interface PerCore3 extends globalThis.EnumItem {
|
|
35379
|
-
Name: "PerCore3";
|
|
35380
|
-
Value: 103;
|
|
35381
|
-
EnumType: typeof globalThis.Enum.ThreadPoolConfig;
|
|
35382
|
-
}
|
|
35383
|
-
export const PerCore3: PerCore3;
|
|
35384
|
-
/**
|
|
35385
|
-
* Utilize 2 worker threads per available physical CPU core.
|
|
35386
|
-
*
|
|
35387
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThreadPoolConfig#PerCore2)
|
|
35388
|
-
*/
|
|
35389
|
-
export interface PerCore2 extends globalThis.EnumItem {
|
|
35390
|
-
Name: "PerCore2";
|
|
35391
|
-
Value: 102;
|
|
35392
|
-
EnumType: typeof globalThis.Enum.ThreadPoolConfig;
|
|
35393
|
-
}
|
|
35394
|
-
export const PerCore2: PerCore2;
|
|
35395
|
-
/**
|
|
35396
|
-
* Utilize 1 worker thread per available physical CPU core.
|
|
35397
|
-
*
|
|
35398
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThreadPoolConfig#PerCore1)
|
|
35399
|
-
*/
|
|
35400
|
-
export interface PerCore1 extends globalThis.EnumItem {
|
|
35401
|
-
Name: "PerCore1";
|
|
35402
|
-
Value: 101;
|
|
35403
|
-
EnumType: typeof globalThis.Enum.ThreadPoolConfig;
|
|
35404
|
-
}
|
|
35405
|
-
export const PerCore1: PerCore1;
|
|
35406
35453
|
/**
|
|
35407
35454
|
* Let task scheduler make a decision internally.
|
|
35408
35455
|
*
|
|
@@ -35484,11 +35531,55 @@ declare namespace Enum {
|
|
|
35484
35531
|
EnumType: typeof globalThis.Enum.ThreadPoolConfig;
|
|
35485
35532
|
}
|
|
35486
35533
|
export const Threads16: Threads16;
|
|
35534
|
+
/**
|
|
35535
|
+
* Utilize 1 worker thread per available physical CPU core.
|
|
35536
|
+
*
|
|
35537
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThreadPoolConfig#PerCore1)
|
|
35538
|
+
*/
|
|
35539
|
+
export interface PerCore1 extends globalThis.EnumItem {
|
|
35540
|
+
Name: "PerCore1";
|
|
35541
|
+
Value: 101;
|
|
35542
|
+
EnumType: typeof globalThis.Enum.ThreadPoolConfig;
|
|
35543
|
+
}
|
|
35544
|
+
export const PerCore1: PerCore1;
|
|
35545
|
+
/**
|
|
35546
|
+
* Utilize 2 worker threads per available physical CPU core.
|
|
35547
|
+
*
|
|
35548
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThreadPoolConfig#PerCore2)
|
|
35549
|
+
*/
|
|
35550
|
+
export interface PerCore2 extends globalThis.EnumItem {
|
|
35551
|
+
Name: "PerCore2";
|
|
35552
|
+
Value: 102;
|
|
35553
|
+
EnumType: typeof globalThis.Enum.ThreadPoolConfig;
|
|
35554
|
+
}
|
|
35555
|
+
export const PerCore2: PerCore2;
|
|
35556
|
+
/**
|
|
35557
|
+
* Utilize 3 worker threads per available physical CPU core.
|
|
35558
|
+
*
|
|
35559
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThreadPoolConfig#PerCore3)
|
|
35560
|
+
*/
|
|
35561
|
+
export interface PerCore3 extends globalThis.EnumItem {
|
|
35562
|
+
Name: "PerCore3";
|
|
35563
|
+
Value: 103;
|
|
35564
|
+
EnumType: typeof globalThis.Enum.ThreadPoolConfig;
|
|
35565
|
+
}
|
|
35566
|
+
export const PerCore3: PerCore3;
|
|
35567
|
+
/**
|
|
35568
|
+
* Utilize 4 worker threads per available physical CPU core.
|
|
35569
|
+
*
|
|
35570
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThreadPoolConfig#PerCore4)
|
|
35571
|
+
*/
|
|
35572
|
+
export interface PerCore4 extends globalThis.EnumItem {
|
|
35573
|
+
Name: "PerCore4";
|
|
35574
|
+
Value: 104;
|
|
35575
|
+
EnumType: typeof globalThis.Enum.ThreadPoolConfig;
|
|
35576
|
+
}
|
|
35577
|
+
export const PerCore4: PerCore4;
|
|
35487
35578
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ThreadPoolConfig>;
|
|
35488
35579
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ThreadPoolConfig | undefined;
|
|
35489
35580
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ThreadPoolConfig | undefined;
|
|
35490
35581
|
}
|
|
35491
|
-
export type ThreadPoolConfig = ThreadPoolConfig.
|
|
35582
|
+
export type ThreadPoolConfig = ThreadPoolConfig.Auto | ThreadPoolConfig.Threads1 | ThreadPoolConfig.Threads2 | ThreadPoolConfig.Threads3 | ThreadPoolConfig.Threads4 | ThreadPoolConfig.Threads8 | ThreadPoolConfig.Threads16 | ThreadPoolConfig.PerCore1 | ThreadPoolConfig.PerCore2 | ThreadPoolConfig.PerCore3 | ThreadPoolConfig.PerCore4;
|
|
35492
35583
|
/**
|
|
35493
35584
|
* Amount of throttling to apply.
|
|
35494
35585
|
*
|
|
@@ -35496,16 +35587,16 @@ declare namespace Enum {
|
|
|
35496
35587
|
*/
|
|
35497
35588
|
export namespace ThrottlingPriority {
|
|
35498
35589
|
/**
|
|
35499
|
-
*
|
|
35590
|
+
* Standard throttling.
|
|
35500
35591
|
*
|
|
35501
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThrottlingPriority#
|
|
35592
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThrottlingPriority#Default)
|
|
35502
35593
|
*/
|
|
35503
|
-
export interface
|
|
35504
|
-
Name: "
|
|
35505
|
-
Value:
|
|
35594
|
+
export interface Default extends globalThis.EnumItem {
|
|
35595
|
+
Name: "Default";
|
|
35596
|
+
Value: 0;
|
|
35506
35597
|
EnumType: typeof globalThis.Enum.ThrottlingPriority;
|
|
35507
35598
|
}
|
|
35508
|
-
export const
|
|
35599
|
+
export const Default: Default;
|
|
35509
35600
|
/**
|
|
35510
35601
|
* Less throttling if on the server.
|
|
35511
35602
|
*
|
|
@@ -35518,21 +35609,21 @@ declare namespace Enum {
|
|
|
35518
35609
|
}
|
|
35519
35610
|
export const ElevatedOnServer: ElevatedOnServer;
|
|
35520
35611
|
/**
|
|
35521
|
-
*
|
|
35612
|
+
* No throttling, absolutely no exceptions.
|
|
35522
35613
|
*
|
|
35523
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThrottlingPriority#
|
|
35614
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThrottlingPriority#Extreme)
|
|
35524
35615
|
*/
|
|
35525
|
-
export interface
|
|
35526
|
-
Name: "
|
|
35527
|
-
Value:
|
|
35616
|
+
export interface Extreme extends globalThis.EnumItem {
|
|
35617
|
+
Name: "Extreme";
|
|
35618
|
+
Value: 2;
|
|
35528
35619
|
EnumType: typeof globalThis.Enum.ThrottlingPriority;
|
|
35529
35620
|
}
|
|
35530
|
-
export const
|
|
35621
|
+
export const Extreme: Extreme;
|
|
35531
35622
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ThrottlingPriority>;
|
|
35532
35623
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ThrottlingPriority | undefined;
|
|
35533
35624
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ThrottlingPriority | undefined;
|
|
35534
35625
|
}
|
|
35535
|
-
export type ThrottlingPriority = ThrottlingPriority.
|
|
35626
|
+
export type ThrottlingPriority = ThrottlingPriority.Default | ThrottlingPriority.ElevatedOnServer | ThrottlingPriority.Extreme;
|
|
35536
35627
|
/**
|
|
35537
35628
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThumbnailSize)
|
|
35538
35629
|
*/
|
|
@@ -36024,15 +36115,6 @@ declare namespace Enum {
|
|
|
36024
36115
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerExtrapolationFlagMode)
|
|
36025
36116
|
*/
|
|
36026
36117
|
export namespace TrackerExtrapolationFlagMode {
|
|
36027
|
-
/**
|
|
36028
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerExtrapolationFlagMode#Auto)
|
|
36029
|
-
*/
|
|
36030
|
-
export interface Auto extends globalThis.EnumItem {
|
|
36031
|
-
Name: "Auto";
|
|
36032
|
-
Value: 3;
|
|
36033
|
-
EnumType: typeof globalThis.Enum.TrackerExtrapolationFlagMode;
|
|
36034
|
-
}
|
|
36035
|
-
export const Auto: Auto;
|
|
36036
36118
|
/**
|
|
36037
36119
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerExtrapolationFlagMode#ForceDisabled)
|
|
36038
36120
|
*/
|
|
@@ -36060,11 +36142,20 @@ declare namespace Enum {
|
|
|
36060
36142
|
EnumType: typeof globalThis.Enum.TrackerExtrapolationFlagMode;
|
|
36061
36143
|
}
|
|
36062
36144
|
export const ExtrapolateFacsOnly: ExtrapolateFacsOnly;
|
|
36145
|
+
/**
|
|
36146
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerExtrapolationFlagMode#Auto)
|
|
36147
|
+
*/
|
|
36148
|
+
export interface Auto extends globalThis.EnumItem {
|
|
36149
|
+
Name: "Auto";
|
|
36150
|
+
Value: 3;
|
|
36151
|
+
EnumType: typeof globalThis.Enum.TrackerExtrapolationFlagMode;
|
|
36152
|
+
}
|
|
36153
|
+
export const Auto: Auto;
|
|
36063
36154
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TrackerExtrapolationFlagMode>;
|
|
36064
36155
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TrackerExtrapolationFlagMode | undefined;
|
|
36065
36156
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TrackerExtrapolationFlagMode | undefined;
|
|
36066
36157
|
}
|
|
36067
|
-
export type TrackerExtrapolationFlagMode = TrackerExtrapolationFlagMode.
|
|
36158
|
+
export type TrackerExtrapolationFlagMode = TrackerExtrapolationFlagMode.ForceDisabled | TrackerExtrapolationFlagMode.ExtrapolateFacsAndPose | TrackerExtrapolationFlagMode.ExtrapolateFacsOnly | TrackerExtrapolationFlagMode.Auto;
|
|
36068
36159
|
/**
|
|
36069
36160
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerFaceTrackingStatus)
|
|
36070
36161
|
*/
|
|
@@ -36141,15 +36232,6 @@ declare namespace Enum {
|
|
|
36141
36232
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerLodFlagMode)
|
|
36142
36233
|
*/
|
|
36143
36234
|
export namespace TrackerLodFlagMode {
|
|
36144
|
-
/**
|
|
36145
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerLodFlagMode#Auto)
|
|
36146
|
-
*/
|
|
36147
|
-
export interface Auto extends globalThis.EnumItem {
|
|
36148
|
-
Name: "Auto";
|
|
36149
|
-
Value: 2;
|
|
36150
|
-
EnumType: typeof globalThis.Enum.TrackerLodFlagMode;
|
|
36151
|
-
}
|
|
36152
|
-
export const Auto: Auto;
|
|
36153
36235
|
/**
|
|
36154
36236
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerLodFlagMode#ForceFalse)
|
|
36155
36237
|
*/
|
|
@@ -36168,24 +36250,24 @@ declare namespace Enum {
|
|
|
36168
36250
|
EnumType: typeof globalThis.Enum.TrackerLodFlagMode;
|
|
36169
36251
|
}
|
|
36170
36252
|
export const ForceTrue: ForceTrue;
|
|
36253
|
+
/**
|
|
36254
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerLodFlagMode#Auto)
|
|
36255
|
+
*/
|
|
36256
|
+
export interface Auto extends globalThis.EnumItem {
|
|
36257
|
+
Name: "Auto";
|
|
36258
|
+
Value: 2;
|
|
36259
|
+
EnumType: typeof globalThis.Enum.TrackerLodFlagMode;
|
|
36260
|
+
}
|
|
36261
|
+
export const Auto: Auto;
|
|
36171
36262
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TrackerLodFlagMode>;
|
|
36172
36263
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TrackerLodFlagMode | undefined;
|
|
36173
36264
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TrackerLodFlagMode | undefined;
|
|
36174
36265
|
}
|
|
36175
|
-
export type TrackerLodFlagMode = TrackerLodFlagMode.
|
|
36266
|
+
export type TrackerLodFlagMode = TrackerLodFlagMode.ForceFalse | TrackerLodFlagMode.ForceTrue | TrackerLodFlagMode.Auto;
|
|
36176
36267
|
/**
|
|
36177
36268
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerLodValueMode)
|
|
36178
36269
|
*/
|
|
36179
36270
|
export namespace TrackerLodValueMode {
|
|
36180
|
-
/**
|
|
36181
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerLodValueMode#Auto)
|
|
36182
|
-
*/
|
|
36183
|
-
export interface Auto extends globalThis.EnumItem {
|
|
36184
|
-
Name: "Auto";
|
|
36185
|
-
Value: 2;
|
|
36186
|
-
EnumType: typeof globalThis.Enum.TrackerLodValueMode;
|
|
36187
|
-
}
|
|
36188
|
-
export const Auto: Auto;
|
|
36189
36271
|
/**
|
|
36190
36272
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerLodValueMode#Force0)
|
|
36191
36273
|
*/
|
|
@@ -36204,11 +36286,20 @@ declare namespace Enum {
|
|
|
36204
36286
|
EnumType: typeof globalThis.Enum.TrackerLodValueMode;
|
|
36205
36287
|
}
|
|
36206
36288
|
export const Force1: Force1;
|
|
36289
|
+
/**
|
|
36290
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerLodValueMode#Auto)
|
|
36291
|
+
*/
|
|
36292
|
+
export interface Auto extends globalThis.EnumItem {
|
|
36293
|
+
Name: "Auto";
|
|
36294
|
+
Value: 2;
|
|
36295
|
+
EnumType: typeof globalThis.Enum.TrackerLodValueMode;
|
|
36296
|
+
}
|
|
36297
|
+
export const Auto: Auto;
|
|
36207
36298
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TrackerLodValueMode>;
|
|
36208
36299
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TrackerLodValueMode | undefined;
|
|
36209
36300
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TrackerLodValueMode | undefined;
|
|
36210
36301
|
}
|
|
36211
|
-
export type TrackerLodValueMode = TrackerLodValueMode.
|
|
36302
|
+
export type TrackerLodValueMode = TrackerLodValueMode.Force0 | TrackerLodValueMode.Force1 | TrackerLodValueMode.Auto;
|
|
36212
36303
|
/**
|
|
36213
36304
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerMode)
|
|
36214
36305
|
*/
|
|
@@ -36313,14 +36404,14 @@ declare namespace Enum {
|
|
|
36313
36404
|
*/
|
|
36314
36405
|
export namespace TriStateBoolean {
|
|
36315
36406
|
/**
|
|
36316
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TriStateBoolean#
|
|
36407
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TriStateBoolean#Unknown)
|
|
36317
36408
|
*/
|
|
36318
|
-
export interface
|
|
36319
|
-
Name: "
|
|
36320
|
-
Value:
|
|
36409
|
+
export interface Unknown extends globalThis.EnumItem {
|
|
36410
|
+
Name: "Unknown";
|
|
36411
|
+
Value: 0;
|
|
36321
36412
|
EnumType: typeof globalThis.Enum.TriStateBoolean;
|
|
36322
36413
|
}
|
|
36323
|
-
export const
|
|
36414
|
+
export const Unknown: Unknown;
|
|
36324
36415
|
/**
|
|
36325
36416
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TriStateBoolean#True)
|
|
36326
36417
|
*/
|
|
@@ -36331,19 +36422,19 @@ declare namespace Enum {
|
|
|
36331
36422
|
}
|
|
36332
36423
|
export const True: True;
|
|
36333
36424
|
/**
|
|
36334
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TriStateBoolean#
|
|
36425
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TriStateBoolean#False)
|
|
36335
36426
|
*/
|
|
36336
|
-
export interface
|
|
36337
|
-
Name: "
|
|
36338
|
-
Value:
|
|
36427
|
+
export interface False extends globalThis.EnumItem {
|
|
36428
|
+
Name: "False";
|
|
36429
|
+
Value: 2;
|
|
36339
36430
|
EnumType: typeof globalThis.Enum.TriStateBoolean;
|
|
36340
36431
|
}
|
|
36341
|
-
export const
|
|
36432
|
+
export const False: False;
|
|
36342
36433
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TriStateBoolean>;
|
|
36343
36434
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TriStateBoolean | undefined;
|
|
36344
36435
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TriStateBoolean | undefined;
|
|
36345
36436
|
}
|
|
36346
|
-
export type TriStateBoolean = TriStateBoolean.
|
|
36437
|
+
export type TriStateBoolean = TriStateBoolean.Unknown | TriStateBoolean.True | TriStateBoolean.False;
|
|
36347
36438
|
/**
|
|
36348
36439
|
* The completion status of a `GuiObject` tween function.
|
|
36349
36440
|
*
|