@rbxts/types 1.0.947 → 1.0.948
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 +1339 -232
- package/include/generated/PluginSecurity.d.ts +137 -480
- package/include/generated/enums.d.ts +769 -118
- package/package.json +1 -1
|
@@ -933,7 +933,7 @@ declare namespace Enum {
|
|
|
933
933
|
}
|
|
934
934
|
export const WhyThisAdClicked: WhyThisAdClicked;
|
|
935
935
|
/**
|
|
936
|
-
* A system-initiated play/resume event that clears the force-pause state
|
|
936
|
+
* A system-initiated play/resume event that clears the force-pause state and resumes video playback if the stream is open.
|
|
937
937
|
*
|
|
938
938
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdUIEventType#PlayEventTriggered)
|
|
939
939
|
*/
|
|
@@ -944,7 +944,7 @@ declare namespace Enum {
|
|
|
944
944
|
}
|
|
945
945
|
export const PlayEventTriggered: PlayEventTriggered;
|
|
946
946
|
/**
|
|
947
|
-
* A system-initiated pause event, used when the engine needs to force-pause the video (for example, when a dropdown menu opens over the ad). Prevents viewability-based auto-play from resuming playback until a corresponding
|
|
947
|
+
* A system-initiated pause event, used when the engine needs to force-pause the video (for example, when a dropdown menu opens over the ad). Prevents viewability-based auto-play from resuming playback until a corresponding system event clears that pause.
|
|
948
948
|
*
|
|
949
949
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdUIEventType#PauseEventTriggered)
|
|
950
950
|
*/
|
|
@@ -1070,10 +1070,14 @@ declare namespace Enum {
|
|
|
1070
1070
|
}
|
|
1071
1071
|
export type AdornCullingMode = AdornCullingMode.Automatic | AdornCullingMode.Never;
|
|
1072
1072
|
/**
|
|
1073
|
+
* Determines the shading material and render pass used to draw a handle adornment.
|
|
1074
|
+
*
|
|
1073
1075
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdornShading)
|
|
1074
1076
|
*/
|
|
1075
1077
|
export namespace AdornShading {
|
|
1076
1078
|
/**
|
|
1079
|
+
* Draws the adornment unlit and occluded by scene geometry like an ordinary world object.
|
|
1080
|
+
*
|
|
1077
1081
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdornShading#Default)
|
|
1078
1082
|
*/
|
|
1079
1083
|
export interface Default extends globalThis.EnumItem {
|
|
@@ -1083,6 +1087,8 @@ declare namespace Enum {
|
|
|
1083
1087
|
}
|
|
1084
1088
|
export const Default: Default;
|
|
1085
1089
|
/**
|
|
1090
|
+
* Draws the adornment lit by scene lighting and occluded by scene geometry.
|
|
1091
|
+
*
|
|
1086
1092
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdornShading#Shaded)
|
|
1087
1093
|
*/
|
|
1088
1094
|
export interface Shaded extends globalThis.EnumItem {
|
|
@@ -1092,6 +1098,8 @@ declare namespace Enum {
|
|
|
1092
1098
|
}
|
|
1093
1099
|
export const Shaded: Shaded;
|
|
1094
1100
|
/**
|
|
1101
|
+
* Draws the adornment unlit and visible through geometry that would otherwise occlude it.
|
|
1102
|
+
*
|
|
1095
1103
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdornShading#XRay)
|
|
1096
1104
|
*/
|
|
1097
1105
|
export interface XRay extends globalThis.EnumItem {
|
|
@@ -1101,6 +1109,8 @@ declare namespace Enum {
|
|
|
1101
1109
|
}
|
|
1102
1110
|
export const XRay: XRay;
|
|
1103
1111
|
/**
|
|
1112
|
+
* Draws the adornment lit by scene lighting and visible through geometry that would otherwise occlude it.
|
|
1113
|
+
*
|
|
1104
1114
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdornShading#XRayShaded)
|
|
1105
1115
|
*/
|
|
1106
1116
|
export interface XRayShaded extends globalThis.EnumItem {
|
|
@@ -1110,6 +1120,8 @@ declare namespace Enum {
|
|
|
1110
1120
|
}
|
|
1111
1121
|
export const XRayShaded: XRayShaded;
|
|
1112
1122
|
/**
|
|
1123
|
+
* Draws the adornment unlit on top of all other geometry with no depth testing.
|
|
1124
|
+
*
|
|
1113
1125
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdornShading#AlwaysOnTop)
|
|
1114
1126
|
*/
|
|
1115
1127
|
export interface AlwaysOnTop extends globalThis.EnumItem {
|
|
@@ -1659,10 +1671,14 @@ declare namespace Enum {
|
|
|
1659
1671
|
}
|
|
1660
1672
|
export type AnalyticsProgressionType = AnalyticsProgressionType.Custom | AnalyticsProgressionType.Start | AnalyticsProgressionType.Fail | AnalyticsProgressionType.Complete;
|
|
1661
1673
|
/**
|
|
1674
|
+
* Indicates the current status or final outcome of a video-to-animation conversion started by `AssetService:PromptImportAnimationClipFromVideoAsync()`.
|
|
1675
|
+
*
|
|
1662
1676
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationClipFromVideoStatus)
|
|
1663
1677
|
*/
|
|
1664
1678
|
export namespace AnimationClipFromVideoStatus {
|
|
1665
1679
|
/**
|
|
1680
|
+
* The video-to-animation job is being set up on the server.
|
|
1681
|
+
*
|
|
1666
1682
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationClipFromVideoStatus#Initializing)
|
|
1667
1683
|
*/
|
|
1668
1684
|
export interface Initializing extends globalThis.EnumItem {
|
|
@@ -1672,6 +1688,8 @@ declare namespace Enum {
|
|
|
1672
1688
|
}
|
|
1673
1689
|
export const Initializing: Initializing;
|
|
1674
1690
|
/**
|
|
1691
|
+
* The job has been queued on the server and is waiting for processing resources to become available.
|
|
1692
|
+
*
|
|
1675
1693
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationClipFromVideoStatus#Pending)
|
|
1676
1694
|
*/
|
|
1677
1695
|
export interface Pending extends globalThis.EnumItem {
|
|
@@ -1681,6 +1699,8 @@ declare namespace Enum {
|
|
|
1681
1699
|
}
|
|
1682
1700
|
export const Pending: Pending;
|
|
1683
1701
|
/**
|
|
1702
|
+
* The server is actively analyzing the video and extracting motion-capture data to generate the animation clip.
|
|
1703
|
+
*
|
|
1684
1704
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationClipFromVideoStatus#Processing)
|
|
1685
1705
|
*/
|
|
1686
1706
|
export interface Processing extends globalThis.EnumItem {
|
|
@@ -1690,6 +1710,8 @@ declare namespace Enum {
|
|
|
1690
1710
|
}
|
|
1691
1711
|
export const Processing: Processing;
|
|
1692
1712
|
/**
|
|
1713
|
+
* The server-side video processing encountered an unspecified error.
|
|
1714
|
+
*
|
|
1693
1715
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationClipFromVideoStatus#ErrorGeneric)
|
|
1694
1716
|
*/
|
|
1695
1717
|
export interface ErrorGeneric extends globalThis.EnumItem {
|
|
@@ -1699,6 +1721,8 @@ declare namespace Enum {
|
|
|
1699
1721
|
}
|
|
1700
1722
|
export const ErrorGeneric: ErrorGeneric;
|
|
1701
1723
|
/**
|
|
1724
|
+
* The video was successfully converted into an `AnimationClip`, which is returned as the second element of the result tuple.
|
|
1725
|
+
*
|
|
1702
1726
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationClipFromVideoStatus#Success)
|
|
1703
1727
|
*/
|
|
1704
1728
|
export interface Success extends globalThis.EnumItem {
|
|
@@ -1708,6 +1732,8 @@ declare namespace Enum {
|
|
|
1708
1732
|
}
|
|
1709
1733
|
export const Success: Success;
|
|
1710
1734
|
/**
|
|
1735
|
+
* Processing failed because the uploaded video exceeds the maximum allowed duration (15 seconds).
|
|
1736
|
+
*
|
|
1711
1737
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationClipFromVideoStatus#ErrorVideoTooLong)
|
|
1712
1738
|
*/
|
|
1713
1739
|
export interface ErrorVideoTooLong extends globalThis.EnumItem {
|
|
@@ -1717,6 +1743,8 @@ declare namespace Enum {
|
|
|
1717
1743
|
}
|
|
1718
1744
|
export const ErrorVideoTooLong: ErrorVideoTooLong;
|
|
1719
1745
|
/**
|
|
1746
|
+
* Processing failed because no person could be detected in the video; the video must show a person fully in frame, facing the camera.
|
|
1747
|
+
*
|
|
1720
1748
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationClipFromVideoStatus#ErrorNoPersonDetected)
|
|
1721
1749
|
*/
|
|
1722
1750
|
export interface ErrorNoPersonDetected extends globalThis.EnumItem {
|
|
@@ -1726,6 +1754,8 @@ declare namespace Enum {
|
|
|
1726
1754
|
}
|
|
1727
1755
|
export const ErrorNoPersonDetected: ErrorNoPersonDetected;
|
|
1728
1756
|
/**
|
|
1757
|
+
* Processing failed because the video is too shaky for reliable motion capture; a more stable recording is required.
|
|
1758
|
+
*
|
|
1729
1759
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationClipFromVideoStatus#ErrorVideoUnstable)
|
|
1730
1760
|
*/
|
|
1731
1761
|
export interface ErrorVideoUnstable extends globalThis.EnumItem {
|
|
@@ -1735,6 +1765,8 @@ declare namespace Enum {
|
|
|
1735
1765
|
}
|
|
1736
1766
|
export const ErrorVideoUnstable: ErrorVideoUnstable;
|
|
1737
1767
|
/**
|
|
1768
|
+
* Processing could not be completed in time, typically due to high request volume on the video processing backend.
|
|
1769
|
+
*
|
|
1738
1770
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationClipFromVideoStatus#Timeout)
|
|
1739
1771
|
*/
|
|
1740
1772
|
export interface Timeout extends globalThis.EnumItem {
|
|
@@ -1744,6 +1776,8 @@ declare namespace Enum {
|
|
|
1744
1776
|
}
|
|
1745
1777
|
export const Timeout: Timeout;
|
|
1746
1778
|
/**
|
|
1779
|
+
* The player declined the consent prompt or provided no input, so the video upload was not started.
|
|
1780
|
+
*
|
|
1747
1781
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationClipFromVideoStatus#Cancelled)
|
|
1748
1782
|
*/
|
|
1749
1783
|
export interface Cancelled extends globalThis.EnumItem {
|
|
@@ -1753,6 +1787,8 @@ declare namespace Enum {
|
|
|
1753
1787
|
}
|
|
1754
1788
|
export const Cancelled: Cancelled;
|
|
1755
1789
|
/**
|
|
1790
|
+
* Processing failed because more than one person was detected in the video; the video must contain a single person fully in frame.
|
|
1791
|
+
*
|
|
1756
1792
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationClipFromVideoStatus#ErrorMultiplePeople)
|
|
1757
1793
|
*/
|
|
1758
1794
|
export interface ErrorMultiplePeople extends globalThis.EnumItem {
|
|
@@ -1762,6 +1798,8 @@ declare namespace Enum {
|
|
|
1762
1798
|
}
|
|
1763
1799
|
export const ErrorMultiplePeople: ErrorMultiplePeople;
|
|
1764
1800
|
/**
|
|
1801
|
+
* The client-side video upload failed before the video reached the processing backend.
|
|
1802
|
+
*
|
|
1765
1803
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationClipFromVideoStatus#ErrorUploadingVideo)
|
|
1766
1804
|
*/
|
|
1767
1805
|
export interface ErrorUploadingVideo extends globalThis.EnumItem {
|
|
@@ -2556,10 +2594,14 @@ declare namespace Enum {
|
|
|
2556
2594
|
}
|
|
2557
2595
|
export type AntiAliasing = AntiAliasing.Disabled | AntiAliasing.Enabled;
|
|
2558
2596
|
/**
|
|
2597
|
+
* Describes the current lifecycle state of the Roblox application as reported by `AppLifecycleObserverService:GetCurrentState()`.
|
|
2598
|
+
*
|
|
2559
2599
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AppLifecycleManagerState)
|
|
2560
2600
|
*/
|
|
2561
2601
|
export namespace AppLifecycleManagerState {
|
|
2562
2602
|
/**
|
|
2603
|
+
* The application has not yet started or is shutting down. This is the initial state before the lifecycle manager is created and the final state entered during application termination.
|
|
2604
|
+
*
|
|
2563
2605
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AppLifecycleManagerState#Detached)
|
|
2564
2606
|
*/
|
|
2565
2607
|
export interface Detached extends globalThis.EnumItem {
|
|
@@ -2569,6 +2611,8 @@ declare namespace Enum {
|
|
|
2569
2611
|
}
|
|
2570
2612
|
export const Detached: Detached;
|
|
2571
2613
|
/**
|
|
2614
|
+
* The application is in the foreground and has input focus. This is the normal running state where the user is actively interacting with the experience.
|
|
2615
|
+
*
|
|
2572
2616
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AppLifecycleManagerState#Active)
|
|
2573
2617
|
*/
|
|
2574
2618
|
export interface Active extends globalThis.EnumItem {
|
|
@@ -2578,6 +2622,8 @@ declare namespace Enum {
|
|
|
2578
2622
|
}
|
|
2579
2623
|
export const Active: Active;
|
|
2580
2624
|
/**
|
|
2625
|
+
* The application is visible but does not have input focus. On iOS this occurs during transitions such as incoming calls or notification center pull-down; on macOS it corresponds to the application resigning active status.
|
|
2626
|
+
*
|
|
2581
2627
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AppLifecycleManagerState#Inactive)
|
|
2582
2628
|
*/
|
|
2583
2629
|
export interface Inactive extends globalThis.EnumItem {
|
|
@@ -2587,6 +2633,8 @@ declare namespace Enum {
|
|
|
2587
2633
|
}
|
|
2588
2634
|
export const Inactive: Inactive;
|
|
2589
2635
|
/**
|
|
2636
|
+
* The application is fully in the background and not visible to the user. On mobile platforms this corresponds to the app being backgrounded; on desktop it corresponds to the window being minimized or fully occluded.
|
|
2637
|
+
*
|
|
2590
2638
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AppLifecycleManagerState#Hidden)
|
|
2591
2639
|
*/
|
|
2592
2640
|
export interface Hidden extends globalThis.EnumItem {
|
|
@@ -2799,10 +2847,14 @@ declare namespace Enum {
|
|
|
2799
2847
|
}
|
|
2800
2848
|
export type AppShellFeature = AppShellFeature.None | AppShellFeature.Chat | AppShellFeature.AvatarEditor | AppShellFeature.GamePage | AppShellFeature.HomePage | AppShellFeature.More | AppShellFeature.Landing | AppShellFeature.WatchPage;
|
|
2801
2849
|
/**
|
|
2850
|
+
* Indicates the result of an application update check performed by `AppUpdateService`.
|
|
2851
|
+
*
|
|
2802
2852
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AppUpdateStatus)
|
|
2803
2853
|
*/
|
|
2804
2854
|
export namespace AppUpdateStatus {
|
|
2805
2855
|
/**
|
|
2856
|
+
* The default state before any update check has been performed.
|
|
2857
|
+
*
|
|
2806
2858
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AppUpdateStatus#Unknown)
|
|
2807
2859
|
*/
|
|
2808
2860
|
export interface Unknown extends globalThis.EnumItem {
|
|
@@ -2812,6 +2864,8 @@ declare namespace Enum {
|
|
|
2812
2864
|
}
|
|
2813
2865
|
export const Unknown: Unknown;
|
|
2814
2866
|
/**
|
|
2867
|
+
* The platform does not support application updates.
|
|
2868
|
+
*
|
|
2815
2869
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AppUpdateStatus#NotSupported)
|
|
2816
2870
|
*/
|
|
2817
2871
|
export interface NotSupported extends globalThis.EnumItem {
|
|
@@ -2821,6 +2875,8 @@ declare namespace Enum {
|
|
|
2821
2875
|
}
|
|
2822
2876
|
export const NotSupported: NotSupported;
|
|
2823
2877
|
/**
|
|
2878
|
+
* The update check failed due to an error such as a network failure or missing initialization.
|
|
2879
|
+
*
|
|
2824
2880
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AppUpdateStatus#Failed)
|
|
2825
2881
|
*/
|
|
2826
2882
|
export interface Failed extends globalThis.EnumItem {
|
|
@@ -2830,6 +2886,8 @@ declare namespace Enum {
|
|
|
2830
2886
|
}
|
|
2831
2887
|
export const Failed: Failed;
|
|
2832
2888
|
/**
|
|
2889
|
+
* No update is currently required; the client is already running the latest version for its channel.
|
|
2890
|
+
*
|
|
2833
2891
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AppUpdateStatus#NotAvailable)
|
|
2834
2892
|
*/
|
|
2835
2893
|
export interface NotAvailable extends globalThis.EnumItem {
|
|
@@ -2839,6 +2897,8 @@ declare namespace Enum {
|
|
|
2839
2897
|
}
|
|
2840
2898
|
export const NotAvailable: NotAvailable;
|
|
2841
2899
|
/**
|
|
2900
|
+
* An update is available through a public channel or production deployment.
|
|
2901
|
+
*
|
|
2842
2902
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AppUpdateStatus#Available)
|
|
2843
2903
|
*/
|
|
2844
2904
|
export interface Available extends globalThis.EnumItem {
|
|
@@ -2848,6 +2908,8 @@ declare namespace Enum {
|
|
|
2848
2908
|
}
|
|
2849
2909
|
export const Available: Available;
|
|
2850
2910
|
/**
|
|
2911
|
+
* An update is available because the user is explicitly bound to a private or public channel.
|
|
2912
|
+
*
|
|
2851
2913
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AppUpdateStatus#AvailableBoundChannel)
|
|
2852
2914
|
*/
|
|
2853
2915
|
export interface AvailableBoundChannel extends globalThis.EnumItem {
|
|
@@ -2857,6 +2919,8 @@ declare namespace Enum {
|
|
|
2857
2919
|
}
|
|
2858
2920
|
export const AvailableBoundChannel: AvailableBoundChannel;
|
|
2859
2921
|
/**
|
|
2922
|
+
* An update is available because the user opted into a beta program backed by a channel.
|
|
2923
|
+
*
|
|
2860
2924
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AppUpdateStatus#AvailableBetaProgram)
|
|
2861
2925
|
*/
|
|
2862
2926
|
export interface AvailableBetaProgram extends globalThis.EnumItem {
|
|
@@ -3003,6 +3067,8 @@ declare namespace Enum {
|
|
|
3003
3067
|
}
|
|
3004
3068
|
export type AssetCreatorType = AssetCreatorType.User | AssetCreatorType.Group;
|
|
3005
3069
|
/**
|
|
3070
|
+
* Describes the download state of an asset requested through `ContentProvider`.
|
|
3071
|
+
*
|
|
3006
3072
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetFetchStatus)
|
|
3007
3073
|
*/
|
|
3008
3074
|
export namespace AssetFetchStatus {
|
|
@@ -3111,6 +3177,8 @@ declare namespace Enum {
|
|
|
3111
3177
|
}
|
|
3112
3178
|
export const Image: Image;
|
|
3113
3179
|
/**
|
|
3180
|
+
* The asset is a classic t-shirt (a flat image applied to the avatar's torso).
|
|
3181
|
+
*
|
|
3114
3182
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#TShirt)
|
|
3115
3183
|
*/
|
|
3116
3184
|
export interface TShirt extends globalThis.EnumItem {
|
|
@@ -3553,6 +3621,8 @@ declare namespace Enum {
|
|
|
3553
3621
|
}
|
|
3554
3622
|
export const PoseAnimation: PoseAnimation;
|
|
3555
3623
|
/**
|
|
3624
|
+
* The asset is an ear accessory.
|
|
3625
|
+
*
|
|
3556
3626
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#EarAccessory)
|
|
3557
3627
|
*/
|
|
3558
3628
|
export interface EarAccessory extends globalThis.EnumItem {
|
|
@@ -3562,6 +3632,8 @@ declare namespace Enum {
|
|
|
3562
3632
|
}
|
|
3563
3633
|
export const EarAccessory: EarAccessory;
|
|
3564
3634
|
/**
|
|
3635
|
+
* The asset is an eye accessory.
|
|
3636
|
+
*
|
|
3565
3637
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#EyeAccessory)
|
|
3566
3638
|
*/
|
|
3567
3639
|
export interface EyeAccessory extends globalThis.EnumItem {
|
|
@@ -3593,6 +3665,8 @@ declare namespace Enum {
|
|
|
3593
3665
|
}
|
|
3594
3666
|
export const Video: Video;
|
|
3595
3667
|
/**
|
|
3668
|
+
* The asset is a layered clothing accessory representing a t-shirt.
|
|
3669
|
+
*
|
|
3596
3670
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#TShirtAccessory)
|
|
3597
3671
|
*/
|
|
3598
3672
|
export interface TShirtAccessory extends globalThis.EnumItem {
|
|
@@ -3606,6 +3680,8 @@ declare namespace Enum {
|
|
|
3606
3680
|
*/
|
|
3607
3681
|
export const TeeShirtAccessory: TShirtAccessory;
|
|
3608
3682
|
/**
|
|
3683
|
+
* The asset is a layered clothing accessory representing a shirt.
|
|
3684
|
+
*
|
|
3609
3685
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#ShirtAccessory)
|
|
3610
3686
|
*/
|
|
3611
3687
|
export interface ShirtAccessory extends globalThis.EnumItem {
|
|
@@ -3615,6 +3691,8 @@ declare namespace Enum {
|
|
|
3615
3691
|
}
|
|
3616
3692
|
export const ShirtAccessory: ShirtAccessory;
|
|
3617
3693
|
/**
|
|
3694
|
+
* The asset is a layered clothing accessory representing pants.
|
|
3695
|
+
*
|
|
3618
3696
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#PantsAccessory)
|
|
3619
3697
|
*/
|
|
3620
3698
|
export interface PantsAccessory extends globalThis.EnumItem {
|
|
@@ -3624,6 +3702,8 @@ declare namespace Enum {
|
|
|
3624
3702
|
}
|
|
3625
3703
|
export const PantsAccessory: PantsAccessory;
|
|
3626
3704
|
/**
|
|
3705
|
+
* The asset is a layered clothing accessory representing a jacket.
|
|
3706
|
+
*
|
|
3627
3707
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#JacketAccessory)
|
|
3628
3708
|
*/
|
|
3629
3709
|
export interface JacketAccessory extends globalThis.EnumItem {
|
|
@@ -3633,6 +3713,8 @@ declare namespace Enum {
|
|
|
3633
3713
|
}
|
|
3634
3714
|
export const JacketAccessory: JacketAccessory;
|
|
3635
3715
|
/**
|
|
3716
|
+
* The asset is a layered clothing accessory representing a sweater.
|
|
3717
|
+
*
|
|
3636
3718
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#SweaterAccessory)
|
|
3637
3719
|
*/
|
|
3638
3720
|
export interface SweaterAccessory extends globalThis.EnumItem {
|
|
@@ -3642,6 +3724,8 @@ declare namespace Enum {
|
|
|
3642
3724
|
}
|
|
3643
3725
|
export const SweaterAccessory: SweaterAccessory;
|
|
3644
3726
|
/**
|
|
3727
|
+
* The asset is a layered clothing accessory representing shorts.
|
|
3728
|
+
*
|
|
3645
3729
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#ShortsAccessory)
|
|
3646
3730
|
*/
|
|
3647
3731
|
export interface ShortsAccessory extends globalThis.EnumItem {
|
|
@@ -3651,6 +3735,8 @@ declare namespace Enum {
|
|
|
3651
3735
|
}
|
|
3652
3736
|
export const ShortsAccessory: ShortsAccessory;
|
|
3653
3737
|
/**
|
|
3738
|
+
* The asset is a layered clothing accessory representing a left shoe.
|
|
3739
|
+
*
|
|
3654
3740
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#LeftShoeAccessory)
|
|
3655
3741
|
*/
|
|
3656
3742
|
export interface LeftShoeAccessory extends globalThis.EnumItem {
|
|
@@ -3660,6 +3746,8 @@ declare namespace Enum {
|
|
|
3660
3746
|
}
|
|
3661
3747
|
export const LeftShoeAccessory: LeftShoeAccessory;
|
|
3662
3748
|
/**
|
|
3749
|
+
* The asset is a layered clothing accessory representing a right shoe.
|
|
3750
|
+
*
|
|
3663
3751
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#RightShoeAccessory)
|
|
3664
3752
|
*/
|
|
3665
3753
|
export interface RightShoeAccessory extends globalThis.EnumItem {
|
|
@@ -3669,6 +3757,8 @@ declare namespace Enum {
|
|
|
3669
3757
|
}
|
|
3670
3758
|
export const RightShoeAccessory: RightShoeAccessory;
|
|
3671
3759
|
/**
|
|
3760
|
+
* The asset is a layered clothing accessory representing a dress or skirt.
|
|
3761
|
+
*
|
|
3672
3762
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#DressSkirtAccessory)
|
|
3673
3763
|
*/
|
|
3674
3764
|
export interface DressSkirtAccessory extends globalThis.EnumItem {
|
|
@@ -3678,6 +3768,8 @@ declare namespace Enum {
|
|
|
3678
3768
|
}
|
|
3679
3769
|
export const DressSkirtAccessory: DressSkirtAccessory;
|
|
3680
3770
|
/**
|
|
3771
|
+
* The asset is a font family used for text rendering.
|
|
3772
|
+
*
|
|
3681
3773
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#FontFamily)
|
|
3682
3774
|
*/
|
|
3683
3775
|
export interface FontFamily extends globalThis.EnumItem {
|
|
@@ -3687,6 +3779,8 @@ declare namespace Enum {
|
|
|
3687
3779
|
}
|
|
3688
3780
|
export const FontFamily: FontFamily;
|
|
3689
3781
|
/**
|
|
3782
|
+
* The asset is a layered eyebrow accessory.
|
|
3783
|
+
*
|
|
3690
3784
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#EyebrowAccessory)
|
|
3691
3785
|
*/
|
|
3692
3786
|
export interface EyebrowAccessory extends globalThis.EnumItem {
|
|
@@ -3696,6 +3790,8 @@ declare namespace Enum {
|
|
|
3696
3790
|
}
|
|
3697
3791
|
export const EyebrowAccessory: EyebrowAccessory;
|
|
3698
3792
|
/**
|
|
3793
|
+
* The asset is a layered eyelash accessory.
|
|
3794
|
+
*
|
|
3699
3795
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#EyelashAccessory)
|
|
3700
3796
|
*/
|
|
3701
3797
|
export interface EyelashAccessory extends globalThis.EnumItem {
|
|
@@ -3705,6 +3801,8 @@ declare namespace Enum {
|
|
|
3705
3801
|
}
|
|
3706
3802
|
export const EyelashAccessory: EyelashAccessory;
|
|
3707
3803
|
/**
|
|
3804
|
+
* The asset is a mood animation that defines a static facial expression for a character.
|
|
3805
|
+
*
|
|
3708
3806
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#MoodAnimation)
|
|
3709
3807
|
*/
|
|
3710
3808
|
export interface MoodAnimation extends globalThis.EnumItem {
|
|
@@ -3714,6 +3812,8 @@ declare namespace Enum {
|
|
|
3714
3812
|
}
|
|
3715
3813
|
export const MoodAnimation: MoodAnimation;
|
|
3716
3814
|
/**
|
|
3815
|
+
* The asset is a head with facial animation support.
|
|
3816
|
+
*
|
|
3717
3817
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#DynamicHead)
|
|
3718
3818
|
*/
|
|
3719
3819
|
export interface DynamicHead extends globalThis.EnumItem {
|
|
@@ -3723,6 +3823,8 @@ declare namespace Enum {
|
|
|
3723
3823
|
}
|
|
3724
3824
|
export const DynamicHead: DynamicHead;
|
|
3725
3825
|
/**
|
|
3826
|
+
* The asset is face makeup applied to a character's head via texture transfer.
|
|
3827
|
+
*
|
|
3726
3828
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#FaceMakeup)
|
|
3727
3829
|
*/
|
|
3728
3830
|
export interface FaceMakeup extends globalThis.EnumItem {
|
|
@@ -3732,6 +3834,8 @@ declare namespace Enum {
|
|
|
3732
3834
|
}
|
|
3733
3835
|
export const FaceMakeup: FaceMakeup;
|
|
3734
3836
|
/**
|
|
3837
|
+
* The asset is lip makeup applied to a character's face via texture transfer.
|
|
3838
|
+
*
|
|
3735
3839
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#LipMakeup)
|
|
3736
3840
|
*/
|
|
3737
3841
|
export interface LipMakeup extends globalThis.EnumItem {
|
|
@@ -3741,6 +3845,8 @@ declare namespace Enum {
|
|
|
3741
3845
|
}
|
|
3742
3846
|
export const LipMakeup: LipMakeup;
|
|
3743
3847
|
/**
|
|
3848
|
+
* The asset is eye makeup applied to a character's face via texture transfer.
|
|
3849
|
+
*
|
|
3744
3850
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#EyeMakeup)
|
|
3745
3851
|
*/
|
|
3746
3852
|
export interface EyeMakeup extends globalThis.EnumItem {
|
|
@@ -3750,6 +3856,8 @@ declare namespace Enum {
|
|
|
3750
3856
|
}
|
|
3751
3857
|
export const EyeMakeup: EyeMakeup;
|
|
3752
3858
|
/**
|
|
3859
|
+
* The asset is an avatar background used as a scene backdrop in avatar previews.
|
|
3860
|
+
*
|
|
3753
3861
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#AvatarBackground)
|
|
3754
3862
|
*/
|
|
3755
3863
|
export interface AvatarBackground extends globalThis.EnumItem {
|
|
@@ -4120,6 +4228,39 @@ declare namespace Enum {
|
|
|
4120
4228
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AudioPositionType | undefined;
|
|
4121
4229
|
}
|
|
4122
4230
|
export type AudioPositionType = AudioPositionType.Parent | AudioPositionType.Instance;
|
|
4231
|
+
/**
|
|
4232
|
+
* Describes the numeric format used to represent individual audio samples.
|
|
4233
|
+
*
|
|
4234
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioSampleFormat)
|
|
4235
|
+
*/
|
|
4236
|
+
export namespace AudioSampleFormat {
|
|
4237
|
+
/**
|
|
4238
|
+
* Samples are represented as 16-bit signed integers, ranging from `-32768` to `32767`.
|
|
4239
|
+
*
|
|
4240
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioSampleFormat#Int16)
|
|
4241
|
+
*/
|
|
4242
|
+
export interface Int16 extends globalThis.EnumItem {
|
|
4243
|
+
Name: "Int16";
|
|
4244
|
+
Value: 0;
|
|
4245
|
+
EnumType: typeof globalThis.Enum.AudioSampleFormat;
|
|
4246
|
+
}
|
|
4247
|
+
export const Int16: Int16;
|
|
4248
|
+
/**
|
|
4249
|
+
* Samples are represented as 32-bit floating-point numbers, typically ranging from `-1.0` to `0`.
|
|
4250
|
+
*
|
|
4251
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioSampleFormat#Float32)
|
|
4252
|
+
*/
|
|
4253
|
+
export interface Float32 extends globalThis.EnumItem {
|
|
4254
|
+
Name: "Float32";
|
|
4255
|
+
Value: 1;
|
|
4256
|
+
EnumType: typeof globalThis.Enum.AudioSampleFormat;
|
|
4257
|
+
}
|
|
4258
|
+
export const Float32: Float32;
|
|
4259
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AudioSampleFormat>;
|
|
4260
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AudioSampleFormat | undefined;
|
|
4261
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AudioSampleFormat | undefined;
|
|
4262
|
+
}
|
|
4263
|
+
export type AudioSampleFormat = AudioSampleFormat.Int16 | AudioSampleFormat.Float32;
|
|
4123
4264
|
/**
|
|
4124
4265
|
* Enum which determines how detailed audio simulation should be for `AudioEmitters` and `AudioListeners`.
|
|
4125
4266
|
*
|
|
@@ -5906,10 +6047,50 @@ declare namespace Enum {
|
|
|
5906
6047
|
}
|
|
5907
6048
|
export type Axis = Axis.X | Axis.Y | Axis.Z;
|
|
5908
6049
|
/**
|
|
6050
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/BasicMeshPartShape)
|
|
6051
|
+
*/
|
|
6052
|
+
export namespace BasicMeshPartShape {
|
|
6053
|
+
/**
|
|
6054
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/BasicMeshPartShape#Capsule)
|
|
6055
|
+
*/
|
|
6056
|
+
export interface Capsule extends globalThis.EnumItem {
|
|
6057
|
+
Name: "Capsule";
|
|
6058
|
+
Value: 5;
|
|
6059
|
+
EnumType: typeof globalThis.Enum.BasicMeshPartShape;
|
|
6060
|
+
}
|
|
6061
|
+
export const Capsule: Capsule;
|
|
6062
|
+
/**
|
|
6063
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/BasicMeshPartShape#Cone)
|
|
6064
|
+
*/
|
|
6065
|
+
export interface Cone extends globalThis.EnumItem {
|
|
6066
|
+
Name: "Cone";
|
|
6067
|
+
Value: 6;
|
|
6068
|
+
EnumType: typeof globalThis.Enum.BasicMeshPartShape;
|
|
6069
|
+
}
|
|
6070
|
+
export const Cone: Cone;
|
|
6071
|
+
/**
|
|
6072
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/BasicMeshPartShape#RoundedBox)
|
|
6073
|
+
*/
|
|
6074
|
+
export interface RoundedBox extends globalThis.EnumItem {
|
|
6075
|
+
Name: "RoundedBox";
|
|
6076
|
+
Value: 7;
|
|
6077
|
+
EnumType: typeof globalThis.Enum.BasicMeshPartShape;
|
|
6078
|
+
}
|
|
6079
|
+
export const RoundedBox: RoundedBox;
|
|
6080
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.BasicMeshPartShape>;
|
|
6081
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.BasicMeshPartShape | undefined;
|
|
6082
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.BasicMeshPartShape | undefined;
|
|
6083
|
+
}
|
|
6084
|
+
export type BasicMeshPartShape = BasicMeshPartShape.Capsule | BasicMeshPartShape.Cone | BasicMeshPartShape.RoundedBox;
|
|
6085
|
+
/**
|
|
6086
|
+
* Indicates the type of virtual benefit granted to a user when they purchase a commerce product through `CommerceService`.
|
|
6087
|
+
*
|
|
5909
6088
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/BenefitType)
|
|
5910
6089
|
*/
|
|
5911
6090
|
export namespace BenefitType {
|
|
5912
6091
|
/**
|
|
6092
|
+
* The benefit is a developer product whose receipt is delivered through `MarketplaceService:BindReceiptHandler()` upon purchase of a commerce product.
|
|
6093
|
+
*
|
|
5913
6094
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/BenefitType#DeveloperProduct)
|
|
5914
6095
|
*/
|
|
5915
6096
|
export interface DeveloperProduct extends globalThis.EnumItem {
|
|
@@ -5919,6 +6100,8 @@ declare namespace Enum {
|
|
|
5919
6100
|
}
|
|
5920
6101
|
export const DeveloperProduct: DeveloperProduct;
|
|
5921
6102
|
/**
|
|
6103
|
+
* The benefit is a single avatar asset granted to the user's inventory upon purchase of a commerce product.
|
|
6104
|
+
*
|
|
5922
6105
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/BenefitType#AvatarAsset)
|
|
5923
6106
|
*/
|
|
5924
6107
|
export interface AvatarAsset extends globalThis.EnumItem {
|
|
@@ -5928,6 +6111,8 @@ declare namespace Enum {
|
|
|
5928
6111
|
}
|
|
5929
6112
|
export const AvatarAsset: AvatarAsset;
|
|
5930
6113
|
/**
|
|
6114
|
+
* The benefit is an avatar bundle granted to the user's inventory upon purchase of a commerce product.
|
|
6115
|
+
*
|
|
5931
6116
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/BenefitType#AvatarBundle)
|
|
5932
6117
|
*/
|
|
5933
6118
|
export interface AvatarBundle extends globalThis.EnumItem {
|
|
@@ -6382,6 +6567,51 @@ declare namespace Enum {
|
|
|
6382
6567
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.BorderStrokePosition | undefined;
|
|
6383
6568
|
}
|
|
6384
6569
|
export type BorderStrokePosition = BorderStrokePosition.Outer | BorderStrokePosition.Center | BorderStrokePosition.Inner;
|
|
6570
|
+
/**
|
|
6571
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/BranchStatus)
|
|
6572
|
+
*/
|
|
6573
|
+
export namespace BranchStatus {
|
|
6574
|
+
/**
|
|
6575
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/BranchStatus#Draft)
|
|
6576
|
+
*/
|
|
6577
|
+
export interface Draft extends globalThis.EnumItem {
|
|
6578
|
+
Name: "Draft";
|
|
6579
|
+
Value: 0;
|
|
6580
|
+
EnumType: typeof globalThis.Enum.BranchStatus;
|
|
6581
|
+
}
|
|
6582
|
+
export const Draft: Draft;
|
|
6583
|
+
/**
|
|
6584
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/BranchStatus#ReadyToMerge)
|
|
6585
|
+
*/
|
|
6586
|
+
export interface ReadyToMerge extends globalThis.EnumItem {
|
|
6587
|
+
Name: "ReadyToMerge";
|
|
6588
|
+
Value: 1;
|
|
6589
|
+
EnumType: typeof globalThis.Enum.BranchStatus;
|
|
6590
|
+
}
|
|
6591
|
+
export const ReadyToMerge: ReadyToMerge;
|
|
6592
|
+
/**
|
|
6593
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/BranchStatus#Merged)
|
|
6594
|
+
*/
|
|
6595
|
+
export interface Merged extends globalThis.EnumItem {
|
|
6596
|
+
Name: "Merged";
|
|
6597
|
+
Value: 2;
|
|
6598
|
+
EnumType: typeof globalThis.Enum.BranchStatus;
|
|
6599
|
+
}
|
|
6600
|
+
export const Merged: Merged;
|
|
6601
|
+
/**
|
|
6602
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/BranchStatus#Archived)
|
|
6603
|
+
*/
|
|
6604
|
+
export interface Archived extends globalThis.EnumItem {
|
|
6605
|
+
Name: "Archived";
|
|
6606
|
+
Value: 3;
|
|
6607
|
+
EnumType: typeof globalThis.Enum.BranchStatus;
|
|
6608
|
+
}
|
|
6609
|
+
export const Archived: Archived;
|
|
6610
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.BranchStatus>;
|
|
6611
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.BranchStatus | undefined;
|
|
6612
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.BranchStatus | undefined;
|
|
6613
|
+
}
|
|
6614
|
+
export type BranchStatus = BranchStatus.Draft | BranchStatus.ReadyToMerge | BranchStatus.Merged | BranchStatus.Archived;
|
|
6385
6615
|
/**
|
|
6386
6616
|
* Reason for the breakpoint hit.
|
|
6387
6617
|
*
|
|
@@ -6757,10 +6987,14 @@ declare namespace Enum {
|
|
|
6757
6987
|
}
|
|
6758
6988
|
export type CameraMode = CameraMode.Classic | CameraMode.LockFirstPerson;
|
|
6759
6989
|
/**
|
|
6990
|
+
* Determines the camera navigation paradigm used in the Roblox Studio editor viewport.
|
|
6991
|
+
*
|
|
6760
6992
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CameraNavigationModel)
|
|
6761
6993
|
*/
|
|
6762
6994
|
export namespace CameraNavigationModel {
|
|
6763
6995
|
/**
|
|
6996
|
+
* Classic Roblox Studio camera navigation model with linear zoom and focus-locked orbiting; the default value.
|
|
6997
|
+
*
|
|
6764
6998
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CameraNavigationModel#Roblox)
|
|
6765
6999
|
*/
|
|
6766
7000
|
export interface Roblox extends globalThis.EnumItem {
|
|
@@ -6770,6 +7004,8 @@ declare namespace Enum {
|
|
|
6770
7004
|
}
|
|
6771
7005
|
export const Roblox: Roblox;
|
|
6772
7006
|
/**
|
|
7007
|
+
* Camera navigation model that follows industry-standard 3D application conventions, with non-linear zoom and simultaneous WASD-plus-orbit movement.
|
|
7008
|
+
*
|
|
6773
7009
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CameraNavigationModel#IndustryCompatible)
|
|
6774
7010
|
*/
|
|
6775
7011
|
export interface IndustryCompatible extends globalThis.EnumItem {
|
|
@@ -6817,10 +7053,14 @@ declare namespace Enum {
|
|
|
6817
7053
|
}
|
|
6818
7054
|
export type CameraPanMode = CameraPanMode.Classic | CameraPanMode.EdgeBump;
|
|
6819
7055
|
/**
|
|
7056
|
+
* Controls which input gesture adjusts the Studio camera's fly speed while navigating.
|
|
7057
|
+
*
|
|
6820
7058
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CameraSpeedAdjustBinding)
|
|
6821
7059
|
*/
|
|
6822
7060
|
export namespace CameraSpeedAdjustBinding {
|
|
6823
7061
|
/**
|
|
7062
|
+
* No input gesture is bound to camera speed adjustment; the scroll wheel always zooms.
|
|
7063
|
+
*
|
|
6824
7064
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CameraSpeedAdjustBinding#None)
|
|
6825
7065
|
*/
|
|
6826
7066
|
export interface None extends globalThis.EnumItem {
|
|
@@ -6830,6 +7070,8 @@ declare namespace Enum {
|
|
|
6830
7070
|
}
|
|
6831
7071
|
export const None: None;
|
|
6832
7072
|
/**
|
|
7073
|
+
* Scrolling while holding the right mouse button adjusts the camera fly speed instead of zooming.
|
|
7074
|
+
*
|
|
6833
7075
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CameraSpeedAdjustBinding#RmbScroll)
|
|
6834
7076
|
*/
|
|
6835
7077
|
export interface RmbScroll extends globalThis.EnumItem {
|
|
@@ -6839,6 +7081,8 @@ declare namespace Enum {
|
|
|
6839
7081
|
}
|
|
6840
7082
|
export const RmbScroll: RmbScroll;
|
|
6841
7083
|
/**
|
|
7084
|
+
* Scrolling while holding Alt adjusts the camera fly speed instead of zooming.
|
|
7085
|
+
*
|
|
6842
7086
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CameraSpeedAdjustBinding#AltScroll)
|
|
6843
7087
|
*/
|
|
6844
7088
|
export interface AltScroll extends globalThis.EnumItem {
|
|
@@ -7078,10 +7322,14 @@ declare namespace Enum {
|
|
|
7078
7322
|
}
|
|
7079
7323
|
export type CanCollaborateError = CanCollaborateError.Invalid | CanCollaborateError.None | CanCollaborateError.NotAgeVerified | CanCollaborateError.OutsideAgeBucket | CanCollaborateError.TooManyCollaborators | CanCollaborateError.PCBlock | CanCollaborateError.NotFound | CanCollaborateError.OutsideOwnerAgeBucket | CanCollaborateError.NotAuthorized | CanCollaborateError.OutsideAgeBucketTcPc | CanCollaborateError.OtherCollaboratorSettingsPreventTrust | CanCollaborateError.AgeVerificationCountryBlocked | CanCollaborateError.OtherUserCannotCollaborate;
|
|
7080
7324
|
/**
|
|
7325
|
+
* Specifies the scope of permissions an experience requests for accessing the device's capture gallery.
|
|
7326
|
+
*
|
|
7081
7327
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CaptureGalleryPermission)
|
|
7082
7328
|
*/
|
|
7083
7329
|
export namespace CaptureGalleryPermission {
|
|
7084
7330
|
/**
|
|
7331
|
+
* Requests permission to read captures from and upload captures to the device's gallery.
|
|
7332
|
+
*
|
|
7085
7333
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CaptureGalleryPermission#ReadAndUpload)
|
|
7086
7334
|
*/
|
|
7087
7335
|
export interface ReadAndUpload extends globalThis.EnumItem {
|
|
@@ -7096,10 +7344,14 @@ declare namespace Enum {
|
|
|
7096
7344
|
}
|
|
7097
7345
|
export type CaptureGalleryPermission = CaptureGalleryPermission.ReadAndUpload;
|
|
7098
7346
|
/**
|
|
7347
|
+
* Indicates whether a capture is a screenshot or a video recording.
|
|
7348
|
+
*
|
|
7099
7349
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CaptureType)
|
|
7100
7350
|
*/
|
|
7101
7351
|
export namespace CaptureType {
|
|
7102
7352
|
/**
|
|
7353
|
+
* The capture is a screenshot image.
|
|
7354
|
+
*
|
|
7103
7355
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CaptureType#Screenshot)
|
|
7104
7356
|
*/
|
|
7105
7357
|
export interface Screenshot extends globalThis.EnumItem {
|
|
@@ -7109,6 +7361,8 @@ declare namespace Enum {
|
|
|
7109
7361
|
}
|
|
7110
7362
|
export const Screenshot: Screenshot;
|
|
7111
7363
|
/**
|
|
7364
|
+
* The capture is a video recording.
|
|
7365
|
+
*
|
|
7112
7366
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CaptureType#Video)
|
|
7113
7367
|
*/
|
|
7114
7368
|
export interface Video extends globalThis.EnumItem {
|
|
@@ -7780,10 +8034,14 @@ declare namespace Enum {
|
|
|
7780
8034
|
}
|
|
7781
8035
|
export type CharacterControlMode = CharacterControlMode.Default | CharacterControlMode.Legacy | CharacterControlMode.NoCharacterController | CharacterControlMode.LuaCharacterController;
|
|
7782
8036
|
/**
|
|
8037
|
+
* Identifies a hook point in the legacy Luau chat pipeline for use with `Chat:RegisterChatCallback()` and `Chat:InvokeChatCallback()`.
|
|
8038
|
+
*
|
|
7783
8039
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ChatCallbackType)
|
|
7784
8040
|
*/
|
|
7785
8041
|
export namespace ChatCallbackType {
|
|
7786
8042
|
/**
|
|
8043
|
+
* Client-only callback invoked before the chat window is constructed, allowing custom settings to be supplied.
|
|
8044
|
+
*
|
|
7787
8045
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ChatCallbackType#OnCreatingChatWindow)
|
|
7788
8046
|
*/
|
|
7789
8047
|
export interface OnCreatingChatWindow extends globalThis.EnumItem {
|
|
@@ -7793,6 +8051,8 @@ declare namespace Enum {
|
|
|
7793
8051
|
}
|
|
7794
8052
|
export const OnCreatingChatWindow: OnCreatingChatWindow;
|
|
7795
8053
|
/**
|
|
8054
|
+
* Client-only callback reserved for when the client sends a message; not currently invoked.
|
|
8055
|
+
*
|
|
7796
8056
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ChatCallbackType#OnClientSendingMessage)
|
|
7797
8057
|
*/
|
|
7798
8058
|
export interface OnClientSendingMessage extends globalThis.EnumItem {
|
|
@@ -7802,6 +8062,8 @@ declare namespace Enum {
|
|
|
7802
8062
|
}
|
|
7803
8063
|
export const OnClientSendingMessage: OnClientSendingMessage;
|
|
7804
8064
|
/**
|
|
8065
|
+
* Client-only callback invoked before a message is displayed, allowing its display data to be modified.
|
|
8066
|
+
*
|
|
7805
8067
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ChatCallbackType#OnClientFormattingMessage)
|
|
7806
8068
|
*/
|
|
7807
8069
|
export interface OnClientFormattingMessage extends globalThis.EnumItem {
|
|
@@ -7811,6 +8073,8 @@ declare namespace Enum {
|
|
|
7811
8073
|
}
|
|
7812
8074
|
export const OnClientFormattingMessage: OnClientFormattingMessage;
|
|
7813
8075
|
/**
|
|
8076
|
+
* Server-only callback invoked when the server receives a message from a speaker, allowing the message to be modified or suppressed.
|
|
8077
|
+
*
|
|
7814
8078
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ChatCallbackType#OnServerReceivingMessage)
|
|
7815
8079
|
*/
|
|
7816
8080
|
export interface OnServerReceivingMessage extends globalThis.EnumItem {
|
|
@@ -7831,7 +8095,7 @@ declare namespace Enum {
|
|
|
7831
8095
|
*/
|
|
7832
8096
|
export namespace ChatColor {
|
|
7833
8097
|
/**
|
|
7834
|
-
*
|
|
8098
|
+
* The blue chat color; the default value passed to `Chat()` and `ChatLocal()`.
|
|
7835
8099
|
*
|
|
7836
8100
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ChatColor#Blue)
|
|
7837
8101
|
*/
|
|
@@ -7842,7 +8106,7 @@ declare namespace Enum {
|
|
|
7842
8106
|
}
|
|
7843
8107
|
export const Blue: Blue;
|
|
7844
8108
|
/**
|
|
7845
|
-
*
|
|
8109
|
+
* The green chat color, passed as the `color` argument to `Chat()` or `ChatLocal()`.
|
|
7846
8110
|
*
|
|
7847
8111
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ChatColor#Green)
|
|
7848
8112
|
*/
|
|
@@ -7853,7 +8117,7 @@ declare namespace Enum {
|
|
|
7853
8117
|
}
|
|
7854
8118
|
export const Green: Green;
|
|
7855
8119
|
/**
|
|
7856
|
-
*
|
|
8120
|
+
* The red chat color, passed as the `color` argument to `Chat()` or `ChatLocal()`.
|
|
7857
8121
|
*
|
|
7858
8122
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ChatColor#Red)
|
|
7859
8123
|
*/
|
|
@@ -7864,7 +8128,7 @@ declare namespace Enum {
|
|
|
7864
8128
|
}
|
|
7865
8129
|
export const Red: Red;
|
|
7866
8130
|
/**
|
|
7867
|
-
*
|
|
8131
|
+
* The white chat color, passed as the `color` argument to `Chat()` or `ChatLocal()`.
|
|
7868
8132
|
*
|
|
7869
8133
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ChatColor#White)
|
|
7870
8134
|
*/
|
|
@@ -7957,10 +8221,14 @@ declare namespace Enum {
|
|
|
7957
8221
|
}
|
|
7958
8222
|
export type ChatPrivacyMode = ChatPrivacyMode.AllUsers | ChatPrivacyMode.NoOne | ChatPrivacyMode.Friends;
|
|
7959
8223
|
/**
|
|
8224
|
+
* Describes the chat restriction status that a third-party platform reports for a user.
|
|
8225
|
+
*
|
|
7960
8226
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ChatRestrictionStatus)
|
|
7961
8227
|
*/
|
|
7962
8228
|
export namespace ChatRestrictionStatus {
|
|
7963
8229
|
/**
|
|
8230
|
+
* The platform's chat restriction status for the user has not yet been determined; this is the default value for all ChatRestrictionStatus properties.
|
|
8231
|
+
*
|
|
7964
8232
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ChatRestrictionStatus#Unknown)
|
|
7965
8233
|
*/
|
|
7966
8234
|
export interface Unknown extends globalThis.EnumItem {
|
|
@@ -7970,6 +8238,8 @@ declare namespace Enum {
|
|
|
7970
8238
|
}
|
|
7971
8239
|
export const Unknown: Unknown;
|
|
7972
8240
|
/**
|
|
8241
|
+
* The third-party platform has confirmed the user has no chat restrictions in effect.
|
|
8242
|
+
*
|
|
7973
8243
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ChatRestrictionStatus#NotRestricted)
|
|
7974
8244
|
*/
|
|
7975
8245
|
export interface NotRestricted extends globalThis.EnumItem {
|
|
@@ -7979,6 +8249,8 @@ declare namespace Enum {
|
|
|
7979
8249
|
}
|
|
7980
8250
|
export const NotRestricted: NotRestricted;
|
|
7981
8251
|
/**
|
|
8252
|
+
* The third-party platform has reported the user is restricted from chat, typically due to parental controls or platform communication settings.
|
|
8253
|
+
*
|
|
7982
8254
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ChatRestrictionStatus#Restricted)
|
|
7983
8255
|
*/
|
|
7984
8256
|
export interface Restricted extends globalThis.EnumItem {
|
|
@@ -8305,6 +8577,8 @@ declare namespace Enum {
|
|
|
8305
8577
|
}
|
|
8306
8578
|
export const PreciseConvexDecomposition: PreciseConvexDecomposition;
|
|
8307
8579
|
/**
|
|
8580
|
+
* Collision model that supports precision tuning of convex decomposition fidelity.
|
|
8581
|
+
*
|
|
8308
8582
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CollisionFidelity#Tunable)
|
|
8309
8583
|
*/
|
|
8310
8584
|
export interface Tunable extends globalThis.EnumItem {
|
|
@@ -10696,6 +10970,8 @@ declare namespace Enum {
|
|
|
10696
10970
|
*/
|
|
10697
10971
|
export namespace CurrencyType {
|
|
10698
10972
|
/**
|
|
10973
|
+
* Use the default currency (Robux), equivalent to not specifying a currency.
|
|
10974
|
+
*
|
|
10699
10975
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CurrencyType#Default)
|
|
10700
10976
|
*/
|
|
10701
10977
|
export interface Default extends globalThis.EnumItem {
|
|
@@ -13628,10 +13904,14 @@ declare namespace Enum {
|
|
|
13628
13904
|
}
|
|
13629
13905
|
export type ExperienceActivationStatus = ExperienceActivationStatus.Unknown | ExperienceActivationStatus.New | ExperienceActivationStatus.Active | ExperienceActivationStatus.Lapsed | ExperienceActivationStatus.Reactivated;
|
|
13630
13906
|
/**
|
|
13907
|
+
* Enumerates the authorization scopes an experience can request when prompting a creator for permission to access their assets.
|
|
13908
|
+
*
|
|
13631
13909
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceAuthScope)
|
|
13632
13910
|
*/
|
|
13633
13911
|
export namespace ExperienceAuthScope {
|
|
13634
13912
|
/**
|
|
13913
|
+
* The base scope (value `0`) representing no additional permissions; used internally when no specific asset authorization is required.
|
|
13914
|
+
*
|
|
13635
13915
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceAuthScope#DefaultScope)
|
|
13636
13916
|
*/
|
|
13637
13917
|
export interface DefaultScope extends globalThis.EnumItem {
|
|
@@ -13641,6 +13921,8 @@ declare namespace Enum {
|
|
|
13641
13921
|
}
|
|
13642
13922
|
export const DefaultScope: DefaultScope;
|
|
13643
13923
|
/**
|
|
13924
|
+
* Requests read and write access to the creator's assets; maps to the `asset:*:read,write` authorization token scope.
|
|
13925
|
+
*
|
|
13644
13926
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceAuthScope#CreatorAssetsCreate)
|
|
13645
13927
|
*/
|
|
13646
13928
|
export interface CreatorAssetsCreate extends globalThis.EnumItem {
|
|
@@ -13655,6 +13937,8 @@ declare namespace Enum {
|
|
|
13655
13937
|
}
|
|
13656
13938
|
export type ExperienceAuthScope = ExperienceAuthScope.DefaultScope | ExperienceAuthScope.CreatorAssetsCreate;
|
|
13657
13939
|
/**
|
|
13940
|
+
* Describes the lifecycle state of a Roblox experience event as returned by `SocialService`.
|
|
13941
|
+
*
|
|
13658
13942
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceEventStatus)
|
|
13659
13943
|
*/
|
|
13660
13944
|
export namespace ExperienceEventStatus {
|
|
@@ -14002,10 +14286,14 @@ declare namespace Enum {
|
|
|
14002
14286
|
}
|
|
14003
14287
|
export type FacialAgeEstimationResultType = FacialAgeEstimationResultType.Complete | FacialAgeEstimationResultType.Cancel | FacialAgeEstimationResultType.Error;
|
|
14004
14288
|
/**
|
|
14289
|
+
* A bitmask enum describing which facial animation streaming capabilities are active for a user or service.
|
|
14290
|
+
*
|
|
14005
14291
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacialAnimationStreamingState)
|
|
14006
14292
|
*/
|
|
14007
14293
|
export namespace FacialAnimationStreamingState {
|
|
14008
14294
|
/**
|
|
14295
|
+
* Indicates that no facial animation streaming is active.
|
|
14296
|
+
*
|
|
14009
14297
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacialAnimationStreamingState#None)
|
|
14010
14298
|
*/
|
|
14011
14299
|
export interface None extends globalThis.EnumItem {
|
|
@@ -14015,6 +14303,8 @@ declare namespace Enum {
|
|
|
14015
14303
|
}
|
|
14016
14304
|
export const None: None;
|
|
14017
14305
|
/**
|
|
14306
|
+
* Indicates that audio-based facial animation streaming is enabled for the user.
|
|
14307
|
+
*
|
|
14018
14308
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacialAnimationStreamingState#Audio)
|
|
14019
14309
|
*/
|
|
14020
14310
|
export interface Audio extends globalThis.EnumItem {
|
|
@@ -14024,6 +14314,8 @@ declare namespace Enum {
|
|
|
14024
14314
|
}
|
|
14025
14315
|
export const Audio: Audio;
|
|
14026
14316
|
/**
|
|
14317
|
+
* Indicates that video-based facial animation streaming is enabled for the user.
|
|
14318
|
+
*
|
|
14027
14319
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacialAnimationStreamingState#Video)
|
|
14028
14320
|
*/
|
|
14029
14321
|
export interface Video extends globalThis.EnumItem {
|
|
@@ -14033,6 +14325,8 @@ declare namespace Enum {
|
|
|
14033
14325
|
}
|
|
14034
14326
|
export const Video: Video;
|
|
14035
14327
|
/**
|
|
14328
|
+
* Indicates that facial animation streaming is enabled at the place level.
|
|
14329
|
+
*
|
|
14036
14330
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacialAnimationStreamingState#Place)
|
|
14037
14331
|
*/
|
|
14038
14332
|
export interface Place extends globalThis.EnumItem {
|
|
@@ -14042,6 +14336,8 @@ declare namespace Enum {
|
|
|
14042
14336
|
}
|
|
14043
14337
|
export const Place: Place;
|
|
14044
14338
|
/**
|
|
14339
|
+
* Indicates that facial animation streaming is enabled at the server level.
|
|
14340
|
+
*
|
|
14045
14341
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FacialAnimationStreamingState#Server)
|
|
14046
14342
|
*/
|
|
14047
14343
|
export interface Server extends globalThis.EnumItem {
|
|
@@ -16400,7 +16696,7 @@ declare namespace Enum {
|
|
|
16400
16696
|
}
|
|
16401
16697
|
export const R15: R15;
|
|
16402
16698
|
/**
|
|
16403
|
-
* The rig (either R6 or R15) determined by a player's character settings set on the website in the 'Edit Avatar' page.
|
|
16699
|
+
* The rig (either R6 or [R15](../../../avatar/character-bodies/specifications.md#rigging) determined by a player's character settings set on the website in the 'Edit Avatar' page.
|
|
16404
16700
|
*
|
|
16405
16701
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GameAvatarType#PlayerChoice)
|
|
16406
16702
|
*/
|
|
@@ -18096,7 +18392,7 @@ declare namespace Enum {
|
|
|
18096
18392
|
}
|
|
18097
18393
|
export type HumanoidHealthDisplayType = HumanoidHealthDisplayType.DisplayWhenDamaged | HumanoidHealthDisplayType.AlwaysOn | HumanoidHealthDisplayType.AlwaysOff;
|
|
18098
18394
|
/**
|
|
18099
|
-
* Describes whether or not a character is using
|
|
18395
|
+
* Describes whether or not a character is using an R15 rig or the legacy R6 rig.
|
|
18100
18396
|
*
|
|
18101
18397
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HumanoidRigType)
|
|
18102
18398
|
*/
|
|
@@ -18113,7 +18409,7 @@ declare namespace Enum {
|
|
|
18113
18409
|
}
|
|
18114
18410
|
export const R6: R6;
|
|
18115
18411
|
/**
|
|
18116
|
-
* Indicates that a character is using
|
|
18412
|
+
* Indicates that a character is using an R15 rig.
|
|
18117
18413
|
*
|
|
18118
18414
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HumanoidRigType#R15)
|
|
18119
18415
|
*/
|
|
@@ -18470,10 +18766,14 @@ declare namespace Enum {
|
|
|
18470
18766
|
}
|
|
18471
18767
|
export type IKControlType = IKControlType.Transform | IKControlType.Position | IKControlType.Rotation | IKControlType.LookAt;
|
|
18472
18768
|
/**
|
|
18769
|
+
* Describes the loading state of an IXP (in-experience experiment) layer fetch operation.
|
|
18770
|
+
*
|
|
18473
18771
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/IXPLoadingStatus)
|
|
18474
18772
|
*/
|
|
18475
18773
|
export namespace IXPLoadingStatus {
|
|
18476
18774
|
/**
|
|
18775
|
+
* The default status when the IXP controller is first constructed or after layers have been cleared.
|
|
18776
|
+
*
|
|
18477
18777
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/IXPLoadingStatus#None)
|
|
18478
18778
|
*/
|
|
18479
18779
|
export interface None extends globalThis.EnumItem {
|
|
@@ -18483,6 +18783,8 @@ declare namespace Enum {
|
|
|
18483
18783
|
}
|
|
18484
18784
|
export const None: None;
|
|
18485
18785
|
/**
|
|
18786
|
+
* An HTTP request to fetch layer assignments has been sent and a response is awaited.
|
|
18787
|
+
*
|
|
18486
18788
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/IXPLoadingStatus#Pending)
|
|
18487
18789
|
*/
|
|
18488
18790
|
export interface Pending extends globalThis.EnumItem {
|
|
@@ -18492,6 +18794,8 @@ declare namespace Enum {
|
|
|
18492
18794
|
}
|
|
18493
18795
|
export const Pending: Pending;
|
|
18494
18796
|
/**
|
|
18797
|
+
* The HTTP request completed successfully and layer variable values have been populated from the response.
|
|
18798
|
+
*
|
|
18495
18799
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/IXPLoadingStatus#Initialized)
|
|
18496
18800
|
*/
|
|
18497
18801
|
export interface Initialized extends globalThis.EnumItem {
|
|
@@ -18501,6 +18805,8 @@ declare namespace Enum {
|
|
|
18501
18805
|
}
|
|
18502
18806
|
export const Initialized: Initialized;
|
|
18503
18807
|
/**
|
|
18808
|
+
* The fetch failed because the requested subject (user) was invalid at the time of the request.
|
|
18809
|
+
*
|
|
18504
18810
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/IXPLoadingStatus#ErrorInvalidUser)
|
|
18505
18811
|
*/
|
|
18506
18812
|
export interface ErrorInvalidUser extends globalThis.EnumItem {
|
|
@@ -18510,6 +18816,8 @@ declare namespace Enum {
|
|
|
18510
18816
|
}
|
|
18511
18817
|
export const ErrorInvalidUser: ErrorInvalidUser;
|
|
18512
18818
|
/**
|
|
18819
|
+
* The HTTP request to fetch layer assignments failed due to a connection error.
|
|
18820
|
+
*
|
|
18513
18821
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/IXPLoadingStatus#ErrorConnection)
|
|
18514
18822
|
*/
|
|
18515
18823
|
export interface ErrorConnection extends globalThis.EnumItem {
|
|
@@ -18519,6 +18827,8 @@ declare namespace Enum {
|
|
|
18519
18827
|
}
|
|
18520
18828
|
export const ErrorConnection: ErrorConnection;
|
|
18521
18829
|
/**
|
|
18830
|
+
* The HTTP request succeeded but the response body could not be parsed as valid JSON.
|
|
18831
|
+
*
|
|
18522
18832
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/IXPLoadingStatus#ErrorJsonParse)
|
|
18523
18833
|
*/
|
|
18524
18834
|
export interface ErrorJsonParse extends globalThis.EnumItem {
|
|
@@ -18528,6 +18838,8 @@ declare namespace Enum {
|
|
|
18528
18838
|
}
|
|
18529
18839
|
export const ErrorJsonParse: ErrorJsonParse;
|
|
18530
18840
|
/**
|
|
18841
|
+
* The HTTP request to fetch layer assignments timed out before a response was received.
|
|
18842
|
+
*
|
|
18531
18843
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/IXPLoadingStatus#ErrorTimedOut)
|
|
18532
18844
|
*/
|
|
18533
18845
|
export interface ErrorTimedOut extends globalThis.EnumItem {
|
|
@@ -18718,6 +19030,8 @@ declare namespace Enum {
|
|
|
18718
19030
|
}
|
|
18719
19031
|
export type InOut = InOut.Edge | InOut.Inset | InOut.Center;
|
|
18720
19032
|
/**
|
|
19033
|
+
* Specifies the type of product information returned by `MarketplaceService:GetProductInfoAsync()`.
|
|
19034
|
+
*
|
|
18721
19035
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InfoType)
|
|
18722
19036
|
*/
|
|
18723
19037
|
export namespace InfoType {
|
|
@@ -18755,6 +19069,8 @@ declare namespace Enum {
|
|
|
18755
19069
|
}
|
|
18756
19070
|
export const GamePass: GamePass;
|
|
18757
19071
|
/**
|
|
19072
|
+
* The product is a subscription.
|
|
19073
|
+
*
|
|
18758
19074
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InfoType#Subscription)
|
|
18759
19075
|
*/
|
|
18760
19076
|
export interface Subscription extends globalThis.EnumItem {
|
|
@@ -18764,6 +19080,8 @@ declare namespace Enum {
|
|
|
18764
19080
|
}
|
|
18765
19081
|
export const Subscription: Subscription;
|
|
18766
19082
|
/**
|
|
19083
|
+
* The product is a bundle.
|
|
19084
|
+
*
|
|
18767
19085
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InfoType#Bundle)
|
|
18768
19086
|
*/
|
|
18769
19087
|
export interface Bundle extends globalThis.EnumItem {
|
|
@@ -19141,10 +19459,14 @@ declare namespace Enum {
|
|
|
19141
19459
|
}
|
|
19142
19460
|
export type InstanceFileSyncStatus = InstanceFileSyncStatus.NotSynced | InstanceFileSyncStatus.Errored | InstanceFileSyncStatus.SyncedAsRoot | InstanceFileSyncStatus.SyncedAsDescendant | InstanceFileSyncStatus.AncestorErrored;
|
|
19143
19461
|
/**
|
|
19462
|
+
* Indicates the type of result delivered via the intermediate-result callback during an asynchronous mesh-generation operation.
|
|
19463
|
+
*
|
|
19144
19464
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/IntermediateMeshGenerationResult)
|
|
19145
19465
|
*/
|
|
19146
19466
|
export namespace IntermediateMeshGenerationResult {
|
|
19147
19467
|
/**
|
|
19468
|
+
* Signals that the intermediate mesh delivered to the callback is high-quality.
|
|
19469
|
+
*
|
|
19148
19470
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/IntermediateMeshGenerationResult#HighQualityMesh)
|
|
19149
19471
|
*/
|
|
19150
19472
|
export interface HighQualityMesh extends globalThis.EnumItem {
|
|
@@ -23669,10 +23991,14 @@ declare namespace Enum {
|
|
|
23669
23991
|
}
|
|
23670
23992
|
export type LoadDynamicHeads = LoadDynamicHeads.Default | LoadDynamicHeads.Disabled | LoadDynamicHeads.Enabled;
|
|
23671
23993
|
/**
|
|
23994
|
+
* Specifies how `HeatmapService` determines a player's representative world position for heatmap data collection.
|
|
23995
|
+
*
|
|
23672
23996
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LocationType)
|
|
23673
23997
|
*/
|
|
23674
23998
|
export namespace LocationType {
|
|
23675
23999
|
/**
|
|
24000
|
+
* Use the player's character model world position as the heatmap location (default).
|
|
24001
|
+
*
|
|
23676
24002
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LocationType#Character)
|
|
23677
24003
|
*/
|
|
23678
24004
|
export interface Character extends globalThis.EnumItem {
|
|
@@ -23682,6 +24008,8 @@ declare namespace Enum {
|
|
|
23682
24008
|
}
|
|
23683
24009
|
export const Character: Character;
|
|
23684
24010
|
/**
|
|
24011
|
+
* Use the current workspace camera's world position as the player's heatmap location.
|
|
24012
|
+
*
|
|
23685
24013
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LocationType#Camera)
|
|
23686
24014
|
*/
|
|
23687
24015
|
export interface Camera extends globalThis.EnumItem {
|
|
@@ -23691,6 +24019,8 @@ declare namespace Enum {
|
|
|
23691
24019
|
}
|
|
23692
24020
|
export const Camera: Camera;
|
|
23693
24021
|
/**
|
|
24022
|
+
* Use the world position of a configured target object as the player's heatmap location.
|
|
24023
|
+
*
|
|
23694
24024
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LocationType#ObjectPosition)
|
|
23695
24025
|
*/
|
|
23696
24026
|
export interface ObjectPosition extends globalThis.EnumItem {
|
|
@@ -24008,7 +24338,7 @@ declare namespace Enum {
|
|
|
24008
24338
|
*/
|
|
24009
24339
|
export namespace MarketplaceProductType {
|
|
24010
24340
|
/**
|
|
24011
|
-
* Avatar
|
|
24341
|
+
* A standalone avatar item (such as an accessory, clothing, or body part) sold individually in the Avatar Shop.
|
|
24012
24342
|
*
|
|
24013
24343
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MarketplaceProductType#AvatarAsset)
|
|
24014
24344
|
*/
|
|
@@ -24019,7 +24349,7 @@ declare namespace Enum {
|
|
|
24019
24349
|
}
|
|
24020
24350
|
export const AvatarAsset: AvatarAsset;
|
|
24021
24351
|
/**
|
|
24022
|
-
* Avatar
|
|
24352
|
+
* A curated collection of avatar items sold together as a single package in the Avatar Shop.
|
|
24023
24353
|
*
|
|
24024
24354
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MarketplaceProductType#AvatarBundle)
|
|
24025
24355
|
*/
|
|
@@ -24714,6 +25044,87 @@ declare namespace Enum {
|
|
|
24714
25044
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MembershipType | undefined;
|
|
24715
25045
|
}
|
|
24716
25046
|
export type MembershipType = MembershipType.None | MembershipType.BuildersClub | MembershipType.TurboBuildersClub | MembershipType.OutrageousBuildersClub | MembershipType.Premium;
|
|
25047
|
+
/**
|
|
25048
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MergeResolution)
|
|
25049
|
+
*/
|
|
25050
|
+
export namespace MergeResolution {
|
|
25051
|
+
/**
|
|
25052
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MergeResolution#None)
|
|
25053
|
+
*/
|
|
25054
|
+
export interface None extends globalThis.EnumItem {
|
|
25055
|
+
Name: "None";
|
|
25056
|
+
Value: 0;
|
|
25057
|
+
EnumType: typeof globalThis.Enum.MergeResolution;
|
|
25058
|
+
}
|
|
25059
|
+
export const None: None;
|
|
25060
|
+
/**
|
|
25061
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MergeResolution#UseSource)
|
|
25062
|
+
*/
|
|
25063
|
+
export interface UseSource extends globalThis.EnumItem {
|
|
25064
|
+
Name: "UseSource";
|
|
25065
|
+
Value: 1;
|
|
25066
|
+
EnumType: typeof globalThis.Enum.MergeResolution;
|
|
25067
|
+
}
|
|
25068
|
+
export const UseSource: UseSource;
|
|
25069
|
+
/**
|
|
25070
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MergeResolution#UseTarget)
|
|
25071
|
+
*/
|
|
25072
|
+
export interface UseTarget extends globalThis.EnumItem {
|
|
25073
|
+
Name: "UseTarget";
|
|
25074
|
+
Value: 2;
|
|
25075
|
+
EnumType: typeof globalThis.Enum.MergeResolution;
|
|
25076
|
+
}
|
|
25077
|
+
export const UseTarget: UseTarget;
|
|
25078
|
+
/**
|
|
25079
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MergeResolution#Manual)
|
|
25080
|
+
*/
|
|
25081
|
+
export interface Manual extends globalThis.EnumItem {
|
|
25082
|
+
Name: "Manual";
|
|
25083
|
+
Value: 3;
|
|
25084
|
+
EnumType: typeof globalThis.Enum.MergeResolution;
|
|
25085
|
+
}
|
|
25086
|
+
export const Manual: Manual;
|
|
25087
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.MergeResolution>;
|
|
25088
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.MergeResolution | undefined;
|
|
25089
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MergeResolution | undefined;
|
|
25090
|
+
}
|
|
25091
|
+
export type MergeResolution = MergeResolution.None | MergeResolution.UseSource | MergeResolution.UseTarget | MergeResolution.Manual;
|
|
25092
|
+
/**
|
|
25093
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MergeStatus)
|
|
25094
|
+
*/
|
|
25095
|
+
export namespace MergeStatus {
|
|
25096
|
+
/**
|
|
25097
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MergeStatus#None)
|
|
25098
|
+
*/
|
|
25099
|
+
export interface None extends globalThis.EnumItem {
|
|
25100
|
+
Name: "None";
|
|
25101
|
+
Value: 0;
|
|
25102
|
+
EnumType: typeof globalThis.Enum.MergeStatus;
|
|
25103
|
+
}
|
|
25104
|
+
export const None: None;
|
|
25105
|
+
/**
|
|
25106
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MergeStatus#Loading)
|
|
25107
|
+
*/
|
|
25108
|
+
export interface Loading extends globalThis.EnumItem {
|
|
25109
|
+
Name: "Loading";
|
|
25110
|
+
Value: 1;
|
|
25111
|
+
EnumType: typeof globalThis.Enum.MergeStatus;
|
|
25112
|
+
}
|
|
25113
|
+
export const Loading: Loading;
|
|
25114
|
+
/**
|
|
25115
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MergeStatus#Merging)
|
|
25116
|
+
*/
|
|
25117
|
+
export interface Merging extends globalThis.EnumItem {
|
|
25118
|
+
Name: "Merging";
|
|
25119
|
+
Value: 2;
|
|
25120
|
+
EnumType: typeof globalThis.Enum.MergeStatus;
|
|
25121
|
+
}
|
|
25122
|
+
export const Merging: Merging;
|
|
25123
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.MergeStatus>;
|
|
25124
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.MergeStatus | undefined;
|
|
25125
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MergeStatus | undefined;
|
|
25126
|
+
}
|
|
25127
|
+
export type MergeStatus = MergeStatus.None | MergeStatus.Loading | MergeStatus.Merging;
|
|
24717
25128
|
/**
|
|
24718
25129
|
* Identifies a mesh attribute when calling the batch methods on `EditableMesh`.
|
|
24719
25130
|
*
|
|
@@ -24957,10 +25368,14 @@ declare namespace Enum {
|
|
|
24957
25368
|
}
|
|
24958
25369
|
export type MeshPartHeadsAndAccessories = MeshPartHeadsAndAccessories.Default | MeshPartHeadsAndAccessories.Disabled | MeshPartHeadsAndAccessories.Enabled;
|
|
24959
25370
|
/**
|
|
25371
|
+
* Specifies the real-world unit of length that a source 3D mesh file was authored in, used by the mesh importer to scale geometry to Roblox studs.
|
|
25372
|
+
*
|
|
24960
25373
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MeshScaleUnit)
|
|
24961
25374
|
*/
|
|
24962
25375
|
export namespace MeshScaleUnit {
|
|
24963
25376
|
/**
|
|
25377
|
+
* Treats the source mesh as authored in Roblox studs, applying no unit conversion on import.
|
|
25378
|
+
*
|
|
24964
25379
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MeshScaleUnit#Stud)
|
|
24965
25380
|
*/
|
|
24966
25381
|
export interface Stud extends globalThis.EnumItem {
|
|
@@ -24970,6 +25385,8 @@ declare namespace Enum {
|
|
|
24970
25385
|
}
|
|
24971
25386
|
export const Stud: Stud;
|
|
24972
25387
|
/**
|
|
25388
|
+
* Treats the source mesh as authored in meters and scales it to Roblox studs on import.
|
|
25389
|
+
*
|
|
24973
25390
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MeshScaleUnit#Meter)
|
|
24974
25391
|
*/
|
|
24975
25392
|
export interface Meter extends globalThis.EnumItem {
|
|
@@ -24979,6 +25396,8 @@ declare namespace Enum {
|
|
|
24979
25396
|
}
|
|
24980
25397
|
export const Meter: Meter;
|
|
24981
25398
|
/**
|
|
25399
|
+
* Treats the source mesh as authored in centimeters and scales it to Roblox studs on import.
|
|
25400
|
+
*
|
|
24982
25401
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MeshScaleUnit#CM)
|
|
24983
25402
|
*/
|
|
24984
25403
|
export interface CM extends globalThis.EnumItem {
|
|
@@ -24988,6 +25407,8 @@ declare namespace Enum {
|
|
|
24988
25407
|
}
|
|
24989
25408
|
export const CM: CM;
|
|
24990
25409
|
/**
|
|
25410
|
+
* Treats the source mesh as authored in millimeters and scales it to Roblox studs on import.
|
|
25411
|
+
*
|
|
24991
25412
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MeshScaleUnit#MM)
|
|
24992
25413
|
*/
|
|
24993
25414
|
export interface MM extends globalThis.EnumItem {
|
|
@@ -24997,6 +25418,8 @@ declare namespace Enum {
|
|
|
24997
25418
|
}
|
|
24998
25419
|
export const MM: MM;
|
|
24999
25420
|
/**
|
|
25421
|
+
* Treats the source mesh as authored in feet and scales it to Roblox studs on import.
|
|
25422
|
+
*
|
|
25000
25423
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MeshScaleUnit#Foot)
|
|
25001
25424
|
*/
|
|
25002
25425
|
export interface Foot extends globalThis.EnumItem {
|
|
@@ -25006,6 +25429,8 @@ declare namespace Enum {
|
|
|
25006
25429
|
}
|
|
25007
25430
|
export const Foot: Foot;
|
|
25008
25431
|
/**
|
|
25432
|
+
* Treats the source mesh as authored in inches and scales it to Roblox studs on import.
|
|
25433
|
+
*
|
|
25009
25434
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MeshScaleUnit#Inch)
|
|
25010
25435
|
*/
|
|
25011
25436
|
export interface Inch extends globalThis.EnumItem {
|
|
@@ -25937,10 +26362,14 @@ declare namespace Enum {
|
|
|
25937
26362
|
}
|
|
25938
26363
|
export type NetworkOwnership = NetworkOwnership.Automatic | NetworkOwnership.Manual | NetworkOwnership.OnContact;
|
|
25939
26364
|
/**
|
|
26365
|
+
* Describes the device's current network reachability state as reported by `ConnectivityService`.
|
|
26366
|
+
*
|
|
25940
26367
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/NetworkStatus)
|
|
25941
26368
|
*/
|
|
25942
26369
|
export namespace NetworkStatus {
|
|
25943
26370
|
/**
|
|
26371
|
+
* The network connection state has not yet been determined or is unavailable on the current platform.
|
|
26372
|
+
*
|
|
25944
26373
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/NetworkStatus#Unknown)
|
|
25945
26374
|
*/
|
|
25946
26375
|
export interface Unknown extends globalThis.EnumItem {
|
|
@@ -25950,6 +26379,8 @@ declare namespace Enum {
|
|
|
25950
26379
|
}
|
|
25951
26380
|
export const Unknown: Unknown;
|
|
25952
26381
|
/**
|
|
26382
|
+
* The device has an active network connection.
|
|
26383
|
+
*
|
|
25953
26384
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/NetworkStatus#Connected)
|
|
25954
26385
|
*/
|
|
25955
26386
|
export interface Connected extends globalThis.EnumItem {
|
|
@@ -25959,6 +26390,8 @@ declare namespace Enum {
|
|
|
25959
26390
|
}
|
|
25960
26391
|
export const Connected: Connected;
|
|
25961
26392
|
/**
|
|
26393
|
+
* The device does not currently have a network connection.
|
|
26394
|
+
*
|
|
25962
26395
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/NetworkStatus#Disconnected)
|
|
25963
26396
|
*/
|
|
25964
26397
|
export interface Disconnected extends globalThis.EnumItem {
|
|
@@ -25973,10 +26406,14 @@ declare namespace Enum {
|
|
|
25973
26406
|
}
|
|
25974
26407
|
export type NetworkStatus = NetworkStatus.Unknown | NetworkStatus.Connected | NetworkStatus.Disconnected;
|
|
25975
26408
|
/**
|
|
26409
|
+
* Specifies the noise algorithm used by a `Noise` instance's `NoiseType` property.
|
|
26410
|
+
*
|
|
25976
26411
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/NoiseType)
|
|
25977
26412
|
*/
|
|
25978
26413
|
export namespace NoiseType {
|
|
25979
26414
|
/**
|
|
26415
|
+
* Uses an OpenSimplex2 body-centered cubic (BCC) lattice with a Gabor sinusoidal kernel for anisotropic directional noise sampling.
|
|
26416
|
+
*
|
|
25980
26417
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/NoiseType#SimplexGabor)
|
|
25981
26418
|
*/
|
|
25982
26419
|
export interface SimplexGabor extends globalThis.EnumItem {
|
|
@@ -27025,6 +27462,8 @@ declare namespace Enum {
|
|
|
27025
27462
|
}
|
|
27026
27463
|
export const Jump: Jump;
|
|
27027
27464
|
/**
|
|
27465
|
+
* A developer-defined custom action is needed to traverse a `PathfindingLink` to reach the next waypoint.
|
|
27466
|
+
*
|
|
27028
27467
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PathWaypointAction#Custom)
|
|
27029
27468
|
*/
|
|
27030
27469
|
export interface Custom extends globalThis.EnumItem {
|
|
@@ -27221,10 +27660,14 @@ declare namespace Enum {
|
|
|
27221
27660
|
}
|
|
27222
27661
|
export type PermissionLevelShown = PermissionLevelShown.Game | PermissionLevelShown.RobloxGame | PermissionLevelShown.RobloxScript | PermissionLevelShown.Studio | PermissionLevelShown.Roblox;
|
|
27223
27662
|
/**
|
|
27663
|
+
* Specifies the type of physical joint created when importing a rigged asset.
|
|
27664
|
+
*
|
|
27224
27665
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PhysicalConstraintType)
|
|
27225
27666
|
*/
|
|
27226
27667
|
export namespace PhysicalConstraintType {
|
|
27227
27668
|
/**
|
|
27669
|
+
* Import creates `AnimationConstraint` instances to connect the rig's bone joints.
|
|
27670
|
+
*
|
|
27228
27671
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PhysicalConstraintType#AnimationConstraint)
|
|
27229
27672
|
*/
|
|
27230
27673
|
export interface AnimationConstraint extends globalThis.EnumItem {
|
|
@@ -27234,6 +27677,8 @@ declare namespace Enum {
|
|
|
27234
27677
|
}
|
|
27235
27678
|
export const AnimationConstraint: AnimationConstraint;
|
|
27236
27679
|
/**
|
|
27680
|
+
* Import creates `Motor6D` instances to connect the rig's bone joints.
|
|
27681
|
+
*
|
|
27237
27682
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PhysicalConstraintType#Motor6D)
|
|
27238
27683
|
*/
|
|
27239
27684
|
export interface Motor6D extends globalThis.EnumItem {
|
|
@@ -28810,6 +29255,8 @@ declare namespace Enum {
|
|
|
28810
29255
|
}
|
|
28811
29256
|
export type PrivilegeType = PrivilegeType.Banned | PrivilegeType.Visitor | PrivilegeType.Member | PrivilegeType.Admin | PrivilegeType.Owner;
|
|
28812
29257
|
/**
|
|
29258
|
+
* Specifies the purchase locations permitted for an avatar item.
|
|
29259
|
+
*
|
|
28813
29260
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ProductLocationRestriction)
|
|
28814
29261
|
*/
|
|
28815
29262
|
export namespace ProductLocationRestriction {
|
|
@@ -28942,7 +29389,7 @@ declare namespace Enum {
|
|
|
28942
29389
|
}
|
|
28943
29390
|
export type ProductPurchaseDecision = ProductPurchaseDecision.NotProcessedYet | ProductPurchaseDecision.PurchaseGranted;
|
|
28944
29391
|
/**
|
|
28945
|
-
* Describes the result of
|
|
29392
|
+
* Describes the result of a `AvatarCreationService:PromptCreateAvatarAssetAsync()` call.
|
|
28946
29393
|
*
|
|
28947
29394
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreateAssetResult)
|
|
28948
29395
|
*/
|
|
@@ -29277,6 +29724,105 @@ declare namespace Enum {
|
|
|
29277
29724
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PromptCreateOutfitResult | undefined;
|
|
29278
29725
|
}
|
|
29279
29726
|
export type PromptCreateOutfitResult = PromptCreateOutfitResult.Success | PromptCreateOutfitResult.PartialSuccess | PromptCreateOutfitResult.CreationFailure | PromptCreateOutfitResult.PermissionDenied | PromptCreateOutfitResult.Timeout | PromptCreateOutfitResult.NoUserInput | PromptCreateOutfitResult.UnknownFailure;
|
|
29727
|
+
/**
|
|
29728
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreatePlatformContentResult)
|
|
29729
|
+
*/
|
|
29730
|
+
export namespace PromptCreatePlatformContentResult {
|
|
29731
|
+
/**
|
|
29732
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreatePlatformContentResult#Success)
|
|
29733
|
+
*/
|
|
29734
|
+
export interface Success extends globalThis.EnumItem {
|
|
29735
|
+
Name: "Success";
|
|
29736
|
+
Value: 1;
|
|
29737
|
+
EnumType: typeof globalThis.Enum.PromptCreatePlatformContentResult;
|
|
29738
|
+
}
|
|
29739
|
+
export const Success: Success;
|
|
29740
|
+
/**
|
|
29741
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreatePlatformContentResult#PermissionDenied)
|
|
29742
|
+
*/
|
|
29743
|
+
export interface PermissionDenied extends globalThis.EnumItem {
|
|
29744
|
+
Name: "PermissionDenied";
|
|
29745
|
+
Value: 2;
|
|
29746
|
+
EnumType: typeof globalThis.Enum.PromptCreatePlatformContentResult;
|
|
29747
|
+
}
|
|
29748
|
+
export const PermissionDenied: PermissionDenied;
|
|
29749
|
+
/**
|
|
29750
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreatePlatformContentResult#Timeout)
|
|
29751
|
+
*/
|
|
29752
|
+
export interface Timeout extends globalThis.EnumItem {
|
|
29753
|
+
Name: "Timeout";
|
|
29754
|
+
Value: 3;
|
|
29755
|
+
EnumType: typeof globalThis.Enum.PromptCreatePlatformContentResult;
|
|
29756
|
+
}
|
|
29757
|
+
export const Timeout: Timeout;
|
|
29758
|
+
/**
|
|
29759
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreatePlatformContentResult#UploadFailed)
|
|
29760
|
+
*/
|
|
29761
|
+
export interface UploadFailed extends globalThis.EnumItem {
|
|
29762
|
+
Name: "UploadFailed";
|
|
29763
|
+
Value: 4;
|
|
29764
|
+
EnumType: typeof globalThis.Enum.PromptCreatePlatformContentResult;
|
|
29765
|
+
}
|
|
29766
|
+
export const UploadFailed: UploadFailed;
|
|
29767
|
+
/**
|
|
29768
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreatePlatformContentResult#NoUserInput)
|
|
29769
|
+
*/
|
|
29770
|
+
export interface NoUserInput extends globalThis.EnumItem {
|
|
29771
|
+
Name: "NoUserInput";
|
|
29772
|
+
Value: 5;
|
|
29773
|
+
EnumType: typeof globalThis.Enum.PromptCreatePlatformContentResult;
|
|
29774
|
+
}
|
|
29775
|
+
export const NoUserInput: NoUserInput;
|
|
29776
|
+
/**
|
|
29777
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreatePlatformContentResult#UnknownFailure)
|
|
29778
|
+
*/
|
|
29779
|
+
export interface UnknownFailure extends globalThis.EnumItem {
|
|
29780
|
+
Name: "UnknownFailure";
|
|
29781
|
+
Value: 6;
|
|
29782
|
+
EnumType: typeof globalThis.Enum.PromptCreatePlatformContentResult;
|
|
29783
|
+
}
|
|
29784
|
+
export const UnknownFailure: UnknownFailure;
|
|
29785
|
+
/**
|
|
29786
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreatePlatformContentResult#UGCValidationFailed)
|
|
29787
|
+
*/
|
|
29788
|
+
export interface UGCValidationFailed extends globalThis.EnumItem {
|
|
29789
|
+
Name: "UGCValidationFailed";
|
|
29790
|
+
Value: 7;
|
|
29791
|
+
EnumType: typeof globalThis.Enum.PromptCreatePlatformContentResult;
|
|
29792
|
+
}
|
|
29793
|
+
export const UGCValidationFailed: UGCValidationFailed;
|
|
29794
|
+
/**
|
|
29795
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreatePlatformContentResult#ModeratedName)
|
|
29796
|
+
*/
|
|
29797
|
+
export interface ModeratedName extends globalThis.EnumItem {
|
|
29798
|
+
Name: "ModeratedName";
|
|
29799
|
+
Value: 8;
|
|
29800
|
+
EnumType: typeof globalThis.Enum.PromptCreatePlatformContentResult;
|
|
29801
|
+
}
|
|
29802
|
+
export const ModeratedName: ModeratedName;
|
|
29803
|
+
/**
|
|
29804
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreatePlatformContentResult#PurchaseFailure)
|
|
29805
|
+
*/
|
|
29806
|
+
export interface PurchaseFailure extends globalThis.EnumItem {
|
|
29807
|
+
Name: "PurchaseFailure";
|
|
29808
|
+
Value: 9;
|
|
29809
|
+
EnumType: typeof globalThis.Enum.PromptCreatePlatformContentResult;
|
|
29810
|
+
}
|
|
29811
|
+
export const PurchaseFailure: PurchaseFailure;
|
|
29812
|
+
/**
|
|
29813
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreatePlatformContentResult#TokenInvalid)
|
|
29814
|
+
*/
|
|
29815
|
+
export interface TokenInvalid extends globalThis.EnumItem {
|
|
29816
|
+
Name: "TokenInvalid";
|
|
29817
|
+
Value: 10;
|
|
29818
|
+
EnumType: typeof globalThis.Enum.PromptCreatePlatformContentResult;
|
|
29819
|
+
}
|
|
29820
|
+
export const TokenInvalid: TokenInvalid;
|
|
29821
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PromptCreatePlatformContentResult>;
|
|
29822
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PromptCreatePlatformContentResult | undefined;
|
|
29823
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PromptCreatePlatformContentResult | undefined;
|
|
29824
|
+
}
|
|
29825
|
+
export type PromptCreatePlatformContentResult = PromptCreatePlatformContentResult.Success | PromptCreatePlatformContentResult.PermissionDenied | PromptCreatePlatformContentResult.Timeout | PromptCreatePlatformContentResult.UploadFailed | PromptCreatePlatformContentResult.NoUserInput | PromptCreatePlatformContentResult.UnknownFailure | PromptCreatePlatformContentResult.UGCValidationFailed | PromptCreatePlatformContentResult.ModeratedName | PromptCreatePlatformContentResult.PurchaseFailure | PromptCreatePlatformContentResult.TokenInvalid;
|
|
29280
29826
|
/**
|
|
29281
29827
|
* Indicates how the player dismissed the experience details prompt shown by `TeleportService:PromptExperienceDetailsAsync()`.
|
|
29282
29828
|
*
|
|
@@ -29347,7 +29893,7 @@ declare namespace Enum {
|
|
|
29347
29893
|
}
|
|
29348
29894
|
export type PromptLinkSharingResult = PromptLinkSharingResult.Success | PromptLinkSharingResult.PlayerLeft | PromptLinkSharingResult.InvalidLaunchData;
|
|
29349
29895
|
/**
|
|
29350
|
-
*
|
|
29896
|
+
* Deprecated result enum for the `OpenPublishResultModal` event.
|
|
29351
29897
|
*
|
|
29352
29898
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptPublishAssetResult)
|
|
29353
29899
|
*/
|
|
@@ -29941,10 +30487,14 @@ declare namespace Enum {
|
|
|
29941
30487
|
}
|
|
29942
30488
|
export type RaycastFilterType = RaycastFilterType.Exclude | RaycastFilterType.Include;
|
|
29943
30489
|
/**
|
|
30490
|
+
* Describes the outcome of a `CaptureService:ReadCapturesFromGalleryAsync()` call.
|
|
30491
|
+
*
|
|
29944
30492
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReadCapturesFromGalleryResult)
|
|
29945
30493
|
*/
|
|
29946
30494
|
export namespace ReadCapturesFromGalleryResult {
|
|
29947
30495
|
/**
|
|
30496
|
+
* The read operation completed successfully and capture data has been returned.
|
|
30497
|
+
*
|
|
29948
30498
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReadCapturesFromGalleryResult#Success)
|
|
29949
30499
|
*/
|
|
29950
30500
|
export interface Success extends globalThis.EnumItem {
|
|
@@ -29954,6 +30504,8 @@ declare namespace Enum {
|
|
|
29954
30504
|
}
|
|
29955
30505
|
export const Success: Success;
|
|
29956
30506
|
/**
|
|
30507
|
+
* The read operation failed because the experience has not been granted permission to access the user's capture gallery.
|
|
30508
|
+
*
|
|
29957
30509
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReadCapturesFromGalleryResult#NeedPermission)
|
|
29958
30510
|
*/
|
|
29959
30511
|
export interface NeedPermission extends globalThis.EnumItem {
|
|
@@ -30718,10 +31270,14 @@ declare namespace Enum {
|
|
|
30718
31270
|
}
|
|
30719
31271
|
export type ReservedHighlightId = ReservedHighlightId.Standard | ReservedHighlightId.Active | ReservedHighlightId.Hover | ReservedHighlightId.Selection | ReservedHighlightId.NegatedPart;
|
|
30720
31272
|
/**
|
|
31273
|
+
* Determines how the initial joint rest pose is established when importing a rigged 3D model.
|
|
31274
|
+
*
|
|
30721
31275
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RestPose)
|
|
30722
31276
|
*/
|
|
30723
31277
|
export namespace RestPose {
|
|
30724
31278
|
/**
|
|
31279
|
+
* Uses the first animation clip found in the source file to define the initial joint rest pose on import.
|
|
31280
|
+
*
|
|
30725
31281
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RestPose#Default)
|
|
30726
31282
|
*/
|
|
30727
31283
|
export interface Default extends globalThis.EnumItem {
|
|
@@ -30731,6 +31287,8 @@ declare namespace Enum {
|
|
|
30731
31287
|
}
|
|
30732
31288
|
export const Default: Default;
|
|
30733
31289
|
/**
|
|
31290
|
+
* Resets all joint rotations to zero so that the imported rig starts from an identity rest pose.
|
|
31291
|
+
*
|
|
30734
31292
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RestPose#RotationsReset)
|
|
30735
31293
|
*/
|
|
30736
31294
|
export interface RotationsReset extends globalThis.EnumItem {
|
|
@@ -30740,6 +31298,8 @@ declare namespace Enum {
|
|
|
30740
31298
|
}
|
|
30741
31299
|
export const RotationsReset: RotationsReset;
|
|
30742
31300
|
/**
|
|
31301
|
+
* Uses a specific animation clip, identified by its index in the file, to set the initial joint rest pose on import.
|
|
31302
|
+
*
|
|
30743
31303
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RestPose#Custom)
|
|
30744
31304
|
*/
|
|
30745
31305
|
export interface Custom extends globalThis.EnumItem {
|
|
@@ -31692,14 +32252,10 @@ declare namespace Enum {
|
|
|
31692
32252
|
}
|
|
31693
32253
|
export type RigScale = RigScale.Default | RigScale.Rthro | RigScale.RthroNarrow;
|
|
31694
32254
|
/**
|
|
31695
|
-
* The type of rig being imported with the 3D Importer.
|
|
31696
|
-
*
|
|
31697
32255
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigType)
|
|
31698
32256
|
*/
|
|
31699
32257
|
export namespace RigType {
|
|
31700
32258
|
/**
|
|
31701
|
-
* A rig type of R15.
|
|
31702
|
-
*
|
|
31703
32259
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigType#R15)
|
|
31704
32260
|
*/
|
|
31705
32261
|
export interface R15 extends globalThis.EnumItem {
|
|
@@ -31718,8 +32274,6 @@ declare namespace Enum {
|
|
|
31718
32274
|
}
|
|
31719
32275
|
export const CustomHumanoid: CustomHumanoid;
|
|
31720
32276
|
/**
|
|
31721
|
-
* A rig type of Custom.
|
|
31722
|
-
*
|
|
31723
32277
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigType#Custom)
|
|
31724
32278
|
*/
|
|
31725
32279
|
export interface Custom extends globalThis.EnumItem {
|
|
@@ -31729,8 +32283,6 @@ declare namespace Enum {
|
|
|
31729
32283
|
}
|
|
31730
32284
|
export const Custom: Custom;
|
|
31731
32285
|
/**
|
|
31732
|
-
* A rig type of None.
|
|
31733
|
-
*
|
|
31734
32286
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigType#None)
|
|
31735
32287
|
*/
|
|
31736
32288
|
export interface None extends globalThis.EnumItem {
|
|
@@ -31948,10 +32500,14 @@ declare namespace Enum {
|
|
|
31948
32500
|
}
|
|
31949
32501
|
export type RotationType = RotationType.MovementRelative | RotationType.CameraRelative;
|
|
31950
32502
|
/**
|
|
32503
|
+
* Indicates a player's RSVP response to a Roblox experience event.
|
|
32504
|
+
*
|
|
31951
32505
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RsvpStatus)
|
|
31952
32506
|
*/
|
|
31953
32507
|
export namespace RsvpStatus {
|
|
31954
32508
|
/**
|
|
32509
|
+
* The player has not yet responded to the event invitation; this is the default RSVP state.
|
|
32510
|
+
*
|
|
31955
32511
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RsvpStatus#None)
|
|
31956
32512
|
*/
|
|
31957
32513
|
export interface None extends globalThis.EnumItem {
|
|
@@ -31961,6 +32517,8 @@ declare namespace Enum {
|
|
|
31961
32517
|
}
|
|
31962
32518
|
export const None: None;
|
|
31963
32519
|
/**
|
|
32520
|
+
* The player has accepted the event invitation and confirmed they are going.
|
|
32521
|
+
*
|
|
31964
32522
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RsvpStatus#Going)
|
|
31965
32523
|
*/
|
|
31966
32524
|
export interface Going extends globalThis.EnumItem {
|
|
@@ -31970,6 +32528,8 @@ declare namespace Enum {
|
|
|
31970
32528
|
}
|
|
31971
32529
|
export const Going: Going;
|
|
31972
32530
|
/**
|
|
32531
|
+
* The player has declined the event invitation and indicated they are not going.
|
|
32532
|
+
*
|
|
31973
32533
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RsvpStatus#NotGoing)
|
|
31974
32534
|
*/
|
|
31975
32535
|
export interface NotGoing extends globalThis.EnumItem {
|
|
@@ -32393,10 +32953,14 @@ declare namespace Enum {
|
|
|
32393
32953
|
}
|
|
32394
32954
|
export type SaveFilter = SaveFilter.SaveWorld | SaveFilter.SaveGame | SaveFilter.SaveAll;
|
|
32395
32955
|
/**
|
|
32956
|
+
* Represents the user's saved graphics quality preference, stored in `UserGameSettings.SavedQualityLevel`.
|
|
32957
|
+
*
|
|
32396
32958
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SavedQualitySetting)
|
|
32397
32959
|
*/
|
|
32398
32960
|
export namespace SavedQualitySetting {
|
|
32399
32961
|
/**
|
|
32962
|
+
* Graphics quality is determined automatically based on device performance.
|
|
32963
|
+
*
|
|
32400
32964
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SavedQualitySetting#Automatic)
|
|
32401
32965
|
*/
|
|
32402
32966
|
export interface Automatic extends globalThis.EnumItem {
|
|
@@ -32406,6 +32970,8 @@ declare namespace Enum {
|
|
|
32406
32970
|
}
|
|
32407
32971
|
export const Automatic: Automatic;
|
|
32408
32972
|
/**
|
|
32973
|
+
* Saved graphics quality level 1 — the lowest explicit quality setting.
|
|
32974
|
+
*
|
|
32409
32975
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SavedQualitySetting#QualityLevel1)
|
|
32410
32976
|
*/
|
|
32411
32977
|
export interface QualityLevel1 extends globalThis.EnumItem {
|
|
@@ -32415,6 +32981,8 @@ declare namespace Enum {
|
|
|
32415
32981
|
}
|
|
32416
32982
|
export const QualityLevel1: QualityLevel1;
|
|
32417
32983
|
/**
|
|
32984
|
+
* Saved graphics quality level 2.
|
|
32985
|
+
*
|
|
32418
32986
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SavedQualitySetting#QualityLevel2)
|
|
32419
32987
|
*/
|
|
32420
32988
|
export interface QualityLevel2 extends globalThis.EnumItem {
|
|
@@ -32424,6 +32992,8 @@ declare namespace Enum {
|
|
|
32424
32992
|
}
|
|
32425
32993
|
export const QualityLevel2: QualityLevel2;
|
|
32426
32994
|
/**
|
|
32995
|
+
* Saved graphics quality level 3.
|
|
32996
|
+
*
|
|
32427
32997
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SavedQualitySetting#QualityLevel3)
|
|
32428
32998
|
*/
|
|
32429
32999
|
export interface QualityLevel3 extends globalThis.EnumItem {
|
|
@@ -32433,6 +33003,8 @@ declare namespace Enum {
|
|
|
32433
33003
|
}
|
|
32434
33004
|
export const QualityLevel3: QualityLevel3;
|
|
32435
33005
|
/**
|
|
33006
|
+
* Saved graphics quality level 4.
|
|
33007
|
+
*
|
|
32436
33008
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SavedQualitySetting#QualityLevel4)
|
|
32437
33009
|
*/
|
|
32438
33010
|
export interface QualityLevel4 extends globalThis.EnumItem {
|
|
@@ -32442,6 +33014,8 @@ declare namespace Enum {
|
|
|
32442
33014
|
}
|
|
32443
33015
|
export const QualityLevel4: QualityLevel4;
|
|
32444
33016
|
/**
|
|
33017
|
+
* Saved graphics quality level 5.
|
|
33018
|
+
*
|
|
32445
33019
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SavedQualitySetting#QualityLevel5)
|
|
32446
33020
|
*/
|
|
32447
33021
|
export interface QualityLevel5 extends globalThis.EnumItem {
|
|
@@ -32451,6 +33025,8 @@ declare namespace Enum {
|
|
|
32451
33025
|
}
|
|
32452
33026
|
export const QualityLevel5: QualityLevel5;
|
|
32453
33027
|
/**
|
|
33028
|
+
* Saved graphics quality level 6.
|
|
33029
|
+
*
|
|
32454
33030
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SavedQualitySetting#QualityLevel6)
|
|
32455
33031
|
*/
|
|
32456
33032
|
export interface QualityLevel6 extends globalThis.EnumItem {
|
|
@@ -32460,6 +33036,8 @@ declare namespace Enum {
|
|
|
32460
33036
|
}
|
|
32461
33037
|
export const QualityLevel6: QualityLevel6;
|
|
32462
33038
|
/**
|
|
33039
|
+
* Saved graphics quality level 7.
|
|
33040
|
+
*
|
|
32463
33041
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SavedQualitySetting#QualityLevel7)
|
|
32464
33042
|
*/
|
|
32465
33043
|
export interface QualityLevel7 extends globalThis.EnumItem {
|
|
@@ -32469,6 +33047,8 @@ declare namespace Enum {
|
|
|
32469
33047
|
}
|
|
32470
33048
|
export const QualityLevel7: QualityLevel7;
|
|
32471
33049
|
/**
|
|
33050
|
+
* Saved graphics quality level 8.
|
|
33051
|
+
*
|
|
32472
33052
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SavedQualitySetting#QualityLevel8)
|
|
32473
33053
|
*/
|
|
32474
33054
|
export interface QualityLevel8 extends globalThis.EnumItem {
|
|
@@ -32478,6 +33058,8 @@ declare namespace Enum {
|
|
|
32478
33058
|
}
|
|
32479
33059
|
export const QualityLevel8: QualityLevel8;
|
|
32480
33060
|
/**
|
|
33061
|
+
* Saved graphics quality level 9.
|
|
33062
|
+
*
|
|
32481
33063
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SavedQualitySetting#QualityLevel9)
|
|
32482
33064
|
*/
|
|
32483
33065
|
export interface QualityLevel9 extends globalThis.EnumItem {
|
|
@@ -32487,6 +33069,8 @@ declare namespace Enum {
|
|
|
32487
33069
|
}
|
|
32488
33070
|
export const QualityLevel9: QualityLevel9;
|
|
32489
33071
|
/**
|
|
33072
|
+
* Saved graphics quality level 10 — the highest explicit quality setting.
|
|
33073
|
+
*
|
|
32490
33074
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SavedQualitySetting#QualityLevel10)
|
|
32491
33075
|
*/
|
|
32492
33076
|
export interface QualityLevel10 extends globalThis.EnumItem {
|
|
@@ -32567,10 +33151,14 @@ declare namespace Enum {
|
|
|
32567
33151
|
}
|
|
32568
33152
|
export type ScaleType = ScaleType.Stretch | ScaleType.Slice | ScaleType.Tile | ScaleType.Fit | ScaleType.Crop;
|
|
32569
33153
|
/**
|
|
33154
|
+
* Indicates the outcome of an `ExperienceAuthService` scope-authorization request.
|
|
33155
|
+
*
|
|
32570
33156
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScopeCheckResult)
|
|
32571
33157
|
*/
|
|
32572
33158
|
export namespace ScopeCheckResult {
|
|
32573
33159
|
/**
|
|
33160
|
+
* The player accepted the authorization prompt and a valid token was issued for the requested scopes.
|
|
33161
|
+
*
|
|
32574
33162
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScopeCheckResult#ConsentAccepted)
|
|
32575
33163
|
*/
|
|
32576
33164
|
export interface ConsentAccepted extends globalThis.EnumItem {
|
|
@@ -32580,6 +33168,8 @@ declare namespace Enum {
|
|
|
32580
33168
|
}
|
|
32581
33169
|
export const ConsentAccepted: ConsentAccepted;
|
|
32582
33170
|
/**
|
|
33171
|
+
* The requested scopes are not recognized or are not permitted for the calling context.
|
|
33172
|
+
*
|
|
32583
33173
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScopeCheckResult#InvalidScopes)
|
|
32584
33174
|
*/
|
|
32585
33175
|
export interface InvalidScopes extends globalThis.EnumItem {
|
|
@@ -32589,6 +33179,8 @@ declare namespace Enum {
|
|
|
32589
33179
|
}
|
|
32590
33180
|
export const InvalidScopes: InvalidScopes;
|
|
32591
33181
|
/**
|
|
33182
|
+
* The scope-check request exceeded the configured timeout period before the player responded.
|
|
33183
|
+
*
|
|
32592
33184
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScopeCheckResult#Timeout)
|
|
32593
33185
|
*/
|
|
32594
33186
|
export interface Timeout extends globalThis.EnumItem {
|
|
@@ -32598,6 +33190,8 @@ declare namespace Enum {
|
|
|
32598
33190
|
}
|
|
32599
33191
|
export const Timeout: Timeout;
|
|
32600
33192
|
/**
|
|
33193
|
+
* The authorization prompt was dismissed without any explicit player action, such as when the player disconnects or the UI is closed without a response.
|
|
33194
|
+
*
|
|
32601
33195
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScopeCheckResult#NoUserInput)
|
|
32602
33196
|
*/
|
|
32603
33197
|
export interface NoUserInput extends globalThis.EnumItem {
|
|
@@ -32607,6 +33201,8 @@ declare namespace Enum {
|
|
|
32607
33201
|
}
|
|
32608
33202
|
export const NoUserInput: NoUserInput;
|
|
32609
33203
|
/**
|
|
33204
|
+
* The Roblox backend returned an error or unexpected HTTP status when exchanging the consent grant for an authorization token.
|
|
33205
|
+
*
|
|
32610
33206
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScopeCheckResult#BackendError)
|
|
32611
33207
|
*/
|
|
32612
33208
|
export interface BackendError extends globalThis.EnumItem {
|
|
@@ -32616,6 +33212,8 @@ declare namespace Enum {
|
|
|
32616
33212
|
}
|
|
32617
33213
|
export const BackendError: BackendError;
|
|
32618
33214
|
/**
|
|
33215
|
+
* An unexpected error occurred that is not covered by a more specific result code.
|
|
33216
|
+
*
|
|
32619
33217
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScopeCheckResult#UnexpectedError)
|
|
32620
33218
|
*/
|
|
32621
33219
|
export interface UnexpectedError extends globalThis.EnumItem {
|
|
@@ -32625,6 +33223,8 @@ declare namespace Enum {
|
|
|
32625
33223
|
}
|
|
32626
33224
|
export const UnexpectedError: UnexpectedError;
|
|
32627
33225
|
/**
|
|
33226
|
+
* One or more arguments passed to the scope-check call were invalid, such as an empty scope list, a null player instance, or a player who is no longer in the experience.
|
|
33227
|
+
*
|
|
32628
33228
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScopeCheckResult#InvalidArgument)
|
|
32629
33229
|
*/
|
|
32630
33230
|
export interface InvalidArgument extends globalThis.EnumItem {
|
|
@@ -32634,6 +33234,8 @@ declare namespace Enum {
|
|
|
32634
33234
|
}
|
|
32635
33235
|
export const InvalidArgument: InvalidArgument;
|
|
32636
33236
|
/**
|
|
33237
|
+
* The player explicitly declined the authorization prompt.
|
|
33238
|
+
*
|
|
32637
33239
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScopeCheckResult#ConsentDenied)
|
|
32638
33240
|
*/
|
|
32639
33241
|
export interface ConsentDenied extends globalThis.EnumItem {
|
|
@@ -33013,6 +33615,33 @@ declare namespace Enum {
|
|
|
33013
33615
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ScrollBarInset | undefined;
|
|
33014
33616
|
}
|
|
33015
33617
|
export type ScrollBarInset = ScrollBarInset.None | ScrollBarInset.ScrollBar | ScrollBarInset.Always;
|
|
33618
|
+
/**
|
|
33619
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScrollState)
|
|
33620
|
+
*/
|
|
33621
|
+
export namespace ScrollState {
|
|
33622
|
+
/**
|
|
33623
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScrollState#Idle)
|
|
33624
|
+
*/
|
|
33625
|
+
export interface Idle extends globalThis.EnumItem {
|
|
33626
|
+
Name: "Idle";
|
|
33627
|
+
Value: 0;
|
|
33628
|
+
EnumType: typeof globalThis.Enum.ScrollState;
|
|
33629
|
+
}
|
|
33630
|
+
export const Idle: Idle;
|
|
33631
|
+
/**
|
|
33632
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScrollState#Scrolling)
|
|
33633
|
+
*/
|
|
33634
|
+
export interface Scrolling extends globalThis.EnumItem {
|
|
33635
|
+
Name: "Scrolling";
|
|
33636
|
+
Value: 1;
|
|
33637
|
+
EnumType: typeof globalThis.Enum.ScrollState;
|
|
33638
|
+
}
|
|
33639
|
+
export const Scrolling: Scrolling;
|
|
33640
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ScrollState>;
|
|
33641
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ScrollState | undefined;
|
|
33642
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ScrollState | undefined;
|
|
33643
|
+
}
|
|
33644
|
+
export type ScrollState = ScrollState.Idle | ScrollState.Scrolling;
|
|
33016
33645
|
/**
|
|
33017
33646
|
* This enum is used by `ScrollingFrame.ScrollingDirection` to specify the direction(s) in which scrolling is allowed.
|
|
33018
33647
|
*
|
|
@@ -34259,19 +34888,17 @@ declare namespace Enum {
|
|
|
34259
34888
|
}
|
|
34260
34889
|
export const None: None;
|
|
34261
34890
|
/**
|
|
34262
|
-
* Colors each mesh by its current level of detail
|
|
34891
|
+
* Colors each mesh by its current level of detail. Blue is the coarsest, red the finest, and every rank in between maps to a fixed color. A given color always means the same LOD rank across every mesh, with the exception that each mesh's own highest available LOD is always shown red.
|
|
34263
34892
|
*
|
|
34264
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTintMode#
|
|
34893
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTintMode#LevelOfDetail)
|
|
34265
34894
|
*/
|
|
34266
|
-
export interface
|
|
34267
|
-
Name: "
|
|
34895
|
+
export interface LevelOfDetail extends globalThis.EnumItem {
|
|
34896
|
+
Name: "LevelOfDetail";
|
|
34268
34897
|
Value: 1;
|
|
34269
34898
|
EnumType: typeof globalThis.Enum.SlimTintMode;
|
|
34270
34899
|
}
|
|
34271
|
-
export const
|
|
34900
|
+
export const LevelOfDetail: LevelOfDetail;
|
|
34272
34901
|
/**
|
|
34273
|
-
* Assigns a distinct color to each individual mesh within a model. Useful for identifying mesh boundaries and verifying how a model is split into separate mesh parts.
|
|
34274
|
-
*
|
|
34275
34902
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTintMode#Meshes)
|
|
34276
34903
|
*/
|
|
34277
34904
|
export interface Meshes extends globalThis.EnumItem {
|
|
@@ -34299,16 +34926,16 @@ declare namespace Enum {
|
|
|
34299
34926
|
}
|
|
34300
34927
|
export const ContentId: ContentId;
|
|
34301
34928
|
/**
|
|
34302
|
-
* Colors
|
|
34929
|
+
* Colors SLIM models by whether their DataModel instances are streamed in or out. Green indicates streamed in (full DataModel present); yellow indicates streamed out (a placeholder). Both are still rendered via SLIM.
|
|
34303
34930
|
*
|
|
34304
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTintMode#
|
|
34931
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTintMode#DataModelState)
|
|
34305
34932
|
*/
|
|
34306
|
-
export interface
|
|
34307
|
-
Name: "
|
|
34933
|
+
export interface DataModelState extends globalThis.EnumItem {
|
|
34934
|
+
Name: "DataModelState";
|
|
34308
34935
|
Value: 5;
|
|
34309
34936
|
EnumType: typeof globalThis.Enum.SlimTintMode;
|
|
34310
34937
|
}
|
|
34311
|
-
export const
|
|
34938
|
+
export const DataModelState: DataModelState;
|
|
34312
34939
|
/**
|
|
34313
34940
|
* Colors each SLIM model by its `SlimTranscoderStatus`. Follow the link to see which color maps to each status.
|
|
34314
34941
|
*
|
|
@@ -34324,7 +34951,7 @@ declare namespace Enum {
|
|
|
34324
34951
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SlimTintMode | undefined;
|
|
34325
34952
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SlimTintMode | undefined;
|
|
34326
34953
|
}
|
|
34327
|
-
export type SlimTintMode = SlimTintMode.None | SlimTintMode.
|
|
34954
|
+
export type SlimTintMode = SlimTintMode.None | SlimTintMode.LevelOfDetail | SlimTintMode.Meshes | SlimTintMode.MeshResourcePtr | SlimTintMode.ContentId | SlimTintMode.DataModelState | SlimTintMode.TranscoderStatus;
|
|
34328
34955
|
/**
|
|
34329
34956
|
* Describes the backend transcoding state of a SLIM model, from upload through transcoding to success or failure.
|
|
34330
34957
|
*
|
|
@@ -34332,7 +34959,7 @@ declare namespace Enum {
|
|
|
34332
34959
|
*/
|
|
34333
34960
|
export namespace SlimTranscoderStatus {
|
|
34334
34961
|
/**
|
|
34335
|
-
* The transcoding status has not yet been determined. This is the initial state before the model has been queried. Shown as
|
|
34962
|
+
* The transcoding status has not yet been determined. This is the initial state before the model has been queried. Shown as yellow in the debug tint overlay.
|
|
34336
34963
|
*
|
|
34337
34964
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTranscoderStatus#Unknown)
|
|
34338
34965
|
*/
|
|
@@ -34342,50 +34969,17 @@ declare namespace Enum {
|
|
|
34342
34969
|
EnumType: typeof globalThis.Enum.SlimTranscoderStatus;
|
|
34343
34970
|
}
|
|
34344
34971
|
export const Unknown: Unknown;
|
|
34345
|
-
/**
|
|
34346
|
-
* The model is SLIM-enabled but does not yet have a generated hash, so transcoding has not been requested. Shown as cyan in the debug tint overlay.
|
|
34347
|
-
*
|
|
34348
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTranscoderStatus#NoHash)
|
|
34349
|
-
*/
|
|
34350
|
-
export interface NoHash extends globalThis.EnumItem {
|
|
34351
|
-
Name: "NoHash";
|
|
34352
|
-
Value: 1;
|
|
34353
|
-
EnumType: typeof globalThis.Enum.SlimTranscoderStatus;
|
|
34354
|
-
}
|
|
34355
|
-
export const NoHash: NoHash;
|
|
34356
|
-
/**
|
|
34357
|
-
* The model has not been uploaded to the content-delivery network. Shown as orange in the debug tint overlay.
|
|
34358
|
-
*
|
|
34359
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTranscoderStatus#NotUploaded)
|
|
34360
|
-
*/
|
|
34361
|
-
export interface NotUploaded extends globalThis.EnumItem {
|
|
34362
|
-
Name: "NotUploaded";
|
|
34363
|
-
Value: 2;
|
|
34364
|
-
EnumType: typeof globalThis.Enum.SlimTranscoderStatus;
|
|
34365
|
-
}
|
|
34366
|
-
export const NotUploaded: NotUploaded;
|
|
34367
|
-
/**
|
|
34368
|
-
* The model has been uploaded to the content-delivery network but has not yet been transcoded into SLIM assets. Shown as yellow in the debug tint overlay.
|
|
34369
|
-
*
|
|
34370
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTranscoderStatus#Uploaded)
|
|
34371
|
-
*/
|
|
34372
|
-
export interface Uploaded extends globalThis.EnumItem {
|
|
34373
|
-
Name: "Uploaded";
|
|
34374
|
-
Value: 3;
|
|
34375
|
-
EnumType: typeof globalThis.Enum.SlimTranscoderStatus;
|
|
34376
|
-
}
|
|
34377
|
-
export const Uploaded: Uploaded;
|
|
34378
34972
|
/**
|
|
34379
34973
|
* SLIM transcoding is currently in progress on the backend. The model is expected to transition to Succeeded or Failed once transcoding completes. Shown as blue in the debug tint overlay.
|
|
34380
34974
|
*
|
|
34381
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTranscoderStatus#
|
|
34975
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTranscoderStatus#Transcoding)
|
|
34382
34976
|
*/
|
|
34383
|
-
export interface
|
|
34384
|
-
Name: "
|
|
34385
|
-
Value:
|
|
34977
|
+
export interface Transcoding extends globalThis.EnumItem {
|
|
34978
|
+
Name: "Transcoding";
|
|
34979
|
+
Value: 1;
|
|
34386
34980
|
EnumType: typeof globalThis.Enum.SlimTranscoderStatus;
|
|
34387
34981
|
}
|
|
34388
|
-
export const
|
|
34982
|
+
export const Transcoding: Transcoding;
|
|
34389
34983
|
/**
|
|
34390
34984
|
* Transcoding completed successfully and the SLIM assets are available for streaming. Shown as green in the debug tint overlay.
|
|
34391
34985
|
*
|
|
@@ -34393,7 +34987,7 @@ declare namespace Enum {
|
|
|
34393
34987
|
*/
|
|
34394
34988
|
export interface Succeeded extends globalThis.EnumItem {
|
|
34395
34989
|
Name: "Succeeded";
|
|
34396
|
-
Value:
|
|
34990
|
+
Value: 2;
|
|
34397
34991
|
EnumType: typeof globalThis.Enum.SlimTranscoderStatus;
|
|
34398
34992
|
}
|
|
34399
34993
|
export const Succeeded: Succeeded;
|
|
@@ -34404,7 +34998,7 @@ declare namespace Enum {
|
|
|
34404
34998
|
*/
|
|
34405
34999
|
export interface Failed extends globalThis.EnumItem {
|
|
34406
35000
|
Name: "Failed";
|
|
34407
|
-
Value:
|
|
35001
|
+
Value: 3;
|
|
34408
35002
|
EnumType: typeof globalThis.Enum.SlimTranscoderStatus;
|
|
34409
35003
|
}
|
|
34410
35004
|
export const Failed: Failed;
|
|
@@ -34412,7 +35006,7 @@ declare namespace Enum {
|
|
|
34412
35006
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SlimTranscoderStatus | undefined;
|
|
34413
35007
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SlimTranscoderStatus | undefined;
|
|
34414
35008
|
}
|
|
34415
|
-
export type SlimTranscoderStatus = SlimTranscoderStatus.Unknown | SlimTranscoderStatus.
|
|
35009
|
+
export type SlimTranscoderStatus = SlimTranscoderStatus.Unknown | SlimTranscoderStatus.Transcoding | SlimTranscoderStatus.Succeeded | SlimTranscoderStatus.Failed;
|
|
34416
35010
|
/**
|
|
34417
35011
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimViewContext)
|
|
34418
35012
|
*/
|
|
@@ -34449,42 +35043,6 @@ declare namespace Enum {
|
|
|
34449
35043
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SlimViewContext | undefined;
|
|
34450
35044
|
}
|
|
34451
35045
|
export type SlimViewContext = SlimViewContext.Player | SlimViewContext.Editor | SlimViewContext.ImGui;
|
|
34452
|
-
/**
|
|
34453
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SolidPrimitiveType)
|
|
34454
|
-
*/
|
|
34455
|
-
export namespace SolidPrimitiveType {
|
|
34456
|
-
/**
|
|
34457
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SolidPrimitiveType#Capsule)
|
|
34458
|
-
*/
|
|
34459
|
-
export interface Capsule extends globalThis.EnumItem {
|
|
34460
|
-
Name: "Capsule";
|
|
34461
|
-
Value: 5;
|
|
34462
|
-
EnumType: typeof globalThis.Enum.SolidPrimitiveType;
|
|
34463
|
-
}
|
|
34464
|
-
export const Capsule: Capsule;
|
|
34465
|
-
/**
|
|
34466
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SolidPrimitiveType#Cone)
|
|
34467
|
-
*/
|
|
34468
|
-
export interface Cone extends globalThis.EnumItem {
|
|
34469
|
-
Name: "Cone";
|
|
34470
|
-
Value: 6;
|
|
34471
|
-
EnumType: typeof globalThis.Enum.SolidPrimitiveType;
|
|
34472
|
-
}
|
|
34473
|
-
export const Cone: Cone;
|
|
34474
|
-
/**
|
|
34475
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SolidPrimitiveType#RoundedBox)
|
|
34476
|
-
*/
|
|
34477
|
-
export interface RoundedBox extends globalThis.EnumItem {
|
|
34478
|
-
Name: "RoundedBox";
|
|
34479
|
-
Value: 7;
|
|
34480
|
-
EnumType: typeof globalThis.Enum.SolidPrimitiveType;
|
|
34481
|
-
}
|
|
34482
|
-
export const RoundedBox: RoundedBox;
|
|
34483
|
-
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SolidPrimitiveType>;
|
|
34484
|
-
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SolidPrimitiveType | undefined;
|
|
34485
|
-
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SolidPrimitiveType | undefined;
|
|
34486
|
-
}
|
|
34487
|
-
export type SolidPrimitiveType = SolidPrimitiveType.Capsule | SolidPrimitiveType.Cone | SolidPrimitiveType.RoundedBox;
|
|
34488
35046
|
/**
|
|
34489
35047
|
* Specifies the metric used to identify the least-converged constraint when visualizing physics solver convergence.
|
|
34490
35048
|
*
|
|
@@ -37315,11 +37873,13 @@ declare namespace Enum {
|
|
|
37315
37873
|
}
|
|
37316
37874
|
export type Style = Style.AlternatingSupports | Style.BridgeStyleSupports | Style.NoSupports;
|
|
37317
37875
|
/**
|
|
37876
|
+
* Describes the reason a user's subscription has expired.
|
|
37877
|
+
*
|
|
37318
37878
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SubscriptionExpirationReason)
|
|
37319
37879
|
*/
|
|
37320
37880
|
export namespace SubscriptionExpirationReason {
|
|
37321
37881
|
/**
|
|
37322
|
-
*
|
|
37882
|
+
* The subscription product is inactive.
|
|
37323
37883
|
*
|
|
37324
37884
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SubscriptionExpirationReason#ProductInactive)
|
|
37325
37885
|
*/
|
|
@@ -37330,7 +37890,7 @@ declare namespace Enum {
|
|
|
37330
37890
|
}
|
|
37331
37891
|
export const ProductInactive: ProductInactive;
|
|
37332
37892
|
/**
|
|
37333
|
-
*
|
|
37893
|
+
* The subscription product was deleted.
|
|
37334
37894
|
*
|
|
37335
37895
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SubscriptionExpirationReason#ProductDeleted)
|
|
37336
37896
|
*/
|
|
@@ -37341,7 +37901,7 @@ declare namespace Enum {
|
|
|
37341
37901
|
}
|
|
37342
37902
|
export const ProductDeleted: ProductDeleted;
|
|
37343
37903
|
/**
|
|
37344
|
-
*
|
|
37904
|
+
* The subscriber cancelled the subscription.
|
|
37345
37905
|
*
|
|
37346
37906
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SubscriptionExpirationReason#SubscriberCancelled)
|
|
37347
37907
|
*/
|
|
@@ -37352,7 +37912,7 @@ declare namespace Enum {
|
|
|
37352
37912
|
}
|
|
37353
37913
|
export const SubscriberCancelled: SubscriberCancelled;
|
|
37354
37914
|
/**
|
|
37355
|
-
*
|
|
37915
|
+
* The subscriber received a refund that ended the subscription.
|
|
37356
37916
|
*
|
|
37357
37917
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SubscriptionExpirationReason#SubscriberRefunded)
|
|
37358
37918
|
*/
|
|
@@ -37363,7 +37923,7 @@ declare namespace Enum {
|
|
|
37363
37923
|
}
|
|
37364
37924
|
export const SubscriberRefunded: SubscriberRefunded;
|
|
37365
37925
|
/**
|
|
37366
|
-
*
|
|
37926
|
+
* The subscription expired because payment lapsed.
|
|
37367
37927
|
*
|
|
37368
37928
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SubscriptionExpirationReason#Lapsed)
|
|
37369
37929
|
*/
|
|
@@ -37379,6 +37939,8 @@ declare namespace Enum {
|
|
|
37379
37939
|
}
|
|
37380
37940
|
export type SubscriptionExpirationReason = SubscriptionExpirationReason.ProductInactive | SubscriptionExpirationReason.ProductDeleted | SubscriptionExpirationReason.SubscriberCancelled | SubscriptionExpirationReason.SubscriberRefunded | SubscriptionExpirationReason.Lapsed;
|
|
37381
37941
|
/**
|
|
37942
|
+
* Describes the payment outcome for a single entry in a user's subscription payment history.
|
|
37943
|
+
*
|
|
37382
37944
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SubscriptionPaymentStatus)
|
|
37383
37945
|
*/
|
|
37384
37946
|
export namespace SubscriptionPaymentStatus {
|
|
@@ -37410,10 +37972,14 @@ declare namespace Enum {
|
|
|
37410
37972
|
}
|
|
37411
37973
|
export type SubscriptionPaymentStatus = SubscriptionPaymentStatus.Paid | SubscriptionPaymentStatus.Refunded;
|
|
37412
37974
|
/**
|
|
37975
|
+
* Describes the billing period for a `MarketplaceService` subscription product.
|
|
37976
|
+
*
|
|
37413
37977
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SubscriptionPeriod)
|
|
37414
37978
|
*/
|
|
37415
37979
|
export namespace SubscriptionPeriod {
|
|
37416
37980
|
/**
|
|
37981
|
+
* The subscription renews on a monthly billing cycle.
|
|
37982
|
+
*
|
|
37417
37983
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SubscriptionPeriod#Month)
|
|
37418
37984
|
*/
|
|
37419
37985
|
export interface Month extends globalThis.EnumItem {
|
|
@@ -37428,6 +37994,8 @@ declare namespace Enum {
|
|
|
37428
37994
|
}
|
|
37429
37995
|
export type SubscriptionPeriod = SubscriptionPeriod.Month;
|
|
37430
37996
|
/**
|
|
37997
|
+
* Describes the current subscription state of a user's in-experience subscription product.
|
|
37998
|
+
*
|
|
37431
37999
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SubscriptionState)
|
|
37432
38000
|
*/
|
|
37433
38001
|
export namespace SubscriptionState {
|
|
@@ -38296,11 +38864,20 @@ declare namespace Enum {
|
|
|
38296
38864
|
EnumType: typeof globalThis.Enum.TeleportMethod;
|
|
38297
38865
|
}
|
|
38298
38866
|
export const TeleportUnknown: TeleportUnknown;
|
|
38867
|
+
/**
|
|
38868
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TeleportMethod#Teleport)
|
|
38869
|
+
*/
|
|
38870
|
+
export interface Teleport extends globalThis.EnumItem {
|
|
38871
|
+
Name: "Teleport";
|
|
38872
|
+
Value: 7;
|
|
38873
|
+
EnumType: typeof globalThis.Enum.TeleportMethod;
|
|
38874
|
+
}
|
|
38875
|
+
export const Teleport: Teleport;
|
|
38299
38876
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TeleportMethod>;
|
|
38300
38877
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TeleportMethod | undefined;
|
|
38301
38878
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TeleportMethod | undefined;
|
|
38302
38879
|
}
|
|
38303
|
-
export type TeleportMethod = TeleportMethod.TeleportToSpawnByName | TeleportMethod.TeleportToPlaceInstance | TeleportMethod.TeleportToPrivateServer | TeleportMethod.TeleportPartyAsync | TeleportMethod.TeleportToVIPServer | TeleportMethod.TeleportToInstanceBack | TeleportMethod.TeleportUnknown;
|
|
38880
|
+
export type TeleportMethod = TeleportMethod.TeleportToSpawnByName | TeleportMethod.TeleportToPlaceInstance | TeleportMethod.TeleportToPrivateServer | TeleportMethod.TeleportPartyAsync | TeleportMethod.TeleportToVIPServer | TeleportMethod.TeleportToInstanceBack | TeleportMethod.TeleportUnknown | TeleportMethod.Teleport;
|
|
38304
38881
|
/**
|
|
38305
38882
|
* Describes the result of a teleport.
|
|
38306
38883
|
*
|
|
@@ -38958,6 +39535,8 @@ declare namespace Enum {
|
|
|
38958
39535
|
}
|
|
38959
39536
|
export const MessageTooLong: MessageTooLong;
|
|
38960
39537
|
/**
|
|
39538
|
+
* Message can't be sent because the user has an active moderation timeout on chat.
|
|
39539
|
+
*
|
|
38961
39540
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TextChatMessageStatus#ModerationTimeout)
|
|
38962
39541
|
*/
|
|
38963
39542
|
export interface ModerationTimeout extends globalThis.EnumItem {
|
|
@@ -39016,10 +39595,14 @@ declare namespace Enum {
|
|
|
39016
39595
|
}
|
|
39017
39596
|
export type TextDirection = TextDirection.Auto | TextDirection.LeftToRight | TextDirection.RightToLeft;
|
|
39018
39597
|
/**
|
|
39598
|
+
* Indicates whether text submitted to `TextService:FilterStringAsync()` or `TextService:FilterAndTranslateStringAsync()` is intended for a public or private audience, controlling the strictness of the text filtering backend.
|
|
39599
|
+
*
|
|
39019
39600
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TextFilterContext)
|
|
39020
39601
|
*/
|
|
39021
39602
|
export namespace TextFilterContext {
|
|
39022
39603
|
/**
|
|
39604
|
+
* Indicates the string will be visible to all players or a broad public audience, applying the strictest level of text filtering.
|
|
39605
|
+
*
|
|
39023
39606
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TextFilterContext#PublicChat)
|
|
39024
39607
|
*/
|
|
39025
39608
|
export interface PublicChat extends globalThis.EnumItem {
|
|
@@ -39029,6 +39612,8 @@ declare namespace Enum {
|
|
|
39029
39612
|
}
|
|
39030
39613
|
export const PublicChat: PublicChat;
|
|
39031
39614
|
/**
|
|
39615
|
+
* Indicates the string is part of a private conversation between specific users, applying filtering appropriate for one-to-one or small-group exchanges.
|
|
39616
|
+
*
|
|
39032
39617
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TextFilterContext#PrivateChat)
|
|
39033
39618
|
*/
|
|
39034
39619
|
export interface PrivateChat extends globalThis.EnumItem {
|
|
@@ -41121,10 +41706,14 @@ declare namespace Enum {
|
|
|
41121
41706
|
}
|
|
41122
41707
|
export type UpdateState = UpdateState.UpdateNotAvailable | UpdateState.UpdateAvailable | UpdateState.UpdateInProgress | UpdateState.UpdateReady | UpdateState.UpdateFailed;
|
|
41123
41708
|
/**
|
|
41709
|
+
* Describes the outcome of a `CaptureService:UploadCaptureAsync()` call.
|
|
41710
|
+
*
|
|
41124
41711
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UploadCaptureResult)
|
|
41125
41712
|
*/
|
|
41126
41713
|
export namespace UploadCaptureResult {
|
|
41127
41714
|
/**
|
|
41715
|
+
* The capture was successfully uploaded and registered as an asset.
|
|
41716
|
+
*
|
|
41128
41717
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UploadCaptureResult#Success)
|
|
41129
41718
|
*/
|
|
41130
41719
|
export interface Success extends globalThis.EnumItem {
|
|
@@ -41134,6 +41723,8 @@ declare namespace Enum {
|
|
|
41134
41723
|
}
|
|
41135
41724
|
export const Success: Success;
|
|
41136
41725
|
/**
|
|
41726
|
+
* The experience has not been granted developer gallery read and upload permission, so the capture cannot be uploaded.
|
|
41727
|
+
*
|
|
41137
41728
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UploadCaptureResult#NeedPermission)
|
|
41138
41729
|
*/
|
|
41139
41730
|
export interface NeedPermission extends globalThis.EnumItem {
|
|
@@ -41143,6 +41734,8 @@ declare namespace Enum {
|
|
|
41143
41734
|
}
|
|
41144
41735
|
export const NeedPermission: NeedPermission;
|
|
41145
41736
|
/**
|
|
41737
|
+
* The capture was rejected by Roblox content moderation and cannot be uploaded.
|
|
41738
|
+
*
|
|
41146
41739
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UploadCaptureResult#CaptureModerated)
|
|
41147
41740
|
*/
|
|
41148
41741
|
export interface CaptureModerated extends globalThis.EnumItem {
|
|
@@ -41152,6 +41745,8 @@ declare namespace Enum {
|
|
|
41152
41745
|
}
|
|
41153
41746
|
export const CaptureModerated: CaptureModerated;
|
|
41154
41747
|
/**
|
|
41748
|
+
* The capture no longer exists in the user's gallery and cannot be uploaded.
|
|
41749
|
+
*
|
|
41155
41750
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UploadCaptureResult#CaptureNotInGallery)
|
|
41156
41751
|
*/
|
|
41157
41752
|
export interface CaptureNotInGallery extends globalThis.EnumItem {
|
|
@@ -41161,6 +41756,8 @@ declare namespace Enum {
|
|
|
41161
41756
|
}
|
|
41162
41757
|
export const CaptureNotInGallery: CaptureNotInGallery;
|
|
41163
41758
|
/**
|
|
41759
|
+
* The capture is not eligible for upload to this experience, either because it is a permanent system capture or the experience permissions grant was rejected.
|
|
41760
|
+
*
|
|
41164
41761
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UploadCaptureResult#IneligibleCapture)
|
|
41165
41762
|
*/
|
|
41166
41763
|
export interface IneligibleCapture extends globalThis.EnumItem {
|
|
@@ -41170,6 +41767,8 @@ declare namespace Enum {
|
|
|
41170
41767
|
}
|
|
41171
41768
|
export const IneligibleCapture: IneligibleCapture;
|
|
41172
41769
|
/**
|
|
41770
|
+
* The user has reached their daily capture upload quota and the upload was not completed.
|
|
41771
|
+
*
|
|
41173
41772
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UploadCaptureResult#UploadQuotaReached)
|
|
41174
41773
|
*/
|
|
41175
41774
|
export interface UploadQuotaReached extends globalThis.EnumItem {
|
|
@@ -41179,6 +41778,8 @@ declare namespace Enum {
|
|
|
41179
41778
|
}
|
|
41180
41779
|
export const UploadQuotaReached: UploadQuotaReached;
|
|
41181
41780
|
/**
|
|
41781
|
+
* The upload is still in progress and the asset has not yet been assigned an ID; poll `CaptureService:CheckUploadCaptureStatusAsync()` again to check for completion.
|
|
41782
|
+
*
|
|
41182
41783
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UploadCaptureResult#UploadPending)
|
|
41183
41784
|
*/
|
|
41184
41785
|
export interface UploadPending extends globalThis.EnumItem {
|
|
@@ -41188,6 +41789,8 @@ declare namespace Enum {
|
|
|
41188
41789
|
}
|
|
41189
41790
|
export const UploadPending: UploadPending;
|
|
41190
41791
|
/**
|
|
41792
|
+
* The upload completed but a backend processing error occurred, so the capture was not saved as an asset.
|
|
41793
|
+
*
|
|
41191
41794
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UploadCaptureResult#UploadFailed)
|
|
41192
41795
|
*/
|
|
41193
41796
|
export interface UploadFailed extends globalThis.EnumItem {
|
|
@@ -42615,10 +43218,14 @@ declare namespace Enum {
|
|
|
42615
43218
|
}
|
|
42616
43219
|
export type VideoDeviceCaptureQuality = VideoDeviceCaptureQuality.Default | VideoDeviceCaptureQuality.Low | VideoDeviceCaptureQuality.Medium | VideoDeviceCaptureQuality.High;
|
|
42617
43220
|
/**
|
|
43221
|
+
* Indicates the result of a video operation in the engine's video subsystem.
|
|
43222
|
+
*
|
|
42618
43223
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoError)
|
|
42619
43224
|
*/
|
|
42620
43225
|
export namespace VideoError {
|
|
42621
43226
|
/**
|
|
43227
|
+
* The video operation completed successfully without error.
|
|
43228
|
+
*
|
|
42622
43229
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoError#Ok)
|
|
42623
43230
|
*/
|
|
42624
43231
|
export interface Ok extends globalThis.EnumItem {
|
|
@@ -42628,6 +43235,8 @@ declare namespace Enum {
|
|
|
42628
43235
|
}
|
|
42629
43236
|
export const Ok: Ok;
|
|
42630
43237
|
/**
|
|
43238
|
+
* The end of the video stream or file has been reached.
|
|
43239
|
+
*
|
|
42631
43240
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoError#Eof)
|
|
42632
43241
|
*/
|
|
42633
43242
|
export interface Eof extends globalThis.EnumItem {
|
|
@@ -42637,6 +43246,8 @@ declare namespace Enum {
|
|
|
42637
43246
|
}
|
|
42638
43247
|
export const Eof: Eof;
|
|
42639
43248
|
/**
|
|
43249
|
+
* No data is available at this moment; the caller should retry the operation.
|
|
43250
|
+
*
|
|
42640
43251
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoError#EAgain)
|
|
42641
43252
|
*/
|
|
42642
43253
|
export interface EAgain extends globalThis.EnumItem {
|
|
@@ -42646,6 +43257,8 @@ declare namespace Enum {
|
|
|
42646
43257
|
}
|
|
42647
43258
|
export const EAgain: EAgain;
|
|
42648
43259
|
/**
|
|
43260
|
+
* An invalid or out-of-range parameter was supplied to the video operation.
|
|
43261
|
+
*
|
|
42649
43262
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoError#BadParameter)
|
|
42650
43263
|
*/
|
|
42651
43264
|
export interface BadParameter extends globalThis.EnumItem {
|
|
@@ -42655,6 +43268,8 @@ declare namespace Enum {
|
|
|
42655
43268
|
}
|
|
42656
43269
|
export const BadParameter: BadParameter;
|
|
42657
43270
|
/**
|
|
43271
|
+
* A memory allocation required for the video operation failed.
|
|
43272
|
+
*
|
|
42658
43273
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoError#AllocFailed)
|
|
42659
43274
|
*/
|
|
42660
43275
|
export interface AllocFailed extends globalThis.EnumItem {
|
|
@@ -42664,6 +43279,8 @@ declare namespace Enum {
|
|
|
42664
43279
|
}
|
|
42665
43280
|
export const AllocFailed: AllocFailed;
|
|
42666
43281
|
/**
|
|
43282
|
+
* The video codec failed to initialize.
|
|
43283
|
+
*
|
|
42667
43284
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoError#CodecInitFailed)
|
|
42668
43285
|
*/
|
|
42669
43286
|
export interface CodecInitFailed extends globalThis.EnumItem {
|
|
@@ -42673,6 +43290,8 @@ declare namespace Enum {
|
|
|
42673
43290
|
}
|
|
42674
43291
|
export const CodecInitFailed: CodecInitFailed;
|
|
42675
43292
|
/**
|
|
43293
|
+
* The video codec failed to shut down cleanly.
|
|
43294
|
+
*
|
|
42676
43295
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoError#CodecCloseFailed)
|
|
42677
43296
|
*/
|
|
42678
43297
|
export interface CodecCloseFailed extends globalThis.EnumItem {
|
|
@@ -42682,6 +43301,8 @@ declare namespace Enum {
|
|
|
42682
43301
|
}
|
|
42683
43302
|
export const CodecCloseFailed: CodecCloseFailed;
|
|
42684
43303
|
/**
|
|
43304
|
+
* The video decoder failed to decode a frame from the stream.
|
|
43305
|
+
*
|
|
42685
43306
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoError#DecodeFailed)
|
|
42686
43307
|
*/
|
|
42687
43308
|
export interface DecodeFailed extends globalThis.EnumItem {
|
|
@@ -42691,6 +43312,8 @@ declare namespace Enum {
|
|
|
42691
43312
|
}
|
|
42692
43313
|
export const DecodeFailed: DecodeFailed;
|
|
42693
43314
|
/**
|
|
43315
|
+
* Parsing the video stream or container format failed.
|
|
43316
|
+
*
|
|
42694
43317
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoError#ParsingFailed)
|
|
42695
43318
|
*/
|
|
42696
43319
|
export interface ParsingFailed extends globalThis.EnumItem {
|
|
@@ -42700,6 +43323,8 @@ declare namespace Enum {
|
|
|
42700
43323
|
}
|
|
42701
43324
|
export const ParsingFailed: ParsingFailed;
|
|
42702
43325
|
/**
|
|
43326
|
+
* The requested video operation or format is not supported on this platform.
|
|
43327
|
+
*
|
|
42703
43328
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoError#Unsupported)
|
|
42704
43329
|
*/
|
|
42705
43330
|
export interface Unsupported extends globalThis.EnumItem {
|
|
@@ -42709,6 +43334,8 @@ declare namespace Enum {
|
|
|
42709
43334
|
}
|
|
42710
43335
|
export const Unsupported: Unsupported;
|
|
42711
43336
|
/**
|
|
43337
|
+
* A generic or unclassified error occurred in the video subsystem.
|
|
43338
|
+
*
|
|
42712
43339
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoError#Generic)
|
|
42713
43340
|
*/
|
|
42714
43341
|
export interface Generic extends globalThis.EnumItem {
|
|
@@ -42718,6 +43345,8 @@ declare namespace Enum {
|
|
|
42718
43345
|
}
|
|
42719
43346
|
export const Generic: Generic;
|
|
42720
43347
|
/**
|
|
43348
|
+
* The video asset could not be downloaded.
|
|
43349
|
+
*
|
|
42721
43350
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoError#DownloadFailed)
|
|
42722
43351
|
*/
|
|
42723
43352
|
export interface DownloadFailed extends globalThis.EnumItem {
|
|
@@ -42727,6 +43356,8 @@ declare namespace Enum {
|
|
|
42727
43356
|
}
|
|
42728
43357
|
export const DownloadFailed: DownloadFailed;
|
|
42729
43358
|
/**
|
|
43359
|
+
* The requested video stream could not be found.
|
|
43360
|
+
*
|
|
42730
43361
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoError#StreamNotFound)
|
|
42731
43362
|
*/
|
|
42732
43363
|
export interface StreamNotFound extends globalThis.EnumItem {
|
|
@@ -42736,6 +43367,8 @@ declare namespace Enum {
|
|
|
42736
43367
|
}
|
|
42737
43368
|
export const StreamNotFound: StreamNotFound;
|
|
42738
43369
|
/**
|
|
43370
|
+
* The video encoder failed to encode a frame.
|
|
43371
|
+
*
|
|
42739
43372
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoError#EncodeFailed)
|
|
42740
43373
|
*/
|
|
42741
43374
|
export interface EncodeFailed extends globalThis.EnumItem {
|
|
@@ -42745,6 +43378,8 @@ declare namespace Enum {
|
|
|
42745
43378
|
}
|
|
42746
43379
|
export const EncodeFailed: EncodeFailed;
|
|
42747
43380
|
/**
|
|
43381
|
+
* Creating a required video resource or object failed.
|
|
43382
|
+
*
|
|
42748
43383
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoError#CreateFailed)
|
|
42749
43384
|
*/
|
|
42750
43385
|
export interface CreateFailed extends globalThis.EnumItem {
|
|
@@ -42754,6 +43389,8 @@ declare namespace Enum {
|
|
|
42754
43389
|
}
|
|
42755
43390
|
export const CreateFailed: CreateFailed;
|
|
42756
43391
|
/**
|
|
43392
|
+
* The video operation was denied because the required permission, such as camera access, has not been granted.
|
|
43393
|
+
*
|
|
42757
43394
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoError#NoPermission)
|
|
42758
43395
|
*/
|
|
42759
43396
|
export interface NoPermission extends globalThis.EnumItem {
|
|
@@ -42763,6 +43400,8 @@ declare namespace Enum {
|
|
|
42763
43400
|
}
|
|
42764
43401
|
export const NoPermission: NoPermission;
|
|
42765
43402
|
/**
|
|
43403
|
+
* The required video service is unavailable on this device or platform.
|
|
43404
|
+
*
|
|
42766
43405
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoError#NoService)
|
|
42767
43406
|
*/
|
|
42768
43407
|
export interface NoService extends globalThis.EnumItem {
|
|
@@ -42772,6 +43411,8 @@ declare namespace Enum {
|
|
|
42772
43411
|
}
|
|
42773
43412
|
export const NoService: NoService;
|
|
42774
43413
|
/**
|
|
43414
|
+
* Releasing a video resource failed.
|
|
43415
|
+
*
|
|
42775
43416
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoError#ReleaseFailed)
|
|
42776
43417
|
*/
|
|
42777
43418
|
export interface ReleaseFailed extends globalThis.EnumItem {
|
|
@@ -42781,6 +43422,8 @@ declare namespace Enum {
|
|
|
42781
43422
|
}
|
|
42782
43423
|
export const ReleaseFailed: ReleaseFailed;
|
|
42783
43424
|
/**
|
|
43425
|
+
* An unknown or unrecognized error occurred; this value covers errors that have no specific classification in this enum.
|
|
43426
|
+
*
|
|
42784
43427
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoError#Unknown)
|
|
42785
43428
|
*/
|
|
42786
43429
|
export interface Unknown extends globalThis.EnumItem {
|
|
@@ -42949,10 +43592,14 @@ declare namespace Enum {
|
|
|
42949
43592
|
}
|
|
42950
43593
|
export type VirtualCursorMode = VirtualCursorMode.Default | VirtualCursorMode.Disabled | VirtualCursorMode.Enabled;
|
|
42951
43594
|
/**
|
|
43595
|
+
* Describes the current operational state of a `VirtualInputManager`.
|
|
43596
|
+
*
|
|
42952
43597
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VirtualInputMode)
|
|
42953
43598
|
*/
|
|
42954
43599
|
export namespace VirtualInputMode {
|
|
42955
43600
|
/**
|
|
43601
|
+
* The `VirtualInputManager` is idle and neither recording nor playing back input.
|
|
43602
|
+
*
|
|
42956
43603
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VirtualInputMode#None)
|
|
42957
43604
|
*/
|
|
42958
43605
|
export interface None extends globalThis.EnumItem {
|
|
@@ -42962,6 +43609,8 @@ declare namespace Enum {
|
|
|
42962
43609
|
}
|
|
42963
43610
|
export const None: None;
|
|
42964
43611
|
/**
|
|
43612
|
+
* The `VirtualInputManager` is actively capturing input events into a sequence.
|
|
43613
|
+
*
|
|
42965
43614
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VirtualInputMode#Recording)
|
|
42966
43615
|
*/
|
|
42967
43616
|
export interface Recording extends globalThis.EnumItem {
|
|
@@ -42971,6 +43620,8 @@ declare namespace Enum {
|
|
|
42971
43620
|
}
|
|
42972
43621
|
export const Recording: Recording;
|
|
42973
43622
|
/**
|
|
43623
|
+
* The `VirtualInputManager` is replaying a previously recorded input sequence.
|
|
43624
|
+
*
|
|
42974
43625
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VirtualInputMode#Playing)
|
|
42975
43626
|
*/
|
|
42976
43627
|
export interface Playing extends globalThis.EnumItem {
|