@rbxts/types 1.0.912 → 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 +421 -59
- package/include/generated/PluginSecurity.d.ts +370 -17
- package/include/generated/enums.d.ts +532 -263
- package/package.json +1 -1
|
@@ -401,10 +401,14 @@ declare namespace Enum {
|
|
|
401
401
|
}
|
|
402
402
|
export type ActionType = ActionType.Nothing | ActionType.Pause | ActionType.Lose | ActionType.Draw | ActionType.Win;
|
|
403
403
|
/**
|
|
404
|
+
* Describes a player's payer status bucket for the current experience.
|
|
405
|
+
*
|
|
404
406
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus)
|
|
405
407
|
*/
|
|
406
408
|
export namespace ActivePayerStatus {
|
|
407
409
|
/**
|
|
410
|
+
* Segment data is unavailable.
|
|
411
|
+
*
|
|
408
412
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus#Unknown)
|
|
409
413
|
*/
|
|
410
414
|
export interface Unknown extends globalThis.EnumItem {
|
|
@@ -414,6 +418,8 @@ declare namespace Enum {
|
|
|
414
418
|
}
|
|
415
419
|
export const Unknown: Unknown;
|
|
416
420
|
/**
|
|
421
|
+
* The player has not made a qualifying purchase in the experience.
|
|
422
|
+
*
|
|
417
423
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus#Never)
|
|
418
424
|
*/
|
|
419
425
|
export interface Never extends globalThis.EnumItem {
|
|
@@ -423,6 +429,8 @@ declare namespace Enum {
|
|
|
423
429
|
}
|
|
424
430
|
export const Never: Never;
|
|
425
431
|
/**
|
|
432
|
+
* The player has previously spent in the experience but is not currently an active payer.
|
|
433
|
+
*
|
|
426
434
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus#Lapsed)
|
|
427
435
|
*/
|
|
428
436
|
export interface Lapsed extends globalThis.EnumItem {
|
|
@@ -432,6 +440,8 @@ declare namespace Enum {
|
|
|
432
440
|
}
|
|
433
441
|
export const Lapsed: Lapsed;
|
|
434
442
|
/**
|
|
443
|
+
* The player is in the casual payer bucket for the experience.
|
|
444
|
+
*
|
|
435
445
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus#Casual50Percent)
|
|
436
446
|
*/
|
|
437
447
|
export interface Casual50Percent extends globalThis.EnumItem {
|
|
@@ -441,6 +451,8 @@ declare namespace Enum {
|
|
|
441
451
|
}
|
|
442
452
|
export const Casual50Percent: Casual50Percent;
|
|
443
453
|
/**
|
|
454
|
+
* The player is in the intermediate payer bucket for the experience.
|
|
455
|
+
*
|
|
444
456
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus#Intermediate35Percent)
|
|
445
457
|
*/
|
|
446
458
|
export interface Intermediate35Percent extends globalThis.EnumItem {
|
|
@@ -450,6 +462,8 @@ declare namespace Enum {
|
|
|
450
462
|
}
|
|
451
463
|
export const Intermediate35Percent: Intermediate35Percent;
|
|
452
464
|
/**
|
|
465
|
+
* The player is in the top payer bucket for the experience.
|
|
466
|
+
*
|
|
453
467
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus#Top15Percent)
|
|
454
468
|
*/
|
|
455
469
|
export interface Top15Percent extends globalThis.EnumItem {
|
|
@@ -1713,10 +1727,6 @@ declare namespace Enum {
|
|
|
1713
1727
|
EnumType: typeof globalThis.Enum.AnimationNodeInterruptible;
|
|
1714
1728
|
}
|
|
1715
1729
|
export const Finished: Finished;
|
|
1716
|
-
/**
|
|
1717
|
-
* @deprecated renamed to Finished
|
|
1718
|
-
*/
|
|
1719
|
-
export const ClipFinished: Finished;
|
|
1720
1730
|
/**
|
|
1721
1731
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeInterruptible#Trigger)
|
|
1722
1732
|
*/
|
|
@@ -1726,10 +1736,6 @@ declare namespace Enum {
|
|
|
1726
1736
|
EnumType: typeof globalThis.Enum.AnimationNodeInterruptible;
|
|
1727
1737
|
}
|
|
1728
1738
|
export const Trigger: Trigger;
|
|
1729
|
-
/**
|
|
1730
|
-
* @deprecated renamed to Trigger
|
|
1731
|
-
*/
|
|
1732
|
-
export const Expression: Trigger;
|
|
1733
1739
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationNodeInterruptible>;
|
|
1734
1740
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodeInterruptible | undefined;
|
|
1735
1741
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeInterruptible | undefined;
|
|
@@ -1874,10 +1880,6 @@ declare namespace Enum {
|
|
|
1874
1880
|
EnumType: typeof globalThis.Enum.AnimationNodeType;
|
|
1875
1881
|
}
|
|
1876
1882
|
export const OverNode: OverNode;
|
|
1877
|
-
/**
|
|
1878
|
-
* @deprecated renamed to OverNode
|
|
1879
|
-
*/
|
|
1880
|
-
export const BlendNode: OverNode;
|
|
1881
1883
|
/**
|
|
1882
1884
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#Blend1DNode)
|
|
1883
1885
|
*/
|
|
@@ -1995,10 +1997,6 @@ declare namespace Enum {
|
|
|
1995
1997
|
EnumType: typeof globalThis.Enum.AnimationNodeWaitFor;
|
|
1996
1998
|
}
|
|
1997
1999
|
export const Finished: Finished;
|
|
1998
|
-
/**
|
|
1999
|
-
* @deprecated renamed to Finished
|
|
2000
|
-
*/
|
|
2001
|
-
export const ClipFinished: Finished;
|
|
2002
2000
|
/**
|
|
2003
2001
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeWaitFor#Trigger)
|
|
2004
2002
|
*/
|
|
@@ -2008,10 +2006,6 @@ declare namespace Enum {
|
|
|
2008
2006
|
EnumType: typeof globalThis.Enum.AnimationNodeWaitFor;
|
|
2009
2007
|
}
|
|
2010
2008
|
export const Trigger: Trigger;
|
|
2011
|
-
/**
|
|
2012
|
-
* @deprecated renamed to Trigger
|
|
2013
|
-
*/
|
|
2014
|
-
export const Expression: Trigger;
|
|
2015
2009
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationNodeWaitFor>;
|
|
2016
2010
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodeWaitFor | undefined;
|
|
2017
2011
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeWaitFor | undefined;
|
|
@@ -2023,17 +2017,6 @@ declare namespace Enum {
|
|
|
2023
2017
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationPriority)
|
|
2024
2018
|
*/
|
|
2025
2019
|
export namespace AnimationPriority {
|
|
2026
|
-
/**
|
|
2027
|
-
* (7) - Lowest priority, intended for use by Roblox default animations and catalog animation bundles.
|
|
2028
|
-
*
|
|
2029
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationPriority#Core)
|
|
2030
|
-
*/
|
|
2031
|
-
export interface Core extends globalThis.EnumItem {
|
|
2032
|
-
Name: "Core";
|
|
2033
|
-
Value: 1000;
|
|
2034
|
-
EnumType: typeof globalThis.Enum.AnimationPriority;
|
|
2035
|
-
}
|
|
2036
|
-
export const Core: Core;
|
|
2037
2020
|
/**
|
|
2038
2021
|
* (6) - Recommended priority for character idle animations.
|
|
2039
2022
|
*
|
|
@@ -2100,11 +2083,22 @@ declare namespace Enum {
|
|
|
2100
2083
|
EnumType: typeof globalThis.Enum.AnimationPriority;
|
|
2101
2084
|
}
|
|
2102
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;
|
|
2103
2097
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationPriority>;
|
|
2104
2098
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationPriority | undefined;
|
|
2105
2099
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationPriority | undefined;
|
|
2106
2100
|
}
|
|
2107
|
-
export type AnimationPriority = AnimationPriority.
|
|
2101
|
+
export type AnimationPriority = AnimationPriority.Idle | AnimationPriority.Movement | AnimationPriority.Action | AnimationPriority.Action2 | AnimationPriority.Action3 | AnimationPriority.Action4 | AnimationPriority.Core;
|
|
2108
2102
|
/**
|
|
2109
2103
|
* Animation Retargeting setting.
|
|
2110
2104
|
*
|
|
@@ -3287,6 +3281,24 @@ declare namespace Enum {
|
|
|
3287
3281
|
EnumType: typeof globalThis.Enum.AssetType;
|
|
3288
3282
|
}
|
|
3289
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;
|
|
3290
3302
|
/**
|
|
3291
3303
|
* The asset is an emote animation.
|
|
3292
3304
|
*
|
|
@@ -3466,29 +3478,11 @@ declare namespace Enum {
|
|
|
3466
3478
|
EnumType: typeof globalThis.Enum.AssetType;
|
|
3467
3479
|
}
|
|
3468
3480
|
export const EyeMakeup: EyeMakeup;
|
|
3469
|
-
/**
|
|
3470
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#EarAccessory)
|
|
3471
|
-
*/
|
|
3472
|
-
export interface EarAccessory extends globalThis.EnumItem {
|
|
3473
|
-
Name: "EarAccessory";
|
|
3474
|
-
Value: 57;
|
|
3475
|
-
EnumType: typeof globalThis.Enum.AssetType;
|
|
3476
|
-
}
|
|
3477
|
-
export const EarAccessory: EarAccessory;
|
|
3478
|
-
/**
|
|
3479
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#EyeAccessory)
|
|
3480
|
-
*/
|
|
3481
|
-
export interface EyeAccessory extends globalThis.EnumItem {
|
|
3482
|
-
Name: "EyeAccessory";
|
|
3483
|
-
Value: 58;
|
|
3484
|
-
EnumType: typeof globalThis.Enum.AssetType;
|
|
3485
|
-
}
|
|
3486
|
-
export const EyeAccessory: EyeAccessory;
|
|
3487
3481
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AssetType>;
|
|
3488
3482
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AssetType | undefined;
|
|
3489
3483
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AssetType | undefined;
|
|
3490
3484
|
}
|
|
3491
|
-
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;
|
|
3492
3486
|
/**
|
|
3493
3487
|
* Determines the asset type verification mode.
|
|
3494
3488
|
*
|
|
@@ -3999,7 +3993,7 @@ declare namespace Enum {
|
|
|
3999
3993
|
}
|
|
4000
3994
|
export const None: None;
|
|
4001
3995
|
/**
|
|
4002
|
-
* Automatically resize element along X
|
|
3996
|
+
* Automatically resize element along the **X** axis to fit child contents.
|
|
4003
3997
|
*
|
|
4004
3998
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AutomaticSize#X)
|
|
4005
3999
|
*/
|
|
@@ -4010,7 +4004,7 @@ declare namespace Enum {
|
|
|
4010
4004
|
}
|
|
4011
4005
|
export const X: X;
|
|
4012
4006
|
/**
|
|
4013
|
-
* Automatically resize element along Y
|
|
4007
|
+
* Automatically resize element along the **Y** axis to fit child contents. Text objects will only resize along the **Y** axis if their `TextWrapped` property is enabled.
|
|
4014
4008
|
*
|
|
4015
4009
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AutomaticSize#Y)
|
|
4016
4010
|
*/
|
|
@@ -4021,7 +4015,7 @@ declare namespace Enum {
|
|
|
4021
4015
|
}
|
|
4022
4016
|
export const Y: Y;
|
|
4023
4017
|
/**
|
|
4024
|
-
* Automatically resize element along X and Y axes to fit child contents.
|
|
4018
|
+
* Automatically resize element along the **X** and **Y** axes to fit child contents.
|
|
4025
4019
|
*
|
|
4026
4020
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AutomaticSize#XY)
|
|
4027
4021
|
*/
|
|
@@ -4328,15 +4322,6 @@ declare namespace Enum {
|
|
|
4328
4322
|
EnumType: typeof globalThis.Enum.AvatarAssetType;
|
|
4329
4323
|
}
|
|
4330
4324
|
export const WalkAnimation: WalkAnimation;
|
|
4331
|
-
/**
|
|
4332
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarAssetType#MoodAnimation)
|
|
4333
|
-
*/
|
|
4334
|
-
export interface MoodAnimation extends globalThis.EnumItem {
|
|
4335
|
-
Name: "MoodAnimation";
|
|
4336
|
-
Value: 78;
|
|
4337
|
-
EnumType: typeof globalThis.Enum.AvatarAssetType;
|
|
4338
|
-
}
|
|
4339
|
-
export const MoodAnimation: MoodAnimation;
|
|
4340
4325
|
/**
|
|
4341
4326
|
* An emote animation.
|
|
4342
4327
|
*
|
|
@@ -4469,6 +4454,15 @@ declare namespace Enum {
|
|
|
4469
4454
|
EnumType: typeof globalThis.Enum.AvatarAssetType;
|
|
4470
4455
|
}
|
|
4471
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;
|
|
4472
4466
|
/**
|
|
4473
4467
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarAssetType#DynamicHead)
|
|
4474
4468
|
*/
|
|
@@ -4509,7 +4503,7 @@ declare namespace Enum {
|
|
|
4509
4503
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarAssetType | undefined;
|
|
4510
4504
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarAssetType | undefined;
|
|
4511
4505
|
}
|
|
4512
|
-
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;
|
|
4513
4507
|
/**
|
|
4514
4508
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarChatServiceFeature)
|
|
4515
4509
|
*/
|
|
@@ -5010,6 +5004,33 @@ declare namespace Enum {
|
|
|
5010
5004
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarSettingsBuildMode | undefined;
|
|
5011
5005
|
}
|
|
5012
5006
|
export type AvatarSettingsBuildMode = AvatarSettingsBuildMode.PlayerChoice | AvatarSettingsBuildMode.CustomBuild;
|
|
5007
|
+
/**
|
|
5008
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsCharacterControllerMode)
|
|
5009
|
+
*/
|
|
5010
|
+
export namespace AvatarSettingsCharacterControllerMode {
|
|
5011
|
+
/**
|
|
5012
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsCharacterControllerMode#LegacyHumanoid)
|
|
5013
|
+
*/
|
|
5014
|
+
export interface LegacyHumanoid extends globalThis.EnumItem {
|
|
5015
|
+
Name: "LegacyHumanoid";
|
|
5016
|
+
Value: 0;
|
|
5017
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsCharacterControllerMode;
|
|
5018
|
+
}
|
|
5019
|
+
export const LegacyHumanoid: LegacyHumanoid;
|
|
5020
|
+
/**
|
|
5021
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsCharacterControllerMode#LuaCharacterController)
|
|
5022
|
+
*/
|
|
5023
|
+
export interface LuaCharacterController extends globalThis.EnumItem {
|
|
5024
|
+
Name: "LuaCharacterController";
|
|
5025
|
+
Value: 1;
|
|
5026
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsCharacterControllerMode;
|
|
5027
|
+
}
|
|
5028
|
+
export const LuaCharacterController: LuaCharacterController;
|
|
5029
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarSettingsCharacterControllerMode>;
|
|
5030
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarSettingsCharacterControllerMode | undefined;
|
|
5031
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarSettingsCharacterControllerMode | undefined;
|
|
5032
|
+
}
|
|
5033
|
+
export type AvatarSettingsCharacterControllerMode = AvatarSettingsCharacterControllerMode.LegacyHumanoid | AvatarSettingsCharacterControllerMode.LuaCharacterController;
|
|
5013
5034
|
/**
|
|
5014
5035
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsClothingMode)
|
|
5015
5036
|
*/
|
|
@@ -6066,17 +6087,6 @@ declare namespace Enum {
|
|
|
6066
6087
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/Button)
|
|
6067
6088
|
*/
|
|
6068
6089
|
export namespace Button {
|
|
6069
|
-
/**
|
|
6070
|
-
* The Jump button.
|
|
6071
|
-
*
|
|
6072
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/Button#Jump)
|
|
6073
|
-
*/
|
|
6074
|
-
export interface Jump extends globalThis.EnumItem {
|
|
6075
|
-
Name: "Jump";
|
|
6076
|
-
Value: 32;
|
|
6077
|
-
EnumType: typeof globalThis.Enum.Button;
|
|
6078
|
-
}
|
|
6079
|
-
export const Jump: Jump;
|
|
6080
6090
|
/**
|
|
6081
6091
|
* The Dismount button.
|
|
6082
6092
|
*
|
|
@@ -6088,11 +6098,22 @@ declare namespace Enum {
|
|
|
6088
6098
|
EnumType: typeof globalThis.Enum.Button;
|
|
6089
6099
|
}
|
|
6090
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;
|
|
6091
6112
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.Button>;
|
|
6092
6113
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.Button | undefined;
|
|
6093
6114
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.Button | undefined;
|
|
6094
6115
|
}
|
|
6095
|
-
export type Button = Button.
|
|
6116
|
+
export type Button = Button.Dismount | Button.Jump;
|
|
6096
6117
|
/**
|
|
6097
6118
|
* Used by `GuiButton.Style` to set a special hardcoded appearance.
|
|
6098
6119
|
*
|
|
@@ -9605,6 +9626,8 @@ declare namespace Enum {
|
|
|
9605
9626
|
*/
|
|
9606
9627
|
export namespace CreateContentResult {
|
|
9607
9628
|
/**
|
|
9629
|
+
* Success.
|
|
9630
|
+
*
|
|
9608
9631
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult#Success)
|
|
9609
9632
|
*/
|
|
9610
9633
|
export interface Success extends globalThis.EnumItem {
|
|
@@ -9614,6 +9637,8 @@ declare namespace Enum {
|
|
|
9614
9637
|
}
|
|
9615
9638
|
export const Success: Success;
|
|
9616
9639
|
/**
|
|
9640
|
+
* The user does not have the required permissions to perform this operation.
|
|
9641
|
+
*
|
|
9617
9642
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult#PermissionDenied)
|
|
9618
9643
|
*/
|
|
9619
9644
|
export interface PermissionDenied extends globalThis.EnumItem {
|
|
@@ -9623,6 +9648,8 @@ declare namespace Enum {
|
|
|
9623
9648
|
}
|
|
9624
9649
|
export const PermissionDenied: PermissionDenied;
|
|
9625
9650
|
/**
|
|
9651
|
+
* Asset failed to upload.
|
|
9652
|
+
*
|
|
9626
9653
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult#UploadFailed)
|
|
9627
9654
|
*/
|
|
9628
9655
|
export interface UploadFailed extends globalThis.EnumItem {
|
|
@@ -9632,28 +9659,32 @@ declare namespace Enum {
|
|
|
9632
9659
|
}
|
|
9633
9660
|
export const UploadFailed: UploadFailed;
|
|
9634
9661
|
/**
|
|
9635
|
-
*
|
|
9662
|
+
* The storage budget limit for `DataModel`-scoped content was exceeded.
|
|
9663
|
+
*
|
|
9664
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult#StorageLimitExceeded)
|
|
9636
9665
|
*/
|
|
9637
|
-
export interface
|
|
9638
|
-
Name: "
|
|
9666
|
+
export interface StorageLimitExceeded extends globalThis.EnumItem {
|
|
9667
|
+
Name: "StorageLimitExceeded";
|
|
9639
9668
|
Value: 4;
|
|
9640
9669
|
EnumType: typeof globalThis.Enum.CreateContentResult;
|
|
9641
9670
|
}
|
|
9642
|
-
export const
|
|
9671
|
+
export const StorageLimitExceeded: StorageLimitExceeded;
|
|
9643
9672
|
/**
|
|
9644
|
-
*
|
|
9673
|
+
* An unknown error occurred.
|
|
9674
|
+
*
|
|
9675
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult#Unknown)
|
|
9645
9676
|
*/
|
|
9646
|
-
export interface
|
|
9647
|
-
Name: "
|
|
9677
|
+
export interface Unknown extends globalThis.EnumItem {
|
|
9678
|
+
Name: "Unknown";
|
|
9648
9679
|
Value: 5;
|
|
9649
9680
|
EnumType: typeof globalThis.Enum.CreateContentResult;
|
|
9650
9681
|
}
|
|
9651
|
-
export const
|
|
9682
|
+
export const Unknown: Unknown;
|
|
9652
9683
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CreateContentResult>;
|
|
9653
9684
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CreateContentResult | undefined;
|
|
9654
9685
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CreateContentResult | undefined;
|
|
9655
9686
|
}
|
|
9656
|
-
export type CreateContentResult = CreateContentResult.Success | CreateContentResult.PermissionDenied | CreateContentResult.UploadFailed | CreateContentResult.
|
|
9687
|
+
export type CreateContentResult = CreateContentResult.Success | CreateContentResult.PermissionDenied | CreateContentResult.UploadFailed | CreateContentResult.StorageLimitExceeded | CreateContentResult.Unknown;
|
|
9657
9688
|
/**
|
|
9658
9689
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateOutfitFailure)
|
|
9659
9690
|
*/
|
|
@@ -11192,11 +11223,20 @@ declare namespace Enum {
|
|
|
11192
11223
|
EnumType: typeof globalThis.Enum.DeviceType;
|
|
11193
11224
|
}
|
|
11194
11225
|
export const Phone: Phone;
|
|
11226
|
+
/**
|
|
11227
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DeviceType#TV)
|
|
11228
|
+
*/
|
|
11229
|
+
export interface TV extends globalThis.EnumItem {
|
|
11230
|
+
Name: "TV";
|
|
11231
|
+
Value: 4;
|
|
11232
|
+
EnumType: typeof globalThis.Enum.DeviceType;
|
|
11233
|
+
}
|
|
11234
|
+
export const TV: TV;
|
|
11195
11235
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DeviceType>;
|
|
11196
11236
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DeviceType | undefined;
|
|
11197
11237
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DeviceType | undefined;
|
|
11198
11238
|
}
|
|
11199
|
-
export type DeviceType = DeviceType.Unknown | DeviceType.Desktop | DeviceType.Tablet | DeviceType.Phone;
|
|
11239
|
+
export type DeviceType = DeviceType.Unknown | DeviceType.Desktop | DeviceType.Tablet | DeviceType.Phone | DeviceType.TV;
|
|
11200
11240
|
/**
|
|
11201
11241
|
* Controls whether multiple people can use this dialog, or only one person at a time can use it.
|
|
11202
11242
|
*
|
|
@@ -21880,6 +21920,17 @@ declare namespace Enum {
|
|
|
21880
21920
|
EnumType: typeof globalThis.Enum.Material;
|
|
21881
21921
|
}
|
|
21882
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;
|
|
21883
21934
|
/**
|
|
21884
21935
|
* Applies to `BasePart` and `Terrain`.
|
|
21885
21936
|
*
|
|
@@ -21891,6 +21942,17 @@ declare namespace Enum {
|
|
|
21891
21942
|
EnumType: typeof globalThis.Enum.Material;
|
|
21892
21943
|
}
|
|
21893
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;
|
|
21894
21956
|
/**
|
|
21895
21957
|
* Applies to `BasePart` and `Terrain`.
|
|
21896
21958
|
*
|
|
@@ -21902,6 +21964,17 @@ declare namespace Enum {
|
|
|
21902
21964
|
EnumType: typeof globalThis.Enum.Material;
|
|
21903
21965
|
}
|
|
21904
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;
|
|
21905
21978
|
/**
|
|
21906
21979
|
* Applies to `BasePart` only.
|
|
21907
21980
|
*
|
|
@@ -21913,6 +21986,17 @@ declare namespace Enum {
|
|
|
21913
21986
|
EnumType: typeof globalThis.Enum.Material;
|
|
21914
21987
|
}
|
|
21915
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;
|
|
21916
22000
|
/**
|
|
21917
22001
|
* Applies to `BasePart` and `Terrain`.
|
|
21918
22002
|
*
|
|
@@ -21968,50 +22052,6 @@ declare namespace Enum {
|
|
|
21968
22052
|
EnumType: typeof globalThis.Enum.Material;
|
|
21969
22053
|
}
|
|
21970
22054
|
export const Sandstone: Sandstone;
|
|
21971
|
-
/**
|
|
21972
|
-
* Applies to `BasePart` and `Terrain`.
|
|
21973
|
-
*
|
|
21974
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/Material#Basalt)
|
|
21975
|
-
*/
|
|
21976
|
-
export interface Basalt extends globalThis.EnumItem {
|
|
21977
|
-
Name: "Basalt";
|
|
21978
|
-
Value: 788;
|
|
21979
|
-
EnumType: typeof globalThis.Enum.Material;
|
|
21980
|
-
}
|
|
21981
|
-
export const Basalt: Basalt;
|
|
21982
|
-
/**
|
|
21983
|
-
* Applies to `BasePart` and `Terrain`.
|
|
21984
|
-
*
|
|
21985
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/Material#CrackedLava)
|
|
21986
|
-
*/
|
|
21987
|
-
export interface CrackedLava extends globalThis.EnumItem {
|
|
21988
|
-
Name: "CrackedLava";
|
|
21989
|
-
Value: 804;
|
|
21990
|
-
EnumType: typeof globalThis.Enum.Material;
|
|
21991
|
-
}
|
|
21992
|
-
export const CrackedLava: CrackedLava;
|
|
21993
|
-
/**
|
|
21994
|
-
* Applies to `BasePart` and `Terrain`.
|
|
21995
|
-
*
|
|
21996
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/Material#Limestone)
|
|
21997
|
-
*/
|
|
21998
|
-
export interface Limestone extends globalThis.EnumItem {
|
|
21999
|
-
Name: "Limestone";
|
|
22000
|
-
Value: 820;
|
|
22001
|
-
EnumType: typeof globalThis.Enum.Material;
|
|
22002
|
-
}
|
|
22003
|
-
export const Limestone: Limestone;
|
|
22004
|
-
/**
|
|
22005
|
-
* Applies to `BasePart` and `Terrain`.
|
|
22006
|
-
*
|
|
22007
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/Material#Pavement)
|
|
22008
|
-
*/
|
|
22009
|
-
export interface Pavement extends globalThis.EnumItem {
|
|
22010
|
-
Name: "Pavement";
|
|
22011
|
-
Value: 836;
|
|
22012
|
-
EnumType: typeof globalThis.Enum.Material;
|
|
22013
|
-
}
|
|
22014
|
-
export const Pavement: Pavement;
|
|
22015
22055
|
/**
|
|
22016
22056
|
* Applies to `BasePart` only.
|
|
22017
22057
|
*
|
|
@@ -22317,7 +22357,7 @@ declare namespace Enum {
|
|
|
22317
22357
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.Material | undefined;
|
|
22318
22358
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.Material | undefined;
|
|
22319
22359
|
}
|
|
22320
|
-
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;
|
|
22321
22361
|
/**
|
|
22322
22362
|
* Describes the pattern of material. Affects texture tiling method.
|
|
22323
22363
|
*
|
|
@@ -24681,6 +24721,33 @@ declare namespace Enum {
|
|
|
24681
24721
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PermissionLevelShown | undefined;
|
|
24682
24722
|
}
|
|
24683
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;
|
|
24684
24751
|
/**
|
|
24685
24752
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PhysicsSimulationRate)
|
|
24686
24753
|
*/
|
|
@@ -25447,10 +25514,14 @@ declare namespace Enum {
|
|
|
25447
25514
|
}
|
|
25448
25515
|
export type PlayerExitReason = PlayerExitReason.Unknown | PlayerExitReason.PlatformKick | PlayerExitReason.CreatorKick;
|
|
25449
25516
|
/**
|
|
25517
|
+
* Describes a player's platform-wide spender status bucket.
|
|
25518
|
+
*
|
|
25450
25519
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerPlatformSpenderStatus)
|
|
25451
25520
|
*/
|
|
25452
25521
|
export namespace PlayerPlatformSpenderStatus {
|
|
25453
25522
|
/**
|
|
25523
|
+
* Segment data is unavailable.
|
|
25524
|
+
*
|
|
25454
25525
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerPlatformSpenderStatus#Unknown)
|
|
25455
25526
|
*/
|
|
25456
25527
|
export interface Unknown extends globalThis.EnumItem {
|
|
@@ -25460,6 +25531,8 @@ declare namespace Enum {
|
|
|
25460
25531
|
}
|
|
25461
25532
|
export const Unknown: Unknown;
|
|
25462
25533
|
/**
|
|
25534
|
+
* The player is an active platform spender.
|
|
25535
|
+
*
|
|
25463
25536
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerPlatformSpenderStatus#Active)
|
|
25464
25537
|
*/
|
|
25465
25538
|
export interface Active extends globalThis.EnumItem {
|
|
@@ -25469,6 +25542,8 @@ declare namespace Enum {
|
|
|
25469
25542
|
}
|
|
25470
25543
|
export const Active: Active;
|
|
25471
25544
|
/**
|
|
25545
|
+
* The player is not an active platform spender, including players who have never spent.
|
|
25546
|
+
*
|
|
25472
25547
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerPlatformSpenderStatus#OtherPayer)
|
|
25473
25548
|
*/
|
|
25474
25549
|
export interface OtherPayer extends globalThis.EnumItem {
|
|
@@ -25482,6 +25557,33 @@ declare namespace Enum {
|
|
|
25482
25557
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PlayerPlatformSpenderStatus | undefined;
|
|
25483
25558
|
}
|
|
25484
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;
|
|
25485
25587
|
/**
|
|
25486
25588
|
* Used exclusively by Pose.EasingDirection to specify direction of the EasingStyle curve.
|
|
25487
25589
|
*
|
|
@@ -25821,6 +25923,51 @@ declare namespace Enum {
|
|
|
25821
25923
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PreferredTextSize | undefined;
|
|
25822
25924
|
}
|
|
25823
25925
|
export type PreferredTextSize = PreferredTextSize.Medium | PreferredTextSize.Large | PreferredTextSize.Larger | PreferredTextSize.Largest;
|
|
25926
|
+
/**
|
|
25927
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrefetchDownloadStatus)
|
|
25928
|
+
*/
|
|
25929
|
+
export namespace PrefetchDownloadStatus {
|
|
25930
|
+
/**
|
|
25931
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrefetchDownloadStatus#NotStarted)
|
|
25932
|
+
*/
|
|
25933
|
+
export interface NotStarted extends globalThis.EnumItem {
|
|
25934
|
+
Name: "NotStarted";
|
|
25935
|
+
Value: 0;
|
|
25936
|
+
EnumType: typeof globalThis.Enum.PrefetchDownloadStatus;
|
|
25937
|
+
}
|
|
25938
|
+
export const NotStarted: NotStarted;
|
|
25939
|
+
/**
|
|
25940
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrefetchDownloadStatus#InProgress)
|
|
25941
|
+
*/
|
|
25942
|
+
export interface InProgress extends globalThis.EnumItem {
|
|
25943
|
+
Name: "InProgress";
|
|
25944
|
+
Value: 1;
|
|
25945
|
+
EnumType: typeof globalThis.Enum.PrefetchDownloadStatus;
|
|
25946
|
+
}
|
|
25947
|
+
export const InProgress: InProgress;
|
|
25948
|
+
/**
|
|
25949
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrefetchDownloadStatus#Completed)
|
|
25950
|
+
*/
|
|
25951
|
+
export interface Completed extends globalThis.EnumItem {
|
|
25952
|
+
Name: "Completed";
|
|
25953
|
+
Value: 2;
|
|
25954
|
+
EnumType: typeof globalThis.Enum.PrefetchDownloadStatus;
|
|
25955
|
+
}
|
|
25956
|
+
export const Completed: Completed;
|
|
25957
|
+
/**
|
|
25958
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrefetchDownloadStatus#Failed)
|
|
25959
|
+
*/
|
|
25960
|
+
export interface Failed extends globalThis.EnumItem {
|
|
25961
|
+
Name: "Failed";
|
|
25962
|
+
Value: 3;
|
|
25963
|
+
EnumType: typeof globalThis.Enum.PrefetchDownloadStatus;
|
|
25964
|
+
}
|
|
25965
|
+
export const Failed: Failed;
|
|
25966
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PrefetchDownloadStatus>;
|
|
25967
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PrefetchDownloadStatus | undefined;
|
|
25968
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PrefetchDownloadStatus | undefined;
|
|
25969
|
+
}
|
|
25970
|
+
export type PrefetchDownloadStatus = PrefetchDownloadStatus.NotStarted | PrefetchDownloadStatus.InProgress | PrefetchDownloadStatus.Completed | PrefetchDownloadStatus.Failed;
|
|
25824
25971
|
/**
|
|
25825
25972
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrimalPhysicsSolver)
|
|
25826
25973
|
*/
|
|
@@ -25927,23 +26074,23 @@ declare namespace Enum {
|
|
|
25927
26074
|
*/
|
|
25928
26075
|
export namespace PrivilegeType {
|
|
25929
26076
|
/**
|
|
25930
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrivilegeType#
|
|
26077
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrivilegeType#Banned)
|
|
25931
26078
|
*/
|
|
25932
|
-
export interface
|
|
25933
|
-
Name: "
|
|
25934
|
-
Value:
|
|
26079
|
+
export interface Banned extends globalThis.EnumItem {
|
|
26080
|
+
Name: "Banned";
|
|
26081
|
+
Value: 0;
|
|
25935
26082
|
EnumType: typeof globalThis.Enum.PrivilegeType;
|
|
25936
26083
|
}
|
|
25937
|
-
export const
|
|
26084
|
+
export const Banned: Banned;
|
|
25938
26085
|
/**
|
|
25939
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrivilegeType#
|
|
26086
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrivilegeType#Visitor)
|
|
25940
26087
|
*/
|
|
25941
|
-
export interface
|
|
25942
|
-
Name: "
|
|
25943
|
-
Value:
|
|
26088
|
+
export interface Visitor extends globalThis.EnumItem {
|
|
26089
|
+
Name: "Visitor";
|
|
26090
|
+
Value: 10;
|
|
25944
26091
|
EnumType: typeof globalThis.Enum.PrivilegeType;
|
|
25945
26092
|
}
|
|
25946
|
-
export const
|
|
26093
|
+
export const Visitor: Visitor;
|
|
25947
26094
|
/**
|
|
25948
26095
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrivilegeType#Member)
|
|
25949
26096
|
*/
|
|
@@ -25954,28 +26101,28 @@ declare namespace Enum {
|
|
|
25954
26101
|
}
|
|
25955
26102
|
export const Member: Member;
|
|
25956
26103
|
/**
|
|
25957
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrivilegeType#
|
|
26104
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrivilegeType#Admin)
|
|
25958
26105
|
*/
|
|
25959
|
-
export interface
|
|
25960
|
-
Name: "
|
|
25961
|
-
Value:
|
|
26106
|
+
export interface Admin extends globalThis.EnumItem {
|
|
26107
|
+
Name: "Admin";
|
|
26108
|
+
Value: 240;
|
|
25962
26109
|
EnumType: typeof globalThis.Enum.PrivilegeType;
|
|
25963
26110
|
}
|
|
25964
|
-
export const
|
|
26111
|
+
export const Admin: Admin;
|
|
25965
26112
|
/**
|
|
25966
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrivilegeType#
|
|
26113
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrivilegeType#Owner)
|
|
25967
26114
|
*/
|
|
25968
|
-
export interface
|
|
25969
|
-
Name: "
|
|
25970
|
-
Value:
|
|
26115
|
+
export interface Owner extends globalThis.EnumItem {
|
|
26116
|
+
Name: "Owner";
|
|
26117
|
+
Value: 255;
|
|
25971
26118
|
EnumType: typeof globalThis.Enum.PrivilegeType;
|
|
25972
26119
|
}
|
|
25973
|
-
export const
|
|
26120
|
+
export const Owner: Owner;
|
|
25974
26121
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PrivilegeType>;
|
|
25975
26122
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PrivilegeType | undefined;
|
|
25976
26123
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PrivilegeType | undefined;
|
|
25977
26124
|
}
|
|
25978
|
-
export type PrivilegeType = PrivilegeType.
|
|
26125
|
+
export type PrivilegeType = PrivilegeType.Banned | PrivilegeType.Visitor | PrivilegeType.Member | PrivilegeType.Admin | PrivilegeType.Owner;
|
|
25979
26126
|
/**
|
|
25980
26127
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ProductLocationRestriction)
|
|
25981
26128
|
*/
|
|
@@ -26595,6 +26742,33 @@ declare namespace Enum {
|
|
|
26595
26742
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ProximityPromptStyle | undefined;
|
|
26596
26743
|
}
|
|
26597
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;
|
|
26598
26772
|
/**
|
|
26599
26773
|
* Controls the rendering quality of the game.
|
|
26600
26774
|
*
|
|
@@ -27463,14 +27637,14 @@ declare namespace Enum {
|
|
|
27463
27637
|
}
|
|
27464
27638
|
export const Standard: Standard;
|
|
27465
27639
|
/**
|
|
27466
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReservedHighlightId#
|
|
27640
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReservedHighlightId#Active)
|
|
27467
27641
|
*/
|
|
27468
|
-
export interface
|
|
27469
|
-
Name: "
|
|
27470
|
-
Value:
|
|
27642
|
+
export interface Active extends globalThis.EnumItem {
|
|
27643
|
+
Name: "Active";
|
|
27644
|
+
Value: 131072;
|
|
27471
27645
|
EnumType: typeof globalThis.Enum.ReservedHighlightId;
|
|
27472
27646
|
}
|
|
27473
|
-
export const
|
|
27647
|
+
export const Active: Active;
|
|
27474
27648
|
/**
|
|
27475
27649
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReservedHighlightId#Hover)
|
|
27476
27650
|
*/
|
|
@@ -27481,14 +27655,14 @@ declare namespace Enum {
|
|
|
27481
27655
|
}
|
|
27482
27656
|
export const Hover: Hover;
|
|
27483
27657
|
/**
|
|
27484
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReservedHighlightId#
|
|
27658
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReservedHighlightId#Selection)
|
|
27485
27659
|
*/
|
|
27486
|
-
export interface
|
|
27487
|
-
Name: "
|
|
27488
|
-
Value:
|
|
27660
|
+
export interface Selection extends globalThis.EnumItem {
|
|
27661
|
+
Name: "Selection";
|
|
27662
|
+
Value: 524288;
|
|
27489
27663
|
EnumType: typeof globalThis.Enum.ReservedHighlightId;
|
|
27490
27664
|
}
|
|
27491
|
-
export const
|
|
27665
|
+
export const Selection: Selection;
|
|
27492
27666
|
/**
|
|
27493
27667
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReservedHighlightId#NegatedPart)
|
|
27494
27668
|
*/
|
|
@@ -27502,7 +27676,7 @@ declare namespace Enum {
|
|
|
27502
27676
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ReservedHighlightId | undefined;
|
|
27503
27677
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ReservedHighlightId | undefined;
|
|
27504
27678
|
}
|
|
27505
|
-
export type ReservedHighlightId = ReservedHighlightId.Standard | ReservedHighlightId.
|
|
27679
|
+
export type ReservedHighlightId = ReservedHighlightId.Standard | ReservedHighlightId.Active | ReservedHighlightId.Hover | ReservedHighlightId.Selection | ReservedHighlightId.NegatedPart;
|
|
27506
27680
|
/**
|
|
27507
27681
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RestPose)
|
|
27508
27682
|
*/
|
|
@@ -30607,11 +30781,20 @@ declare namespace Enum {
|
|
|
30607
30781
|
EnumType: typeof globalThis.Enum.SolidPrimitiveType;
|
|
30608
30782
|
}
|
|
30609
30783
|
export const Cone: Cone;
|
|
30784
|
+
/**
|
|
30785
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SolidPrimitiveType#RoundedBox)
|
|
30786
|
+
*/
|
|
30787
|
+
export interface RoundedBox extends globalThis.EnumItem {
|
|
30788
|
+
Name: "RoundedBox";
|
|
30789
|
+
Value: 7;
|
|
30790
|
+
EnumType: typeof globalThis.Enum.SolidPrimitiveType;
|
|
30791
|
+
}
|
|
30792
|
+
export const RoundedBox: RoundedBox;
|
|
30610
30793
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SolidPrimitiveType>;
|
|
30611
30794
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SolidPrimitiveType | undefined;
|
|
30612
30795
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SolidPrimitiveType | undefined;
|
|
30613
30796
|
}
|
|
30614
|
-
export type SolidPrimitiveType = SolidPrimitiveType.Capsule | SolidPrimitiveType.Cone;
|
|
30797
|
+
export type SolidPrimitiveType = SolidPrimitiveType.Capsule | SolidPrimitiveType.Cone | SolidPrimitiveType.RoundedBox;
|
|
30615
30798
|
/**
|
|
30616
30799
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SolverConvergenceMetricType)
|
|
30617
30800
|
*/
|
|
@@ -31268,6 +31451,78 @@ declare namespace Enum {
|
|
|
31268
31451
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.StrokeSizingMode | undefined;
|
|
31269
31452
|
}
|
|
31270
31453
|
export type StrokeSizingMode = StrokeSizingMode.FixedSize | StrokeSizingMode.ScaledSize;
|
|
31454
|
+
/**
|
|
31455
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioCaptureBufferStatus)
|
|
31456
|
+
*/
|
|
31457
|
+
export namespace StudioCaptureBufferStatus {
|
|
31458
|
+
/**
|
|
31459
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioCaptureBufferStatus#NotStarted)
|
|
31460
|
+
*/
|
|
31461
|
+
export interface NotStarted extends globalThis.EnumItem {
|
|
31462
|
+
Name: "NotStarted";
|
|
31463
|
+
Value: 0;
|
|
31464
|
+
EnumType: typeof globalThis.Enum.StudioCaptureBufferStatus;
|
|
31465
|
+
}
|
|
31466
|
+
export const NotStarted: NotStarted;
|
|
31467
|
+
/**
|
|
31468
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioCaptureBufferStatus#Pending)
|
|
31469
|
+
*/
|
|
31470
|
+
export interface Pending extends globalThis.EnumItem {
|
|
31471
|
+
Name: "Pending";
|
|
31472
|
+
Value: 1;
|
|
31473
|
+
EnumType: typeof globalThis.Enum.StudioCaptureBufferStatus;
|
|
31474
|
+
}
|
|
31475
|
+
export const Pending: Pending;
|
|
31476
|
+
/**
|
|
31477
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioCaptureBufferStatus#Ready)
|
|
31478
|
+
*/
|
|
31479
|
+
export interface Ready extends globalThis.EnumItem {
|
|
31480
|
+
Name: "Ready";
|
|
31481
|
+
Value: 2;
|
|
31482
|
+
EnumType: typeof globalThis.Enum.StudioCaptureBufferStatus;
|
|
31483
|
+
}
|
|
31484
|
+
export const Ready: Ready;
|
|
31485
|
+
/**
|
|
31486
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioCaptureBufferStatus#Error)
|
|
31487
|
+
*/
|
|
31488
|
+
export interface Error extends globalThis.EnumItem {
|
|
31489
|
+
Name: "Error";
|
|
31490
|
+
Value: 3;
|
|
31491
|
+
EnumType: typeof globalThis.Enum.StudioCaptureBufferStatus;
|
|
31492
|
+
}
|
|
31493
|
+
export const Error: Error;
|
|
31494
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.StudioCaptureBufferStatus>;
|
|
31495
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.StudioCaptureBufferStatus | undefined;
|
|
31496
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.StudioCaptureBufferStatus | undefined;
|
|
31497
|
+
}
|
|
31498
|
+
export type StudioCaptureBufferStatus = StudioCaptureBufferStatus.NotStarted | StudioCaptureBufferStatus.Pending | StudioCaptureBufferStatus.Ready | StudioCaptureBufferStatus.Error;
|
|
31499
|
+
/**
|
|
31500
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioCaptureScreenshotFormat)
|
|
31501
|
+
*/
|
|
31502
|
+
export namespace StudioCaptureScreenshotFormat {
|
|
31503
|
+
/**
|
|
31504
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioCaptureScreenshotFormat#RGBA8)
|
|
31505
|
+
*/
|
|
31506
|
+
export interface RGBA8 extends globalThis.EnumItem {
|
|
31507
|
+
Name: "RGBA8";
|
|
31508
|
+
Value: 0;
|
|
31509
|
+
EnumType: typeof globalThis.Enum.StudioCaptureScreenshotFormat;
|
|
31510
|
+
}
|
|
31511
|
+
export const RGBA8: RGBA8;
|
|
31512
|
+
/**
|
|
31513
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioCaptureScreenshotFormat#PNG)
|
|
31514
|
+
*/
|
|
31515
|
+
export interface PNG extends globalThis.EnumItem {
|
|
31516
|
+
Name: "PNG";
|
|
31517
|
+
Value: 1;
|
|
31518
|
+
EnumType: typeof globalThis.Enum.StudioCaptureScreenshotFormat;
|
|
31519
|
+
}
|
|
31520
|
+
export const PNG: PNG;
|
|
31521
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.StudioCaptureScreenshotFormat>;
|
|
31522
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.StudioCaptureScreenshotFormat | undefined;
|
|
31523
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.StudioCaptureScreenshotFormat | undefined;
|
|
31524
|
+
}
|
|
31525
|
+
export type StudioCaptureScreenshotFormat = StudioCaptureScreenshotFormat.RGBA8 | StudioCaptureScreenshotFormat.PNG;
|
|
31271
31526
|
/**
|
|
31272
31527
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioCloseMode)
|
|
31273
31528
|
*/
|
|
@@ -35195,50 +35450,6 @@ declare namespace Enum {
|
|
|
35195
35450
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThreadPoolConfig)
|
|
35196
35451
|
*/
|
|
35197
35452
|
export namespace ThreadPoolConfig {
|
|
35198
|
-
/**
|
|
35199
|
-
* Utilize 4 worker threads per available physical CPU core.
|
|
35200
|
-
*
|
|
35201
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThreadPoolConfig#PerCore4)
|
|
35202
|
-
*/
|
|
35203
|
-
export interface PerCore4 extends globalThis.EnumItem {
|
|
35204
|
-
Name: "PerCore4";
|
|
35205
|
-
Value: 104;
|
|
35206
|
-
EnumType: typeof globalThis.Enum.ThreadPoolConfig;
|
|
35207
|
-
}
|
|
35208
|
-
export const PerCore4: PerCore4;
|
|
35209
|
-
/**
|
|
35210
|
-
* Utilize 3 worker threads per available physical CPU core.
|
|
35211
|
-
*
|
|
35212
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThreadPoolConfig#PerCore3)
|
|
35213
|
-
*/
|
|
35214
|
-
export interface PerCore3 extends globalThis.EnumItem {
|
|
35215
|
-
Name: "PerCore3";
|
|
35216
|
-
Value: 103;
|
|
35217
|
-
EnumType: typeof globalThis.Enum.ThreadPoolConfig;
|
|
35218
|
-
}
|
|
35219
|
-
export const PerCore3: PerCore3;
|
|
35220
|
-
/**
|
|
35221
|
-
* Utilize 2 worker threads per available physical CPU core.
|
|
35222
|
-
*
|
|
35223
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThreadPoolConfig#PerCore2)
|
|
35224
|
-
*/
|
|
35225
|
-
export interface PerCore2 extends globalThis.EnumItem {
|
|
35226
|
-
Name: "PerCore2";
|
|
35227
|
-
Value: 102;
|
|
35228
|
-
EnumType: typeof globalThis.Enum.ThreadPoolConfig;
|
|
35229
|
-
}
|
|
35230
|
-
export const PerCore2: PerCore2;
|
|
35231
|
-
/**
|
|
35232
|
-
* Utilize 1 worker thread per available physical CPU core.
|
|
35233
|
-
*
|
|
35234
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThreadPoolConfig#PerCore1)
|
|
35235
|
-
*/
|
|
35236
|
-
export interface PerCore1 extends globalThis.EnumItem {
|
|
35237
|
-
Name: "PerCore1";
|
|
35238
|
-
Value: 101;
|
|
35239
|
-
EnumType: typeof globalThis.Enum.ThreadPoolConfig;
|
|
35240
|
-
}
|
|
35241
|
-
export const PerCore1: PerCore1;
|
|
35242
35453
|
/**
|
|
35243
35454
|
* Let task scheduler make a decision internally.
|
|
35244
35455
|
*
|
|
@@ -35320,11 +35531,55 @@ declare namespace Enum {
|
|
|
35320
35531
|
EnumType: typeof globalThis.Enum.ThreadPoolConfig;
|
|
35321
35532
|
}
|
|
35322
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;
|
|
35323
35578
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ThreadPoolConfig>;
|
|
35324
35579
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ThreadPoolConfig | undefined;
|
|
35325
35580
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ThreadPoolConfig | undefined;
|
|
35326
35581
|
}
|
|
35327
|
-
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;
|
|
35328
35583
|
/**
|
|
35329
35584
|
* Amount of throttling to apply.
|
|
35330
35585
|
*
|
|
@@ -35332,16 +35587,16 @@ declare namespace Enum {
|
|
|
35332
35587
|
*/
|
|
35333
35588
|
export namespace ThrottlingPriority {
|
|
35334
35589
|
/**
|
|
35335
|
-
*
|
|
35590
|
+
* Standard throttling.
|
|
35336
35591
|
*
|
|
35337
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThrottlingPriority#
|
|
35592
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThrottlingPriority#Default)
|
|
35338
35593
|
*/
|
|
35339
|
-
export interface
|
|
35340
|
-
Name: "
|
|
35341
|
-
Value:
|
|
35594
|
+
export interface Default extends globalThis.EnumItem {
|
|
35595
|
+
Name: "Default";
|
|
35596
|
+
Value: 0;
|
|
35342
35597
|
EnumType: typeof globalThis.Enum.ThrottlingPriority;
|
|
35343
35598
|
}
|
|
35344
|
-
export const
|
|
35599
|
+
export const Default: Default;
|
|
35345
35600
|
/**
|
|
35346
35601
|
* Less throttling if on the server.
|
|
35347
35602
|
*
|
|
@@ -35354,21 +35609,21 @@ declare namespace Enum {
|
|
|
35354
35609
|
}
|
|
35355
35610
|
export const ElevatedOnServer: ElevatedOnServer;
|
|
35356
35611
|
/**
|
|
35357
|
-
*
|
|
35612
|
+
* No throttling, absolutely no exceptions.
|
|
35358
35613
|
*
|
|
35359
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThrottlingPriority#
|
|
35614
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThrottlingPriority#Extreme)
|
|
35360
35615
|
*/
|
|
35361
|
-
export interface
|
|
35362
|
-
Name: "
|
|
35363
|
-
Value:
|
|
35616
|
+
export interface Extreme extends globalThis.EnumItem {
|
|
35617
|
+
Name: "Extreme";
|
|
35618
|
+
Value: 2;
|
|
35364
35619
|
EnumType: typeof globalThis.Enum.ThrottlingPriority;
|
|
35365
35620
|
}
|
|
35366
|
-
export const
|
|
35621
|
+
export const Extreme: Extreme;
|
|
35367
35622
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ThrottlingPriority>;
|
|
35368
35623
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ThrottlingPriority | undefined;
|
|
35369
35624
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ThrottlingPriority | undefined;
|
|
35370
35625
|
}
|
|
35371
|
-
export type ThrottlingPriority = ThrottlingPriority.
|
|
35626
|
+
export type ThrottlingPriority = ThrottlingPriority.Default | ThrottlingPriority.ElevatedOnServer | ThrottlingPriority.Extreme;
|
|
35372
35627
|
/**
|
|
35373
35628
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ThumbnailSize)
|
|
35374
35629
|
*/
|
|
@@ -35860,15 +36115,6 @@ declare namespace Enum {
|
|
|
35860
36115
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerExtrapolationFlagMode)
|
|
35861
36116
|
*/
|
|
35862
36117
|
export namespace TrackerExtrapolationFlagMode {
|
|
35863
|
-
/**
|
|
35864
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerExtrapolationFlagMode#Auto)
|
|
35865
|
-
*/
|
|
35866
|
-
export interface Auto extends globalThis.EnumItem {
|
|
35867
|
-
Name: "Auto";
|
|
35868
|
-
Value: 3;
|
|
35869
|
-
EnumType: typeof globalThis.Enum.TrackerExtrapolationFlagMode;
|
|
35870
|
-
}
|
|
35871
|
-
export const Auto: Auto;
|
|
35872
36118
|
/**
|
|
35873
36119
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerExtrapolationFlagMode#ForceDisabled)
|
|
35874
36120
|
*/
|
|
@@ -35896,11 +36142,20 @@ declare namespace Enum {
|
|
|
35896
36142
|
EnumType: typeof globalThis.Enum.TrackerExtrapolationFlagMode;
|
|
35897
36143
|
}
|
|
35898
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;
|
|
35899
36154
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TrackerExtrapolationFlagMode>;
|
|
35900
36155
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TrackerExtrapolationFlagMode | undefined;
|
|
35901
36156
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TrackerExtrapolationFlagMode | undefined;
|
|
35902
36157
|
}
|
|
35903
|
-
export type TrackerExtrapolationFlagMode = TrackerExtrapolationFlagMode.
|
|
36158
|
+
export type TrackerExtrapolationFlagMode = TrackerExtrapolationFlagMode.ForceDisabled | TrackerExtrapolationFlagMode.ExtrapolateFacsAndPose | TrackerExtrapolationFlagMode.ExtrapolateFacsOnly | TrackerExtrapolationFlagMode.Auto;
|
|
35904
36159
|
/**
|
|
35905
36160
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerFaceTrackingStatus)
|
|
35906
36161
|
*/
|
|
@@ -35977,15 +36232,6 @@ declare namespace Enum {
|
|
|
35977
36232
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerLodFlagMode)
|
|
35978
36233
|
*/
|
|
35979
36234
|
export namespace TrackerLodFlagMode {
|
|
35980
|
-
/**
|
|
35981
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerLodFlagMode#Auto)
|
|
35982
|
-
*/
|
|
35983
|
-
export interface Auto extends globalThis.EnumItem {
|
|
35984
|
-
Name: "Auto";
|
|
35985
|
-
Value: 2;
|
|
35986
|
-
EnumType: typeof globalThis.Enum.TrackerLodFlagMode;
|
|
35987
|
-
}
|
|
35988
|
-
export const Auto: Auto;
|
|
35989
36235
|
/**
|
|
35990
36236
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerLodFlagMode#ForceFalse)
|
|
35991
36237
|
*/
|
|
@@ -36004,24 +36250,24 @@ declare namespace Enum {
|
|
|
36004
36250
|
EnumType: typeof globalThis.Enum.TrackerLodFlagMode;
|
|
36005
36251
|
}
|
|
36006
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;
|
|
36007
36262
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TrackerLodFlagMode>;
|
|
36008
36263
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TrackerLodFlagMode | undefined;
|
|
36009
36264
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TrackerLodFlagMode | undefined;
|
|
36010
36265
|
}
|
|
36011
|
-
export type TrackerLodFlagMode = TrackerLodFlagMode.
|
|
36266
|
+
export type TrackerLodFlagMode = TrackerLodFlagMode.ForceFalse | TrackerLodFlagMode.ForceTrue | TrackerLodFlagMode.Auto;
|
|
36012
36267
|
/**
|
|
36013
36268
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerLodValueMode)
|
|
36014
36269
|
*/
|
|
36015
36270
|
export namespace TrackerLodValueMode {
|
|
36016
|
-
/**
|
|
36017
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerLodValueMode#Auto)
|
|
36018
|
-
*/
|
|
36019
|
-
export interface Auto extends globalThis.EnumItem {
|
|
36020
|
-
Name: "Auto";
|
|
36021
|
-
Value: 2;
|
|
36022
|
-
EnumType: typeof globalThis.Enum.TrackerLodValueMode;
|
|
36023
|
-
}
|
|
36024
|
-
export const Auto: Auto;
|
|
36025
36271
|
/**
|
|
36026
36272
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerLodValueMode#Force0)
|
|
36027
36273
|
*/
|
|
@@ -36040,11 +36286,20 @@ declare namespace Enum {
|
|
|
36040
36286
|
EnumType: typeof globalThis.Enum.TrackerLodValueMode;
|
|
36041
36287
|
}
|
|
36042
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;
|
|
36043
36298
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TrackerLodValueMode>;
|
|
36044
36299
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TrackerLodValueMode | undefined;
|
|
36045
36300
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TrackerLodValueMode | undefined;
|
|
36046
36301
|
}
|
|
36047
|
-
export type TrackerLodValueMode = TrackerLodValueMode.
|
|
36302
|
+
export type TrackerLodValueMode = TrackerLodValueMode.Force0 | TrackerLodValueMode.Force1 | TrackerLodValueMode.Auto;
|
|
36048
36303
|
/**
|
|
36049
36304
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TrackerMode)
|
|
36050
36305
|
*/
|
|
@@ -36149,14 +36404,14 @@ declare namespace Enum {
|
|
|
36149
36404
|
*/
|
|
36150
36405
|
export namespace TriStateBoolean {
|
|
36151
36406
|
/**
|
|
36152
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TriStateBoolean#
|
|
36407
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TriStateBoolean#Unknown)
|
|
36153
36408
|
*/
|
|
36154
|
-
export interface
|
|
36155
|
-
Name: "
|
|
36156
|
-
Value:
|
|
36409
|
+
export interface Unknown extends globalThis.EnumItem {
|
|
36410
|
+
Name: "Unknown";
|
|
36411
|
+
Value: 0;
|
|
36157
36412
|
EnumType: typeof globalThis.Enum.TriStateBoolean;
|
|
36158
36413
|
}
|
|
36159
|
-
export const
|
|
36414
|
+
export const Unknown: Unknown;
|
|
36160
36415
|
/**
|
|
36161
36416
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TriStateBoolean#True)
|
|
36162
36417
|
*/
|
|
@@ -36167,19 +36422,19 @@ declare namespace Enum {
|
|
|
36167
36422
|
}
|
|
36168
36423
|
export const True: True;
|
|
36169
36424
|
/**
|
|
36170
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TriStateBoolean#
|
|
36425
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TriStateBoolean#False)
|
|
36171
36426
|
*/
|
|
36172
|
-
export interface
|
|
36173
|
-
Name: "
|
|
36174
|
-
Value:
|
|
36427
|
+
export interface False extends globalThis.EnumItem {
|
|
36428
|
+
Name: "False";
|
|
36429
|
+
Value: 2;
|
|
36175
36430
|
EnumType: typeof globalThis.Enum.TriStateBoolean;
|
|
36176
36431
|
}
|
|
36177
|
-
export const
|
|
36432
|
+
export const False: False;
|
|
36178
36433
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TriStateBoolean>;
|
|
36179
36434
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TriStateBoolean | undefined;
|
|
36180
36435
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TriStateBoolean | undefined;
|
|
36181
36436
|
}
|
|
36182
|
-
export type TriStateBoolean = TriStateBoolean.
|
|
36437
|
+
export type TriStateBoolean = TriStateBoolean.Unknown | TriStateBoolean.True | TriStateBoolean.False;
|
|
36183
36438
|
/**
|
|
36184
36439
|
* The completion status of a `GuiObject` tween function.
|
|
36185
36440
|
*
|
|
@@ -38925,10 +39180,14 @@ declare namespace Enum {
|
|
|
38925
39180
|
}
|
|
38926
39181
|
export type WeldConstraintPreserve = WeldConstraintPreserve.All | WeldConstraintPreserve.None | WeldConstraintPreserve.Touching;
|
|
38927
39182
|
/**
|
|
39183
|
+
* Describes when a player first played the current experience, represented as a bucket.
|
|
39184
|
+
*
|
|
38928
39185
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed)
|
|
38929
39186
|
*/
|
|
38930
39187
|
export namespace WhenUserFirstPlayed {
|
|
38931
39188
|
/**
|
|
39189
|
+
* Segment data is unavailable.
|
|
39190
|
+
*
|
|
38932
39191
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed#Unknown)
|
|
38933
39192
|
*/
|
|
38934
39193
|
export interface Unknown extends globalThis.EnumItem {
|
|
@@ -38938,6 +39197,8 @@ declare namespace Enum {
|
|
|
38938
39197
|
}
|
|
38939
39198
|
export const Unknown: Unknown;
|
|
38940
39199
|
/**
|
|
39200
|
+
* The player first played the experience within the last 30 days.
|
|
39201
|
+
*
|
|
38941
39202
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed#Days0To30)
|
|
38942
39203
|
*/
|
|
38943
39204
|
export interface Days0To30 extends globalThis.EnumItem {
|
|
@@ -38947,6 +39208,8 @@ declare namespace Enum {
|
|
|
38947
39208
|
}
|
|
38948
39209
|
export const Days0To30: Days0To30;
|
|
38949
39210
|
/**
|
|
39211
|
+
* The player first played the experience between 31 and 90 days ago.
|
|
39212
|
+
*
|
|
38950
39213
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed#Days31To90)
|
|
38951
39214
|
*/
|
|
38952
39215
|
export interface Days31To90 extends globalThis.EnumItem {
|
|
@@ -38956,6 +39219,8 @@ declare namespace Enum {
|
|
|
38956
39219
|
}
|
|
38957
39220
|
export const Days31To90: Days31To90;
|
|
38958
39221
|
/**
|
|
39222
|
+
* The player first played the experience between 91 and 180 days ago.
|
|
39223
|
+
*
|
|
38959
39224
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed#Days91To180)
|
|
38960
39225
|
*/
|
|
38961
39226
|
export interface Days91To180 extends globalThis.EnumItem {
|
|
@@ -38965,6 +39230,8 @@ declare namespace Enum {
|
|
|
38965
39230
|
}
|
|
38966
39231
|
export const Days91To180: Days91To180;
|
|
38967
39232
|
/**
|
|
39233
|
+
* The player first played the experience between 181 and 365 days ago.
|
|
39234
|
+
*
|
|
38968
39235
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed#Days181To365)
|
|
38969
39236
|
*/
|
|
38970
39237
|
export interface Days181To365 extends globalThis.EnumItem {
|
|
@@ -38974,6 +39241,8 @@ declare namespace Enum {
|
|
|
38974
39241
|
}
|
|
38975
39242
|
export const Days181To365: Days181To365;
|
|
38976
39243
|
/**
|
|
39244
|
+
* The player first played the experience more than 365 days ago.
|
|
39245
|
+
*
|
|
38977
39246
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed#Days366Plus)
|
|
38978
39247
|
*/
|
|
38979
39248
|
export interface Days366Plus extends globalThis.EnumItem {
|