@rbxts/types 1.0.913 → 1.0.915
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 +327 -18
- package/include/generated/PluginSecurity.d.ts +208 -0
- package/include/generated/enums.d.ts +330 -251
- 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
|
*
|
|
@@ -22903,7 +22913,7 @@ declare namespace Enum {
|
|
|
22903
22913
|
*/
|
|
22904
22914
|
export namespace ModelStreamingBehavior {
|
|
22905
22915
|
/**
|
|
22906
|
-
*
|
|
22916
|
+
* Default behavior (subject to change).
|
|
22907
22917
|
*
|
|
22908
22918
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModelStreamingBehavior#Default)
|
|
22909
22919
|
*/
|
|
@@ -22925,7 +22935,7 @@ declare namespace Enum {
|
|
|
22925
22935
|
}
|
|
22926
22936
|
export const Legacy: Legacy;
|
|
22927
22937
|
/**
|
|
22928
|
-
* Models are never sent during player join.
|
|
22938
|
+
* Models are never sent during player join. See [model streaming controls](../../../workspace/streaming/index.md#model-streaming-controls) for detailed behavioral notes.
|
|
22929
22939
|
*
|
|
22930
22940
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModelStreamingBehavior#Improved)
|
|
22931
22941
|
*/
|
|
@@ -22947,7 +22957,7 @@ declare namespace Enum {
|
|
|
22947
22957
|
*/
|
|
22948
22958
|
export namespace ModelStreamingMode {
|
|
22949
22959
|
/**
|
|
22950
|
-
*
|
|
22960
|
+
* Default behavior (subject to change).
|
|
22951
22961
|
*
|
|
22952
22962
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModelStreamingMode#Default)
|
|
22953
22963
|
*/
|
|
@@ -22980,7 +22990,7 @@ declare namespace Enum {
|
|
|
22980
22990
|
}
|
|
22981
22991
|
export const Persistent: Persistent;
|
|
22982
22992
|
/**
|
|
22983
|
-
* Behaves as a persistent model for players that have been added using `Model:AddPersistentPlayer()`. For other players, behavior is the same as
|
|
22993
|
+
* Behaves as a persistent model for players that have been added using `Model:AddPersistentPlayer()`. For other players, behavior is the same as `Atomic`. You can revert a model from player persistence via `Model:RemovePersistentPlayer()`.
|
|
22984
22994
|
*
|
|
22985
22995
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ModelStreamingMode#PersistentPerPlayer)
|
|
22986
22996
|
*/
|
|
@@ -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
|
*/
|
|
@@ -28290,10 +28381,6 @@ declare namespace Enum {
|
|
|
28290
28381
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28291
28382
|
}
|
|
28292
28383
|
export const Spine: Spine;
|
|
28293
|
-
/**
|
|
28294
|
-
* @deprecated renamed to Spine
|
|
28295
|
-
*/
|
|
28296
|
-
export const Pelvis: Spine;
|
|
28297
28384
|
/**
|
|
28298
28385
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Chest)
|
|
28299
28386
|
*/
|
|
@@ -28339,10 +28426,6 @@ declare namespace Enum {
|
|
|
28339
28426
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28340
28427
|
}
|
|
28341
28428
|
export const LeftToeBase: LeftToeBase;
|
|
28342
|
-
/**
|
|
28343
|
-
* @deprecated renamed to LeftToeBase
|
|
28344
|
-
*/
|
|
28345
|
-
export const LeftToes: LeftToeBase;
|
|
28346
28429
|
/**
|
|
28347
28430
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightToeBase)
|
|
28348
28431
|
*/
|
|
@@ -28352,10 +28435,6 @@ declare namespace Enum {
|
|
|
28352
28435
|
EnumType: typeof globalThis.Enum.RigLabel;
|
|
28353
28436
|
}
|
|
28354
28437
|
export const RightToeBase: RightToeBase;
|
|
28355
|
-
/**
|
|
28356
|
-
* @deprecated renamed to RightToeBase
|
|
28357
|
-
*/
|
|
28358
|
-
export const RightToes: RightToeBase;
|
|
28359
28438
|
/**
|
|
28360
28439
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Thumb1)
|
|
28361
28440
|
*/
|
|
@@ -31179,13 +31258,13 @@ declare namespace Enum {
|
|
|
31179
31258
|
}
|
|
31180
31259
|
export type StepFrequency = StepFrequency.Hz60 | StepFrequency.Hz30 | StepFrequency.Hz15 | StepFrequency.Hz10 | StepFrequency.Hz5 | StepFrequency.Hz1;
|
|
31181
31260
|
/**
|
|
31182
|
-
* Determines how content is streamed
|
|
31261
|
+
* Determines how content is streamed out from `Player` clients.
|
|
31183
31262
|
*
|
|
31184
31263
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StreamOutBehavior)
|
|
31185
31264
|
*/
|
|
31186
31265
|
export namespace StreamOutBehavior {
|
|
31187
31266
|
/**
|
|
31188
|
-
*
|
|
31267
|
+
* Default behavior (subject to change).
|
|
31189
31268
|
*
|
|
31190
31269
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StreamOutBehavior#Default)
|
|
31191
31270
|
*/
|
|
@@ -31207,7 +31286,7 @@ declare namespace Enum {
|
|
|
31207
31286
|
}
|
|
31208
31287
|
export const LowMemory: LowMemory;
|
|
31209
31288
|
/**
|
|
31210
|
-
* Stream out content that is significantly outside of the current
|
|
31289
|
+
* Stream out content that is significantly outside of the current `Workspace.StreamingTargetRadius`.
|
|
31211
31290
|
*
|
|
31212
31291
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StreamOutBehavior#Opportunistic)
|
|
31213
31292
|
*/
|
|
@@ -31229,7 +31308,7 @@ declare namespace Enum {
|
|
|
31229
31308
|
*/
|
|
31230
31309
|
export namespace StreamingIntegrityMode {
|
|
31231
31310
|
/**
|
|
31232
|
-
* Default behavior (
|
|
31311
|
+
* Default behavior (subject to change).
|
|
31233
31312
|
*
|
|
31234
31313
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StreamingIntegrityMode#Default)
|
|
31235
31314
|
*/
|
|
@@ -31278,7 +31357,7 @@ declare namespace Enum {
|
|
|
31278
31357
|
}
|
|
31279
31358
|
export type StreamingIntegrityMode = StreamingIntegrityMode.Default | StreamingIntegrityMode.Disabled | StreamingIntegrityMode.MinimumRadiusPause | StreamingIntegrityMode.PauseOutsideLoadedArea;
|
|
31280
31359
|
/**
|
|
31281
|
-
* Determines how a
|
|
31360
|
+
* Determines how a client should handle not having enough content streamed in to continue playing properly.
|
|
31282
31361
|
*
|
|
31283
31362
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StreamingPauseMode)
|
|
31284
31363
|
*/
|
|
@@ -31286,7 +31365,7 @@ declare namespace Enum {
|
|
|
31286
31365
|
/**
|
|
31287
31366
|
* **Deprecated:**
|
|
31288
31367
|
*
|
|
31289
|
-
* Default behavior (
|
|
31368
|
+
* Default behavior (subject to change).
|
|
31290
31369
|
*
|
|
31291
31370
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StreamingPauseMode#Default)
|
|
31292
31371
|
*/
|
|
@@ -35359,50 +35438,6 @@ declare namespace Enum {
|
|
|
35359
35438
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThreadPoolConfig)
|
|
35360
35439
|
*/
|
|
35361
35440
|
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
35441
|
/**
|
|
35407
35442
|
* Let task scheduler make a decision internally.
|
|
35408
35443
|
*
|
|
@@ -35484,11 +35519,55 @@ declare namespace Enum {
|
|
|
35484
35519
|
EnumType: typeof globalThis.Enum.ThreadPoolConfig;
|
|
35485
35520
|
}
|
|
35486
35521
|
export const Threads16: Threads16;
|
|
35522
|
+
/**
|
|
35523
|
+
* Utilize 1 worker thread per available physical CPU core.
|
|
35524
|
+
*
|
|
35525
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThreadPoolConfig#PerCore1)
|
|
35526
|
+
*/
|
|
35527
|
+
export interface PerCore1 extends globalThis.EnumItem {
|
|
35528
|
+
Name: "PerCore1";
|
|
35529
|
+
Value: 101;
|
|
35530
|
+
EnumType: typeof globalThis.Enum.ThreadPoolConfig;
|
|
35531
|
+
}
|
|
35532
|
+
export const PerCore1: PerCore1;
|
|
35533
|
+
/**
|
|
35534
|
+
* Utilize 2 worker threads per available physical CPU core.
|
|
35535
|
+
*
|
|
35536
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThreadPoolConfig#PerCore2)
|
|
35537
|
+
*/
|
|
35538
|
+
export interface PerCore2 extends globalThis.EnumItem {
|
|
35539
|
+
Name: "PerCore2";
|
|
35540
|
+
Value: 102;
|
|
35541
|
+
EnumType: typeof globalThis.Enum.ThreadPoolConfig;
|
|
35542
|
+
}
|
|
35543
|
+
export const PerCore2: PerCore2;
|
|
35544
|
+
/**
|
|
35545
|
+
* Utilize 3 worker threads per available physical CPU core.
|
|
35546
|
+
*
|
|
35547
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThreadPoolConfig#PerCore3)
|
|
35548
|
+
*/
|
|
35549
|
+
export interface PerCore3 extends globalThis.EnumItem {
|
|
35550
|
+
Name: "PerCore3";
|
|
35551
|
+
Value: 103;
|
|
35552
|
+
EnumType: typeof globalThis.Enum.ThreadPoolConfig;
|
|
35553
|
+
}
|
|
35554
|
+
export const PerCore3: PerCore3;
|
|
35555
|
+
/**
|
|
35556
|
+
* Utilize 4 worker threads per available physical CPU core.
|
|
35557
|
+
*
|
|
35558
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThreadPoolConfig#PerCore4)
|
|
35559
|
+
*/
|
|
35560
|
+
export interface PerCore4 extends globalThis.EnumItem {
|
|
35561
|
+
Name: "PerCore4";
|
|
35562
|
+
Value: 104;
|
|
35563
|
+
EnumType: typeof globalThis.Enum.ThreadPoolConfig;
|
|
35564
|
+
}
|
|
35565
|
+
export const PerCore4: PerCore4;
|
|
35487
35566
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ThreadPoolConfig>;
|
|
35488
35567
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ThreadPoolConfig | undefined;
|
|
35489
35568
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ThreadPoolConfig | undefined;
|
|
35490
35569
|
}
|
|
35491
|
-
export type ThreadPoolConfig = ThreadPoolConfig.
|
|
35570
|
+
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
35571
|
/**
|
|
35493
35572
|
* Amount of throttling to apply.
|
|
35494
35573
|
*
|
|
@@ -35496,16 +35575,16 @@ declare namespace Enum {
|
|
|
35496
35575
|
*/
|
|
35497
35576
|
export namespace ThrottlingPriority {
|
|
35498
35577
|
/**
|
|
35499
|
-
*
|
|
35578
|
+
* Standard throttling.
|
|
35500
35579
|
*
|
|
35501
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThrottlingPriority#
|
|
35580
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThrottlingPriority#Default)
|
|
35502
35581
|
*/
|
|
35503
|
-
export interface
|
|
35504
|
-
Name: "
|
|
35505
|
-
Value:
|
|
35582
|
+
export interface Default extends globalThis.EnumItem {
|
|
35583
|
+
Name: "Default";
|
|
35584
|
+
Value: 0;
|
|
35506
35585
|
EnumType: typeof globalThis.Enum.ThrottlingPriority;
|
|
35507
35586
|
}
|
|
35508
|
-
export const
|
|
35587
|
+
export const Default: Default;
|
|
35509
35588
|
/**
|
|
35510
35589
|
* Less throttling if on the server.
|
|
35511
35590
|
*
|
|
@@ -35518,21 +35597,21 @@ declare namespace Enum {
|
|
|
35518
35597
|
}
|
|
35519
35598
|
export const ElevatedOnServer: ElevatedOnServer;
|
|
35520
35599
|
/**
|
|
35521
|
-
*
|
|
35600
|
+
* No throttling, absolutely no exceptions.
|
|
35522
35601
|
*
|
|
35523
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThrottlingPriority#
|
|
35602
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThrottlingPriority#Extreme)
|
|
35524
35603
|
*/
|
|
35525
|
-
export interface
|
|
35526
|
-
Name: "
|
|
35527
|
-
Value:
|
|
35604
|
+
export interface Extreme extends globalThis.EnumItem {
|
|
35605
|
+
Name: "Extreme";
|
|
35606
|
+
Value: 2;
|
|
35528
35607
|
EnumType: typeof globalThis.Enum.ThrottlingPriority;
|
|
35529
35608
|
}
|
|
35530
|
-
export const
|
|
35609
|
+
export const Extreme: Extreme;
|
|
35531
35610
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ThrottlingPriority>;
|
|
35532
35611
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ThrottlingPriority | undefined;
|
|
35533
35612
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ThrottlingPriority | undefined;
|
|
35534
35613
|
}
|
|
35535
|
-
export type ThrottlingPriority = ThrottlingPriority.
|
|
35614
|
+
export type ThrottlingPriority = ThrottlingPriority.Default | ThrottlingPriority.ElevatedOnServer | ThrottlingPriority.Extreme;
|
|
35536
35615
|
/**
|
|
35537
35616
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThumbnailSize)
|
|
35538
35617
|
*/
|
|
@@ -36024,15 +36103,6 @@ declare namespace Enum {
|
|
|
36024
36103
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerExtrapolationFlagMode)
|
|
36025
36104
|
*/
|
|
36026
36105
|
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
36106
|
/**
|
|
36037
36107
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerExtrapolationFlagMode#ForceDisabled)
|
|
36038
36108
|
*/
|
|
@@ -36060,11 +36130,20 @@ declare namespace Enum {
|
|
|
36060
36130
|
EnumType: typeof globalThis.Enum.TrackerExtrapolationFlagMode;
|
|
36061
36131
|
}
|
|
36062
36132
|
export const ExtrapolateFacsOnly: ExtrapolateFacsOnly;
|
|
36133
|
+
/**
|
|
36134
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerExtrapolationFlagMode#Auto)
|
|
36135
|
+
*/
|
|
36136
|
+
export interface Auto extends globalThis.EnumItem {
|
|
36137
|
+
Name: "Auto";
|
|
36138
|
+
Value: 3;
|
|
36139
|
+
EnumType: typeof globalThis.Enum.TrackerExtrapolationFlagMode;
|
|
36140
|
+
}
|
|
36141
|
+
export const Auto: Auto;
|
|
36063
36142
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TrackerExtrapolationFlagMode>;
|
|
36064
36143
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TrackerExtrapolationFlagMode | undefined;
|
|
36065
36144
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TrackerExtrapolationFlagMode | undefined;
|
|
36066
36145
|
}
|
|
36067
|
-
export type TrackerExtrapolationFlagMode = TrackerExtrapolationFlagMode.
|
|
36146
|
+
export type TrackerExtrapolationFlagMode = TrackerExtrapolationFlagMode.ForceDisabled | TrackerExtrapolationFlagMode.ExtrapolateFacsAndPose | TrackerExtrapolationFlagMode.ExtrapolateFacsOnly | TrackerExtrapolationFlagMode.Auto;
|
|
36068
36147
|
/**
|
|
36069
36148
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerFaceTrackingStatus)
|
|
36070
36149
|
*/
|
|
@@ -36141,15 +36220,6 @@ declare namespace Enum {
|
|
|
36141
36220
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerLodFlagMode)
|
|
36142
36221
|
*/
|
|
36143
36222
|
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
36223
|
/**
|
|
36154
36224
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerLodFlagMode#ForceFalse)
|
|
36155
36225
|
*/
|
|
@@ -36168,24 +36238,24 @@ declare namespace Enum {
|
|
|
36168
36238
|
EnumType: typeof globalThis.Enum.TrackerLodFlagMode;
|
|
36169
36239
|
}
|
|
36170
36240
|
export const ForceTrue: ForceTrue;
|
|
36241
|
+
/**
|
|
36242
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerLodFlagMode#Auto)
|
|
36243
|
+
*/
|
|
36244
|
+
export interface Auto extends globalThis.EnumItem {
|
|
36245
|
+
Name: "Auto";
|
|
36246
|
+
Value: 2;
|
|
36247
|
+
EnumType: typeof globalThis.Enum.TrackerLodFlagMode;
|
|
36248
|
+
}
|
|
36249
|
+
export const Auto: Auto;
|
|
36171
36250
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TrackerLodFlagMode>;
|
|
36172
36251
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TrackerLodFlagMode | undefined;
|
|
36173
36252
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TrackerLodFlagMode | undefined;
|
|
36174
36253
|
}
|
|
36175
|
-
export type TrackerLodFlagMode = TrackerLodFlagMode.
|
|
36254
|
+
export type TrackerLodFlagMode = TrackerLodFlagMode.ForceFalse | TrackerLodFlagMode.ForceTrue | TrackerLodFlagMode.Auto;
|
|
36176
36255
|
/**
|
|
36177
36256
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerLodValueMode)
|
|
36178
36257
|
*/
|
|
36179
36258
|
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
36259
|
/**
|
|
36190
36260
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerLodValueMode#Force0)
|
|
36191
36261
|
*/
|
|
@@ -36204,11 +36274,20 @@ declare namespace Enum {
|
|
|
36204
36274
|
EnumType: typeof globalThis.Enum.TrackerLodValueMode;
|
|
36205
36275
|
}
|
|
36206
36276
|
export const Force1: Force1;
|
|
36277
|
+
/**
|
|
36278
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerLodValueMode#Auto)
|
|
36279
|
+
*/
|
|
36280
|
+
export interface Auto extends globalThis.EnumItem {
|
|
36281
|
+
Name: "Auto";
|
|
36282
|
+
Value: 2;
|
|
36283
|
+
EnumType: typeof globalThis.Enum.TrackerLodValueMode;
|
|
36284
|
+
}
|
|
36285
|
+
export const Auto: Auto;
|
|
36207
36286
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TrackerLodValueMode>;
|
|
36208
36287
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TrackerLodValueMode | undefined;
|
|
36209
36288
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TrackerLodValueMode | undefined;
|
|
36210
36289
|
}
|
|
36211
|
-
export type TrackerLodValueMode = TrackerLodValueMode.
|
|
36290
|
+
export type TrackerLodValueMode = TrackerLodValueMode.Force0 | TrackerLodValueMode.Force1 | TrackerLodValueMode.Auto;
|
|
36212
36291
|
/**
|
|
36213
36292
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerMode)
|
|
36214
36293
|
*/
|
|
@@ -36313,14 +36392,14 @@ declare namespace Enum {
|
|
|
36313
36392
|
*/
|
|
36314
36393
|
export namespace TriStateBoolean {
|
|
36315
36394
|
/**
|
|
36316
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TriStateBoolean#
|
|
36395
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TriStateBoolean#Unknown)
|
|
36317
36396
|
*/
|
|
36318
|
-
export interface
|
|
36319
|
-
Name: "
|
|
36320
|
-
Value:
|
|
36397
|
+
export interface Unknown extends globalThis.EnumItem {
|
|
36398
|
+
Name: "Unknown";
|
|
36399
|
+
Value: 0;
|
|
36321
36400
|
EnumType: typeof globalThis.Enum.TriStateBoolean;
|
|
36322
36401
|
}
|
|
36323
|
-
export const
|
|
36402
|
+
export const Unknown: Unknown;
|
|
36324
36403
|
/**
|
|
36325
36404
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TriStateBoolean#True)
|
|
36326
36405
|
*/
|
|
@@ -36331,19 +36410,19 @@ declare namespace Enum {
|
|
|
36331
36410
|
}
|
|
36332
36411
|
export const True: True;
|
|
36333
36412
|
/**
|
|
36334
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TriStateBoolean#
|
|
36413
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TriStateBoolean#False)
|
|
36335
36414
|
*/
|
|
36336
|
-
export interface
|
|
36337
|
-
Name: "
|
|
36338
|
-
Value:
|
|
36415
|
+
export interface False extends globalThis.EnumItem {
|
|
36416
|
+
Name: "False";
|
|
36417
|
+
Value: 2;
|
|
36339
36418
|
EnumType: typeof globalThis.Enum.TriStateBoolean;
|
|
36340
36419
|
}
|
|
36341
|
-
export const
|
|
36420
|
+
export const False: False;
|
|
36342
36421
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TriStateBoolean>;
|
|
36343
36422
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TriStateBoolean | undefined;
|
|
36344
36423
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TriStateBoolean | undefined;
|
|
36345
36424
|
}
|
|
36346
|
-
export type TriStateBoolean = TriStateBoolean.
|
|
36425
|
+
export type TriStateBoolean = TriStateBoolean.Unknown | TriStateBoolean.True | TriStateBoolean.False;
|
|
36347
36426
|
/**
|
|
36348
36427
|
* The completion status of a `GuiObject` tween function.
|
|
36349
36428
|
*
|