@rbxts/types 1.0.890 → 1.0.892
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 +280 -61
- package/include/generated/PluginSecurity.d.ts +77 -3
- package/include/generated/enums.d.ts +244 -39
- package/package.json +1 -1
|
@@ -6,6 +6,7 @@ interface Services {
|
|
|
6
6
|
AccountService: AccountService;
|
|
7
7
|
AchievementService: AchievementService;
|
|
8
8
|
ActivityHistoryEventService: ActivityHistoryEventService;
|
|
9
|
+
AdService: AdService;
|
|
9
10
|
AnalyticsService: AnalyticsService;
|
|
10
11
|
AnimationClipProvider: AnimationClipProvider;
|
|
11
12
|
AnimationFromVideoCreatorService: AnimationFromVideoCreatorService;
|
|
@@ -191,6 +192,7 @@ interface Services {
|
|
|
191
192
|
StudioPublishService: StudioPublishService;
|
|
192
193
|
StudioScriptDebugEventListener: StudioScriptDebugEventListener;
|
|
193
194
|
StudioSdkService: StudioSdkService;
|
|
195
|
+
StudioTestService: StudioTestService;
|
|
194
196
|
StudioUserService: StudioUserService;
|
|
195
197
|
StudioWidgetsService: StudioWidgetsService;
|
|
196
198
|
StylingService: StylingService;
|
|
@@ -427,6 +429,7 @@ interface CreatableInstances {
|
|
|
427
429
|
Pose: Pose;
|
|
428
430
|
PrismaticConstraint: PrismaticConstraint;
|
|
429
431
|
ProximityPrompt: ProximityPrompt;
|
|
432
|
+
PyramidHandleAdornment: PyramidHandleAdornment;
|
|
430
433
|
RayValue: RayValue;
|
|
431
434
|
RelativeGui: RelativeGui;
|
|
432
435
|
RemoteEvent: RemoteEvent;
|
|
@@ -800,6 +803,8 @@ interface AnimationNode extends RBXObject {
|
|
|
800
803
|
readonly _nominal_AnimationNode: unique symbol;
|
|
801
804
|
}
|
|
802
805
|
/**
|
|
806
|
+
* A class which defines a piece of content, such as a screnshot or video, taken in-experience.
|
|
807
|
+
*
|
|
803
808
|
* - **Tags**: NotCreatable, NotReplicated
|
|
804
809
|
*
|
|
805
810
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Capture)
|
|
@@ -850,6 +855,8 @@ interface Capture extends RBXObject {
|
|
|
850
855
|
readonly SourceUniverseId: number;
|
|
851
856
|
}
|
|
852
857
|
/**
|
|
858
|
+
* A child class of `Capture` for screenshots.
|
|
859
|
+
*
|
|
853
860
|
* - **Tags**: NotCreatable, NotReplicated
|
|
854
861
|
*
|
|
855
862
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScreenshotCapture)
|
|
@@ -865,6 +872,8 @@ interface ScreenshotCapture extends Capture {
|
|
|
865
872
|
readonly _nominal_ScreenshotCapture: unique symbol;
|
|
866
873
|
}
|
|
867
874
|
/**
|
|
875
|
+
* A child class of `Capture` for videos.
|
|
876
|
+
*
|
|
868
877
|
* - **Tags**: NotCreatable, NotReplicated
|
|
869
878
|
*
|
|
870
879
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoCapture)
|
|
@@ -2383,12 +2392,6 @@ interface Instance extends RBXObject {
|
|
|
2383
2392
|
* @returns The full name of the `Instance`.
|
|
2384
2393
|
*/
|
|
2385
2394
|
GetFullName(this: Instance): string;
|
|
2386
|
-
/**
|
|
2387
|
-
* - **ThreadSafety**: Unsafe
|
|
2388
|
-
*
|
|
2389
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#GetPredictionMode)
|
|
2390
|
-
*/
|
|
2391
|
-
GetPredictionMode(this: Instance): Enum.PredictionMode;
|
|
2392
2395
|
/**
|
|
2393
2396
|
* Returns the styled or explicitly modified value of the specified property, or else the default property value if it hasn't been styled/modified.
|
|
2394
2397
|
*
|
|
@@ -2450,12 +2453,6 @@ interface Instance extends RBXObject {
|
|
|
2450
2453
|
* @returns True if the `Instance` is a descendant of the given ancestor.
|
|
2451
2454
|
*/
|
|
2452
2455
|
IsDescendantOf(this: Instance, ancestor: Instance): boolean;
|
|
2453
|
-
/**
|
|
2454
|
-
* - **ThreadSafety**: Unsafe
|
|
2455
|
-
*
|
|
2456
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#IsPredicted)
|
|
2457
|
-
*/
|
|
2458
|
-
IsPredicted(this: Instance): boolean;
|
|
2459
2456
|
/**
|
|
2460
2457
|
* Returns `true` if the value stored in the specified property is not equal to the code-instantiated default.
|
|
2461
2458
|
*
|
|
@@ -2508,12 +2505,6 @@ interface Instance extends RBXObject {
|
|
|
2508
2505
|
* @param value The value to set the specified attribute to.
|
|
2509
2506
|
*/
|
|
2510
2507
|
SetAttribute(this: Instance, attribute: string, value: AttributeValue | undefined): void;
|
|
2511
|
-
/**
|
|
2512
|
-
* - **ThreadSafety**: Unsafe
|
|
2513
|
-
*
|
|
2514
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#SetPredictionMode)
|
|
2515
|
-
*/
|
|
2516
|
-
SetPredictionMode(this: Instance, mode: CastsToEnum<Enum.PredictionMode>): void;
|
|
2517
2508
|
/**
|
|
2518
2509
|
* Returns the child of the `Instance` with the given name. If the child does not exist, it will yield the current thread until it does.
|
|
2519
2510
|
*
|
|
@@ -2855,6 +2846,102 @@ interface AdPortal extends Instance {
|
|
|
2855
2846
|
*/
|
|
2856
2847
|
readonly Status: Enum.AdUnitStatus;
|
|
2857
2848
|
}
|
|
2849
|
+
/**
|
|
2850
|
+
* A class that allows the display of mobile video ads.
|
|
2851
|
+
*
|
|
2852
|
+
* - **Tags**: NotCreatable, Service
|
|
2853
|
+
*
|
|
2854
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdService)
|
|
2855
|
+
*/
|
|
2856
|
+
interface AdService extends Instance {
|
|
2857
|
+
/**
|
|
2858
|
+
* **DO NOT USE!**
|
|
2859
|
+
*
|
|
2860
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
2861
|
+
* @hidden
|
|
2862
|
+
* @deprecated
|
|
2863
|
+
*/
|
|
2864
|
+
readonly _nominal_AdService: unique symbol;
|
|
2865
|
+
/**
|
|
2866
|
+
* Creates a reward to give users who watch an entire video ad.
|
|
2867
|
+
*
|
|
2868
|
+
* - **ThreadSafety**: Unsafe
|
|
2869
|
+
*
|
|
2870
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdService#CreateAdRewardFromDevProductId)
|
|
2871
|
+
* @param this A class that allows the display of mobile video ads.
|
|
2872
|
+
* @param devProductId The ID of the developer product you want to grant as a reward.
|
|
2873
|
+
*/
|
|
2874
|
+
CreateAdRewardFromDevProductId(this: AdService, devProductId: number): AdReward;
|
|
2875
|
+
/**
|
|
2876
|
+
* **Deprecated:** `ShowVideoAd` has been decommissioned and is no longer operational.
|
|
2877
|
+
*
|
|
2878
|
+
* Show mobile video advertisements.
|
|
2879
|
+
*
|
|
2880
|
+
* - **ThreadSafety**: Unsafe
|
|
2881
|
+
* - **Tags**:
|
|
2882
|
+
*
|
|
2883
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdService#ShowVideoAd)
|
|
2884
|
+
* @param this A class that allows the display of mobile video ads.
|
|
2885
|
+
*
|
|
2886
|
+
* @deprecated
|
|
2887
|
+
*/
|
|
2888
|
+
ShowVideoAd(this: AdService): void;
|
|
2889
|
+
/**
|
|
2890
|
+
* - **ThreadSafety**: Unsafe
|
|
2891
|
+
*
|
|
2892
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdService#UnregisterAdOpportunity)
|
|
2893
|
+
* @param this A class that allows the display of mobile video ads.
|
|
2894
|
+
* @param instance
|
|
2895
|
+
*/
|
|
2896
|
+
UnregisterAdOpportunity(this: AdService, instance: Instance): void;
|
|
2897
|
+
/**
|
|
2898
|
+
* Checks if a video ad is available to be played to the current user inside the experience.
|
|
2899
|
+
*
|
|
2900
|
+
* - **ThreadSafety**: Unsafe
|
|
2901
|
+
* - **Tags**: Yields
|
|
2902
|
+
*
|
|
2903
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdService#GetAdAvailabilityNowAsync)
|
|
2904
|
+
* @param this A class that allows the display of mobile video ads.
|
|
2905
|
+
* @param adFormat The format of the requested ad. For example, `RewardedVideo`.
|
|
2906
|
+
*/
|
|
2907
|
+
GetAdAvailabilityNowAsync(this: AdService, adFormat: CastsToEnum<Enum.AdFormat>): unknown;
|
|
2908
|
+
/**
|
|
2909
|
+
* - **ThreadSafety**: Unsafe
|
|
2910
|
+
* - **Tags**: Yields
|
|
2911
|
+
*
|
|
2912
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdService#RegisterAdOpportunityAsync)
|
|
2913
|
+
* @param this A class that allows the display of mobile video ads.
|
|
2914
|
+
* @param instance
|
|
2915
|
+
* @param placementId
|
|
2916
|
+
*/
|
|
2917
|
+
RegisterAdOpportunityAsync(this: AdService, instance: Instance, placementId?: number): void;
|
|
2918
|
+
/**
|
|
2919
|
+
* Plays the video ad to the current user inside the experience.
|
|
2920
|
+
*
|
|
2921
|
+
* - **ThreadSafety**: Unsafe
|
|
2922
|
+
* - **Tags**: Yields
|
|
2923
|
+
*
|
|
2924
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdService#ShowRewardedVideoAdAsync)
|
|
2925
|
+
* @param this A class that allows the display of mobile video ads.
|
|
2926
|
+
* @param player The `Player` object for whom you are fetching the ad for.
|
|
2927
|
+
* @param reward The reward object for the reward you want to grant the user who watches an ad to completion.
|
|
2928
|
+
* @param placementId The ID of the placement of the rewarded video ad inside the experience. Allows for reporting on the performance of individual ad placements.
|
|
2929
|
+
*/
|
|
2930
|
+
ShowRewardedVideoAdAsync(this: AdService, player: Player, reward: AdReward, placementId?: number): Enum.ShowAdResult;
|
|
2931
|
+
/**
|
|
2932
|
+
* **Deprecated:** `VideoAdClosed` has been decommissioned and is no longer operational.
|
|
2933
|
+
*
|
|
2934
|
+
* Fires when an `AdService` video closes.
|
|
2935
|
+
*
|
|
2936
|
+
* - **ThreadSafety**: Unsafe
|
|
2937
|
+
* - **Tags**:
|
|
2938
|
+
*
|
|
2939
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdService#VideoAdClosed)
|
|
2940
|
+
*
|
|
2941
|
+
* @deprecated
|
|
2942
|
+
*/
|
|
2943
|
+
readonly VideoAdClosed: RBXScriptSignal<(adShown: boolean) => void>;
|
|
2944
|
+
}
|
|
2858
2945
|
/**
|
|
2859
2946
|
* Collection of methods that allows developers to track how users interact with their experiences.
|
|
2860
2947
|
*
|
|
@@ -10106,6 +10193,9 @@ interface CaptureService extends Instance {
|
|
|
10106
10193
|
* - **Tags**: Yields
|
|
10107
10194
|
*
|
|
10108
10195
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#PromptCaptureGalleryPermissionAsync)
|
|
10196
|
+
* @param this A service which provides control over screenshot and video capture features.
|
|
10197
|
+
* @param captureGalleryPermission An `CaptureGalleryPermission` representing the type of access for which the user will be prompted.
|
|
10198
|
+
* @returns A boolean representing whether or not the user has allowed access to their captures.
|
|
10109
10199
|
*/
|
|
10110
10200
|
PromptCaptureGalleryPermissionAsync(this: CaptureService, captureGalleryPermission: CastsToEnum<Enum.CaptureGalleryPermission>): boolean;
|
|
10111
10201
|
/**
|
|
@@ -10113,6 +10203,9 @@ interface CaptureService extends Instance {
|
|
|
10113
10203
|
* - **Tags**: Yields
|
|
10114
10204
|
*
|
|
10115
10205
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#ReadCapturesFromGalleryAsync)
|
|
10206
|
+
* @param this A service which provides control over screenshot and video capture features.
|
|
10207
|
+
* @param captureTypeFilters An array of `CaptureType`.
|
|
10208
|
+
* @returns Tuple of (result: `ReadCapturesFromGalleryResult`, capturesPages: `CapturesPages`)
|
|
10116
10209
|
*/
|
|
10117
10210
|
ReadCapturesFromGalleryAsync(this: CaptureService, captureTypeFilters?: Array<unknown>): unknown;
|
|
10118
10211
|
/**
|
|
@@ -10132,6 +10225,9 @@ interface CaptureService extends Instance {
|
|
|
10132
10225
|
* - **Tags**: Yields
|
|
10133
10226
|
*
|
|
10134
10227
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#UploadCaptureAsync)
|
|
10228
|
+
* @param this A service which provides control over screenshot and video capture features.
|
|
10229
|
+
* @param capture a capture object of type `Capture`
|
|
10230
|
+
* @returns Tuple of (result: `UploadCaptureResult`, assetId: `number`)
|
|
10135
10231
|
*/
|
|
10136
10232
|
UploadCaptureAsync(this: CaptureService, capture: Capture): unknown;
|
|
10137
10233
|
/**
|
|
@@ -15736,7 +15832,7 @@ interface FaceControls extends Instance {
|
|
|
15736
15832
|
readonly _nominal_FaceControls: unique symbol;
|
|
15737
15833
|
}
|
|
15738
15834
|
/**
|
|
15739
|
-
*
|
|
15835
|
+
* An abstract class from which the `Decal` and `Texture` classes inherit.
|
|
15740
15836
|
*
|
|
15741
15837
|
* - **Tags**: NotCreatable, NotBrowsable
|
|
15742
15838
|
*
|
|
@@ -15752,7 +15848,7 @@ interface FaceInstance extends Instance {
|
|
|
15752
15848
|
*/
|
|
15753
15849
|
readonly _nominal_FaceInstance: unique symbol;
|
|
15754
15850
|
/**
|
|
15755
|
-
* Sets
|
|
15851
|
+
* Sets which face of the parent `BasePart` the object appears on.
|
|
15756
15852
|
*
|
|
15757
15853
|
* - **ThreadSafety**: ReadSafe
|
|
15758
15854
|
*
|
|
@@ -15761,7 +15857,7 @@ interface FaceInstance extends Instance {
|
|
|
15761
15857
|
Face: Enum.NormalId;
|
|
15762
15858
|
}
|
|
15763
15859
|
/**
|
|
15764
|
-
*
|
|
15860
|
+
* Applies an image texture to a face of a parent `BasePart`.
|
|
15765
15861
|
*
|
|
15766
15862
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal)
|
|
15767
15863
|
*/
|
|
@@ -15783,6 +15879,8 @@ interface Decal extends FaceInstance {
|
|
|
15783
15879
|
*/
|
|
15784
15880
|
Color3: Color3;
|
|
15785
15881
|
/**
|
|
15882
|
+
* Content ID that determines the color and opacity of the surface.
|
|
15883
|
+
*
|
|
15786
15884
|
* - **ThreadSafety**: ReadSafe
|
|
15787
15885
|
* - **Tags**: NotReplicated
|
|
15788
15886
|
*
|
|
@@ -15790,6 +15888,8 @@ interface Decal extends FaceInstance {
|
|
|
15790
15888
|
*/
|
|
15791
15889
|
ColorMap: ContentId;
|
|
15792
15890
|
/**
|
|
15891
|
+
* `Content` object that determines the color and opacity of the surface.
|
|
15892
|
+
*
|
|
15793
15893
|
* - **ThreadSafety**: ReadSafe
|
|
15794
15894
|
* - **Tags**: NotReplicated
|
|
15795
15895
|
*
|
|
@@ -15797,7 +15897,7 @@ interface Decal extends FaceInstance {
|
|
|
15797
15897
|
*/
|
|
15798
15898
|
ColorMapContent: Content;
|
|
15799
15899
|
/**
|
|
15800
|
-
* Acts as a multiplier for the decal's `
|
|
15900
|
+
* Acts as a multiplier for the decal's `Transparency` property. The effects are only visible to the local player.
|
|
15801
15901
|
*
|
|
15802
15902
|
* - **ThreadSafety**: ReadSafe
|
|
15803
15903
|
* - **Tags**: Hidden, NotReplicated
|
|
@@ -15835,7 +15935,7 @@ interface Decal extends FaceInstance {
|
|
|
15835
15935
|
*/
|
|
15836
15936
|
Shiny: number;
|
|
15837
15937
|
/**
|
|
15838
|
-
* **Deprecated:** This property no longer functions correctly and is deprecated. It should not be used in new work.
|
|
15938
|
+
* **Deprecated:** This property no longer functions correctly and is deprecated. It should not be used in new work.
|
|
15839
15939
|
*
|
|
15840
15940
|
* - **ThreadSafety**: ReadSafe
|
|
15841
15941
|
* - **Tags**: NotReplicated
|
|
@@ -15846,7 +15946,7 @@ interface Decal extends FaceInstance {
|
|
|
15846
15946
|
*/
|
|
15847
15947
|
Specular: number;
|
|
15848
15948
|
/**
|
|
15849
|
-
* The
|
|
15949
|
+
* The content ID of the image to be applied by the `Decal`.
|
|
15850
15950
|
*
|
|
15851
15951
|
* - **ThreadSafety**: ReadSafe
|
|
15852
15952
|
*
|
|
@@ -15854,7 +15954,7 @@ interface Decal extends FaceInstance {
|
|
|
15854
15954
|
*/
|
|
15855
15955
|
Texture: ContentId;
|
|
15856
15956
|
/**
|
|
15857
|
-
* The texture content displayed by the Decal
|
|
15957
|
+
* The texture content displayed by the `Decal`.
|
|
15858
15958
|
*
|
|
15859
15959
|
* - **ThreadSafety**: ReadSafe
|
|
15860
15960
|
*
|
|
@@ -15862,7 +15962,7 @@ interface Decal extends FaceInstance {
|
|
|
15862
15962
|
*/
|
|
15863
15963
|
TextureContent: Content;
|
|
15864
15964
|
/**
|
|
15865
|
-
* Determines the transparency of the `Decal
|
|
15965
|
+
* Determines the transparency of the `Decal`.
|
|
15866
15966
|
*
|
|
15867
15967
|
* - **ThreadSafety**: ReadSafe
|
|
15868
15968
|
*
|
|
@@ -15870,19 +15970,23 @@ interface Decal extends FaceInstance {
|
|
|
15870
15970
|
*/
|
|
15871
15971
|
Transparency: number;
|
|
15872
15972
|
/**
|
|
15973
|
+
* Shifts the UV coordinates by adding an offset before texture mapping.
|
|
15974
|
+
*
|
|
15873
15975
|
* - **ThreadSafety**: ReadSafe
|
|
15874
15976
|
*
|
|
15875
15977
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal#UVOffset)
|
|
15876
15978
|
*/
|
|
15877
15979
|
UVOffset: Vector2;
|
|
15878
15980
|
/**
|
|
15981
|
+
* Stretches or compresses the UV coordinates by multiplying a scale factor.
|
|
15982
|
+
*
|
|
15879
15983
|
* - **ThreadSafety**: ReadSafe
|
|
15880
15984
|
*
|
|
15881
15985
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal#UVScale)
|
|
15882
15986
|
*/
|
|
15883
15987
|
UVScale: Vector2;
|
|
15884
15988
|
/**
|
|
15885
|
-
* Determines the rendering order when multiple
|
|
15989
|
+
* Determines the rendering order when multiple decals are assigned the same face.
|
|
15886
15990
|
*
|
|
15887
15991
|
* - **ThreadSafety**: ReadSafe
|
|
15888
15992
|
*
|
|
@@ -15891,7 +15995,7 @@ interface Decal extends FaceInstance {
|
|
|
15891
15995
|
ZIndex: number;
|
|
15892
15996
|
}
|
|
15893
15997
|
/**
|
|
15894
|
-
*
|
|
15998
|
+
* Applies a repeating image texture to the face of a parent `BasePart`.
|
|
15895
15999
|
*
|
|
15896
16000
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Texture)
|
|
15897
16001
|
*/
|
|
@@ -16961,6 +17065,13 @@ interface GroupService extends Instance {
|
|
|
16961
17065
|
* @returns An array of dictionaries containing information on the group's the `Player` is a member of.
|
|
16962
17066
|
*/
|
|
16963
17067
|
GetGroupsAsync(this: GroupService, userId: number): Array<GetGroupsAsyncResult>;
|
|
17068
|
+
/**
|
|
17069
|
+
* - **ThreadSafety**: Unsafe
|
|
17070
|
+
* - **Tags**: Yields
|
|
17071
|
+
*
|
|
17072
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GroupService#PromptJoinAsync)
|
|
17073
|
+
*/
|
|
17074
|
+
PromptJoinAsync(this: GroupService, groupId: number): Enum.GroupMembershipStatus;
|
|
16964
17075
|
}
|
|
16965
17076
|
/**
|
|
16966
17077
|
* GuiBase is an abstract class which most graphical user interface objects inherit from.
|
|
@@ -20300,6 +20411,43 @@ interface LineHandleAdornment extends HandleAdornment {
|
|
|
20300
20411
|
*/
|
|
20301
20412
|
Thickness: number;
|
|
20302
20413
|
}
|
|
20414
|
+
/**
|
|
20415
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PyramidHandleAdornment)
|
|
20416
|
+
*/
|
|
20417
|
+
interface PyramidHandleAdornment extends HandleAdornment {
|
|
20418
|
+
/**
|
|
20419
|
+
* **DO NOT USE!**
|
|
20420
|
+
*
|
|
20421
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
20422
|
+
* @hidden
|
|
20423
|
+
* @deprecated
|
|
20424
|
+
*/
|
|
20425
|
+
readonly _nominal_PyramidHandleAdornment: unique symbol;
|
|
20426
|
+
/**
|
|
20427
|
+
* - **ThreadSafety**: ReadSafe
|
|
20428
|
+
*
|
|
20429
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PyramidHandleAdornment#Height)
|
|
20430
|
+
*/
|
|
20431
|
+
Height: number;
|
|
20432
|
+
/**
|
|
20433
|
+
* - **ThreadSafety**: ReadSafe
|
|
20434
|
+
*
|
|
20435
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PyramidHandleAdornment#Shading)
|
|
20436
|
+
*/
|
|
20437
|
+
Shading: Enum.AdornShading;
|
|
20438
|
+
/**
|
|
20439
|
+
* - **ThreadSafety**: ReadSafe
|
|
20440
|
+
*
|
|
20441
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PyramidHandleAdornment#Sides)
|
|
20442
|
+
*/
|
|
20443
|
+
Sides: number;
|
|
20444
|
+
/**
|
|
20445
|
+
* - **ThreadSafety**: ReadSafe
|
|
20446
|
+
*
|
|
20447
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PyramidHandleAdornment#Size)
|
|
20448
|
+
*/
|
|
20449
|
+
Size: number;
|
|
20450
|
+
}
|
|
20303
20451
|
/**
|
|
20304
20452
|
* The SphereHandleAdornment is a sphere that can be adorned to a BasePart.
|
|
20305
20453
|
*
|
|
@@ -27073,6 +27221,13 @@ interface MarketplaceService extends Instance {
|
|
|
27073
27221
|
* @returns Indicates whether the given player's inventory contains the given bundle.
|
|
27074
27222
|
*/
|
|
27075
27223
|
PlayerOwnsBundle(this: MarketplaceService, player: Player, bundleId: number): boolean;
|
|
27224
|
+
/**
|
|
27225
|
+
* - **ThreadSafety**: Unsafe
|
|
27226
|
+
* - **Tags**: Yields
|
|
27227
|
+
*
|
|
27228
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#RankProductsAsync)
|
|
27229
|
+
*/
|
|
27230
|
+
RankProductsAsync(this: MarketplaceService, productIdentifiers: Array<unknown>): Array<unknown>;
|
|
27076
27231
|
/**
|
|
27077
27232
|
* - **ThreadSafety**: Unsafe
|
|
27078
27233
|
* - **Tags**: Yields
|
|
@@ -32116,6 +32271,8 @@ interface BanHistoryPages extends Pages {
|
|
|
32116
32271
|
readonly _nominal_BanHistoryPages: unique symbol;
|
|
32117
32272
|
}
|
|
32118
32273
|
/**
|
|
32274
|
+
* A special version of the `Pages` class returned by `CaptureService.ReadCapturesFromGalleryAsync`.
|
|
32275
|
+
*
|
|
32119
32276
|
* - **Tags**: NotCreatable, NotReplicated
|
|
32120
32277
|
*
|
|
32121
32278
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CapturesPages)
|
|
@@ -32322,6 +32479,8 @@ interface OutfitPages extends Pages<ReadonlyArray<{
|
|
|
32322
32479
|
readonly _nominal_OutfitPages: unique symbol;
|
|
32323
32480
|
}
|
|
32324
32481
|
/**
|
|
32482
|
+
* A special version of the `Pages` class returned by `GenerateItemListAsync`.
|
|
32483
|
+
*
|
|
32325
32484
|
* - **Tags**: NotCreatable, NotReplicated
|
|
32326
32485
|
*
|
|
32327
32486
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationPages)
|
|
@@ -35648,6 +35807,8 @@ interface RTAnimationTracker extends Instance {
|
|
|
35648
35807
|
readonly TrackerPrompt: RBXScriptSignal<(prompt: Enum.TrackerPromptEvent) => void>;
|
|
35649
35808
|
}
|
|
35650
35809
|
/**
|
|
35810
|
+
* A service that provides an interface for you to manage and display personalized content recommendations.
|
|
35811
|
+
*
|
|
35651
35812
|
* - **Tags**: NotCreatable, Service
|
|
35652
35813
|
*
|
|
35653
35814
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService)
|
|
@@ -35665,22 +35826,28 @@ interface RecommendationService extends Instance {
|
|
|
35665
35826
|
* - **ThreadSafety**: Unsafe
|
|
35666
35827
|
*
|
|
35667
35828
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#LogActionEvent)
|
|
35668
|
-
* @param this
|
|
35669
|
-
* @param actionType
|
|
35670
|
-
* @param itemId
|
|
35671
|
-
* @param tracingId
|
|
35672
|
-
* @param actionEventDetails
|
|
35829
|
+
* @param this A service that provides an interface for you to manage and display personalized content recommendations.
|
|
35830
|
+
* @param actionType The enum for the type of action.
|
|
35831
|
+
* @param itemId The item ID returned from registration and `GenerateItemListAsync`.
|
|
35832
|
+
* @param tracingId The tracing ID returned from the `GenerateItemListAsync` response. Each item has a `TracingId`.
|
|
35833
|
+
* @param actionEventDetails A dictionary containing the following fields: - `Weight` — A number representing the weight of the action. Default is 1.
|
|
35834
|
+
* - `DestinationPlaceId` — The ID of the place the user was sent to after the action. Used for `Play`.
|
|
35835
|
+
* - `CommentText` — Any text associated with the action, such as a comment. Used for `Comment`.
|
|
35836
|
+
* - `ReactionType` — A string describing the type of reaction, for example, "like" or "dislike". Used for `AddReaction` or `RemoveReaction`.
|
|
35673
35837
|
*/
|
|
35674
35838
|
LogActionEvent(this: RecommendationService, actionType: CastsToEnum<Enum.RecommendationActionType>, itemId: string, tracingId: string, actionEventDetails?: object): void;
|
|
35675
35839
|
/**
|
|
35676
35840
|
* - **ThreadSafety**: Unsafe
|
|
35677
35841
|
*
|
|
35678
35842
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#LogImpressionEvent)
|
|
35679
|
-
* @param this
|
|
35680
|
-
* @param impressionType
|
|
35681
|
-
* @param itemId
|
|
35682
|
-
* @param tracingId
|
|
35683
|
-
* @param impressionEventDetails
|
|
35843
|
+
* @param this A service that provides an interface for you to manage and display personalized content recommendations.
|
|
35844
|
+
* @param impressionType The enum for the type of the impression.
|
|
35845
|
+
* @param itemId The item ID returned from registration and `GenerateItemListAsync`.
|
|
35846
|
+
* @param tracingId The tracing ID returned from the `GenerateItemListAsync` response. Each item has a `TracingId`.
|
|
35847
|
+
* @param impressionEventDetails A dictionary containing the following fields: - `Duration` — The duration of the impression in seconds.
|
|
35848
|
+
* - `Weight` — A number representing the weight of the impression. Default is 1.
|
|
35849
|
+
* - `ItemPosition` — The position of the item in the recommendation list.
|
|
35850
|
+
* - `DepartureIntent` — The `RecommendationDepartureIntent` indicating the user's intent when leaving a view. For example, `Positive` if the view is considered good.
|
|
35684
35851
|
*/
|
|
35685
35852
|
LogImpressionEvent(this: RecommendationService, impressionType: CastsToEnum<Enum.RecommendationImpressionType>, itemId: string, tracingId: string, impressionEventDetails?: object): void;
|
|
35686
35853
|
/**
|
|
@@ -35688,8 +35855,12 @@ interface RecommendationService extends Instance {
|
|
|
35688
35855
|
* - **Tags**: Yields
|
|
35689
35856
|
*
|
|
35690
35857
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#GenerateItemListAsync)
|
|
35691
|
-
* @param this
|
|
35692
|
-
* @param generateRecommendationItemListRequest
|
|
35858
|
+
* @param this A service that provides an interface for you to manage and display personalized content recommendations.
|
|
35859
|
+
* @param generateRecommendationItemListRequest A dictionary containing the following fields: - `ConfigName` — A unique ID for the specific configuration. This determines how the candidates are ranked.
|
|
35860
|
+
* - `LocationId` — A developer-defined string that specifies the location where the recommendation is used, such as `"For_you"` or `"Lobby"`. This parameter will not affect the items returned, and it can help you track the performance of multiple recommendation features within your experience. Recommendation metrics for each individual location will be displayed in the Creator Hub. `LocationId` **must** be a string and cannot be `"Other"` or `"other"` as these values are reserved by the Creator Hub.
|
|
35861
|
+
* - `PageSize` — The number of items returned for each page.
|
|
35862
|
+
* - `BoostCustomTags` — A list of string tags. Any item with this tag will be boosted in ranking. Note: only supports boosting one tag now.
|
|
35863
|
+
* - `CustomContexts` — A table of key-value pairs used to pass in additional context data for ranking. For example, `UserId` for a Server script.
|
|
35693
35864
|
*/
|
|
35694
35865
|
GenerateItemListAsync(this: RecommendationService, generateRecommendationItemListRequest: object): RecommendationPages;
|
|
35695
35866
|
/**
|
|
@@ -35697,6 +35868,9 @@ interface RecommendationService extends Instance {
|
|
|
35697
35868
|
* - **Tags**: Yields
|
|
35698
35869
|
*
|
|
35699
35870
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#GetRecommendationItemAsync)
|
|
35871
|
+
* @param this A service that provides an interface for you to manage and display personalized content recommendations.
|
|
35872
|
+
* @param itemId The ID of the item to retrieve.
|
|
35873
|
+
* @returns A dictionary representing the recommendation item with the following fields: - `ItemId` — The unique ID for the item. - `ReferenceId` — The developer-provided ID for the item. - `TracingId` — An ID for tracking recommendation sessions. This will be empty when fetching a single item directly. - `Creator` — A table containing the `CreatorId` and `CreatorType`. - `Attributes` — A list of content attributes associated with the item. - `CustomTags` — A list of custom string tags. - `Visibility` — An enum of type `RecommendationItemVisibility`.
|
|
35700
35874
|
*/
|
|
35701
35875
|
GetRecommendationItemAsync(this: RecommendationService, itemId: string): object;
|
|
35702
35876
|
/**
|
|
@@ -35704,9 +35878,17 @@ interface RecommendationService extends Instance {
|
|
|
35704
35878
|
* - **Tags**: Yields
|
|
35705
35879
|
*
|
|
35706
35880
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#RegisterItemAsync)
|
|
35707
|
-
* @param this
|
|
35708
|
-
* @param player
|
|
35709
|
-
* @param registerRecommendationItemsRequest
|
|
35881
|
+
* @param this A service that provides an interface for you to manage and display personalized content recommendations.
|
|
35882
|
+
* @param player The player who created the item.
|
|
35883
|
+
* @param registerRecommendationItemsRequest A dictionary containing the following fields: - `ContentType` — The `RecommendationItemContentType` specifying the type of content. Type is defined in a generic way. For example, you can use `Static` for images, `Dynamic` for videos, and `Interactive` for 3D models that support interaction.
|
|
35884
|
+
* - `ReferenceId` — The developer-defined string that uniquely identifies the item.
|
|
35885
|
+
* - `Duration` — The duration of the content in seconds.
|
|
35886
|
+
* - `Attributes` — The table of attributes for the item, such as `AssetId` or `Description`.
|
|
35887
|
+
* - `CustomTags` — The list of string tags for filtering and boosting.
|
|
35888
|
+
* - `Visibility` — The `RecommendationItemVisibility` enum that controls the item's visibility, such as `Public` or `Private`.
|
|
35889
|
+
*
|
|
35890
|
+
*
|
|
35891
|
+
* @returns A table with only two fields: `ItemId` and `ReferenceId`.
|
|
35710
35892
|
*/
|
|
35711
35893
|
RegisterItemAsync(this: RecommendationService, player: Player, registerRecommendationItemsRequest: object): object;
|
|
35712
35894
|
/**
|
|
@@ -35714,8 +35896,8 @@ interface RecommendationService extends Instance {
|
|
|
35714
35896
|
* - **Tags**: Yields
|
|
35715
35897
|
*
|
|
35716
35898
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#RemoveItemAsync)
|
|
35717
|
-
* @param this
|
|
35718
|
-
* @param itemId
|
|
35899
|
+
* @param this A service that provides an interface for you to manage and display personalized content recommendations.
|
|
35900
|
+
* @param itemId The itemId to remove.
|
|
35719
35901
|
*/
|
|
35720
35902
|
RemoveItemAsync(this: RecommendationService, itemId: string): void;
|
|
35721
35903
|
/**
|
|
@@ -35723,8 +35905,14 @@ interface RecommendationService extends Instance {
|
|
|
35723
35905
|
* - **Tags**: Yields
|
|
35724
35906
|
*
|
|
35725
35907
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#UpdateItemAsync)
|
|
35726
|
-
* @param this
|
|
35727
|
-
* @param updateRecommendationItemRequest
|
|
35908
|
+
* @param this A service that provides an interface for you to manage and display personalized content recommendations.
|
|
35909
|
+
* @param updateRecommendationItemRequest A dictionary containing the following fields: - `ItemId` — The ID of the item to update.
|
|
35910
|
+
* - `ReferenceId` — The new developer-defined string to identify the item.
|
|
35911
|
+
* - `Creator` — The new creator for the item. Creator is a table containing two fields: `CreatorId: number` and `CreatorType: Enum.CreatorType`.
|
|
35912
|
+
* - `Duration` — The new duration for the content in seconds.
|
|
35913
|
+
* - `Visibility` — The new visibility setting for the item.
|
|
35914
|
+
* - `Attributes` — The new table of attributes for the item.
|
|
35915
|
+
* - `CustomTags` — The new list of string tags.
|
|
35728
35916
|
*/
|
|
35729
35917
|
UpdateItemAsync(this: RecommendationService, updateRecommendationItemRequest: object): void;
|
|
35730
35918
|
}
|
|
@@ -36191,13 +36379,6 @@ interface RunService extends Instance {
|
|
|
36191
36379
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#FrameNumber)
|
|
36192
36380
|
*/
|
|
36193
36381
|
readonly FrameNumber: number;
|
|
36194
|
-
/**
|
|
36195
|
-
* - **ThreadSafety**: ReadSafe
|
|
36196
|
-
* - **Tags**: NotReplicated
|
|
36197
|
-
*
|
|
36198
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#PredictionState)
|
|
36199
|
-
*/
|
|
36200
|
-
readonly PredictionState: Enum.PredictionState;
|
|
36201
36382
|
/**
|
|
36202
36383
|
* Given a string name of a function and a priority, this method binds the function to `RunService.PreRender`.
|
|
36203
36384
|
*
|
|
@@ -36216,6 +36397,12 @@ interface RunService extends Instance {
|
|
|
36216
36397
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#BindToSimulation)
|
|
36217
36398
|
*/
|
|
36218
36399
|
BindToSimulation(this: RunService, callback: Callback, frequency?: CastsToEnum<Enum.StepFrequency>): RBXScriptConnection;
|
|
36400
|
+
/**
|
|
36401
|
+
* - **ThreadSafety**: Unsafe
|
|
36402
|
+
*
|
|
36403
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#GetPredictionStatus)
|
|
36404
|
+
*/
|
|
36405
|
+
GetPredictionStatus(this: RunService, context: Instance): Enum.PredictionStatus;
|
|
36219
36406
|
/**
|
|
36220
36407
|
* Returns whether the current environment is running on the client.
|
|
36221
36408
|
*
|
|
@@ -36266,6 +36453,12 @@ interface RunService extends Instance {
|
|
|
36266
36453
|
* @returns Whether the current environment is running in Studio.
|
|
36267
36454
|
*/
|
|
36268
36455
|
IsStudio(this: RunService): boolean;
|
|
36456
|
+
/**
|
|
36457
|
+
* - **ThreadSafety**: Unsafe
|
|
36458
|
+
*
|
|
36459
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#SetPredictionMode)
|
|
36460
|
+
*/
|
|
36461
|
+
SetPredictionMode(this: RunService, context: Instance, mode: CastsToEnum<Enum.PredictionMode>): void;
|
|
36269
36462
|
/**
|
|
36270
36463
|
* Unbinds a function that was bound to the render loop using `RunService:BindToRenderStep()`.
|
|
36271
36464
|
*
|
|
@@ -39063,6 +39256,12 @@ interface StarterPlayer extends Instance {
|
|
|
39063
39256
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayer#CameraMode)
|
|
39064
39257
|
*/
|
|
39065
39258
|
CameraMode: Enum.CameraMode;
|
|
39259
|
+
/**
|
|
39260
|
+
* - **ThreadSafety**: ReadSafe
|
|
39261
|
+
*
|
|
39262
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayer#CharacterBreakJointsOnDeath)
|
|
39263
|
+
*/
|
|
39264
|
+
CharacterBreakJointsOnDeath: boolean;
|
|
39066
39265
|
/**
|
|
39067
39266
|
* Determines the starting value of `Humanoid.JumpHeight` for `Player.Character`.
|
|
39068
39267
|
*
|
|
@@ -39175,7 +39374,6 @@ interface StarterPlayer extends Instance {
|
|
|
39175
39374
|
LoadCharacterAppearance: boolean;
|
|
39176
39375
|
/**
|
|
39177
39376
|
* - **ThreadSafety**: ReadSafe
|
|
39178
|
-
* - **Tags**: NotBrowsable
|
|
39179
39377
|
*
|
|
39180
39378
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayer#LuaCharacterController)
|
|
39181
39379
|
*/
|
|
@@ -39188,12 +39386,6 @@ interface StarterPlayer extends Instance {
|
|
|
39188
39386
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayer#NameDisplayDistance)
|
|
39189
39387
|
*/
|
|
39190
39388
|
NameDisplayDistance: number;
|
|
39191
|
-
/**
|
|
39192
|
-
* - **ThreadSafety**: ReadSafe
|
|
39193
|
-
*
|
|
39194
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayer#RagdollDeath)
|
|
39195
|
-
*/
|
|
39196
|
-
RagdollDeath: boolean;
|
|
39197
39389
|
/**
|
|
39198
39390
|
* Determines if user-owned emotes are loaded when loading avatars.
|
|
39199
39391
|
*
|
|
@@ -39770,6 +39962,33 @@ interface StudioSdkService extends Instance {
|
|
|
39770
39962
|
*/
|
|
39771
39963
|
readonly _nominal_StudioSdkService: unique symbol;
|
|
39772
39964
|
}
|
|
39965
|
+
/**
|
|
39966
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
39967
|
+
*
|
|
39968
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioTestService)
|
|
39969
|
+
*/
|
|
39970
|
+
interface StudioTestService extends Instance {
|
|
39971
|
+
/**
|
|
39972
|
+
* **DO NOT USE!**
|
|
39973
|
+
*
|
|
39974
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
39975
|
+
* @hidden
|
|
39976
|
+
* @deprecated
|
|
39977
|
+
*/
|
|
39978
|
+
readonly _nominal_StudioTestService: unique symbol;
|
|
39979
|
+
/**
|
|
39980
|
+
* - **ThreadSafety**: Unsafe
|
|
39981
|
+
*
|
|
39982
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioTestService#EndTest)
|
|
39983
|
+
*/
|
|
39984
|
+
EndTest(this: StudioTestService, value: unknown): void;
|
|
39985
|
+
/**
|
|
39986
|
+
* - **ThreadSafety**: Unsafe
|
|
39987
|
+
*
|
|
39988
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioTestService#GetTestArgs)
|
|
39989
|
+
*/
|
|
39990
|
+
GetTestArgs(this: StudioTestService): unknown;
|
|
39991
|
+
}
|
|
39773
39992
|
/**
|
|
39774
39993
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
39775
39994
|
*
|
|
@@ -6,6 +6,7 @@ interface Services {
|
|
|
6
6
|
AccountService: AccountService;
|
|
7
7
|
AchievementService: AchievementService;
|
|
8
8
|
ActivityHistoryEventService: ActivityHistoryEventService;
|
|
9
|
+
AdService: AdService;
|
|
9
10
|
AnalyticsService: AnalyticsService;
|
|
10
11
|
AnimationClipProvider: AnimationClipProvider;
|
|
11
12
|
AnimationFromVideoCreatorService: AnimationFromVideoCreatorService;
|
|
@@ -211,6 +212,7 @@ interface Services {
|
|
|
211
212
|
StudioScriptDebugEventListener: StudioScriptDebugEventListener;
|
|
212
213
|
StudioSdkService: StudioSdkService;
|
|
213
214
|
StudioService: StudioService;
|
|
215
|
+
StudioTestService: StudioTestService;
|
|
214
216
|
StudioUserService: StudioUserService;
|
|
215
217
|
StudioWidgetsService: StudioWidgetsService;
|
|
216
218
|
StylingService: StylingService;
|
|
@@ -450,6 +452,7 @@ interface CreatableInstances {
|
|
|
450
452
|
Pose: Pose;
|
|
451
453
|
PrismaticConstraint: PrismaticConstraint;
|
|
452
454
|
ProximityPrompt: ProximityPrompt;
|
|
455
|
+
PyramidHandleAdornment: PyramidHandleAdornment;
|
|
453
456
|
RayValue: RayValue;
|
|
454
457
|
RelativeGui: RelativeGui;
|
|
455
458
|
RemoteEvent: RemoteEvent;
|
|
@@ -812,6 +815,8 @@ interface AnimationNode extends RBXObject {
|
|
|
812
815
|
readonly _nominal_AnimationNode: unique symbol;
|
|
813
816
|
}
|
|
814
817
|
/**
|
|
818
|
+
* A class which defines a piece of content, such as a screnshot or video, taken in-experience.
|
|
819
|
+
*
|
|
815
820
|
* - **Tags**: NotCreatable, NotReplicated
|
|
816
821
|
*
|
|
817
822
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Capture)
|
|
@@ -827,6 +832,8 @@ interface Capture extends RBXObject {
|
|
|
827
832
|
readonly _nominal_Capture: unique symbol;
|
|
828
833
|
}
|
|
829
834
|
/**
|
|
835
|
+
* A child class of `Capture` for screenshots.
|
|
836
|
+
*
|
|
830
837
|
* - **Tags**: NotCreatable, NotReplicated
|
|
831
838
|
*
|
|
832
839
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScreenshotCapture)
|
|
@@ -842,6 +849,8 @@ interface ScreenshotCapture extends Capture {
|
|
|
842
849
|
readonly _nominal_ScreenshotCapture: unique symbol;
|
|
843
850
|
}
|
|
844
851
|
/**
|
|
852
|
+
* A child class of `Capture` for videos.
|
|
853
|
+
*
|
|
845
854
|
* - **Tags**: NotCreatable, NotReplicated
|
|
846
855
|
*
|
|
847
856
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoCapture)
|
|
@@ -1080,6 +1089,23 @@ interface AdPortal extends Instance {
|
|
|
1080
1089
|
*/
|
|
1081
1090
|
readonly _nominal_AdPortal: unique symbol;
|
|
1082
1091
|
}
|
|
1092
|
+
/**
|
|
1093
|
+
* A class that allows the display of mobile video ads.
|
|
1094
|
+
*
|
|
1095
|
+
* - **Tags**: NotCreatable, Service
|
|
1096
|
+
*
|
|
1097
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdService)
|
|
1098
|
+
*/
|
|
1099
|
+
interface AdService extends Instance {
|
|
1100
|
+
/**
|
|
1101
|
+
* **DO NOT USE!**
|
|
1102
|
+
*
|
|
1103
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1104
|
+
* @hidden
|
|
1105
|
+
* @deprecated
|
|
1106
|
+
*/
|
|
1107
|
+
readonly _nominal_AdService: unique symbol;
|
|
1108
|
+
}
|
|
1083
1109
|
/**
|
|
1084
1110
|
* Collection of methods that allows developers to track how users interact with their experiences.
|
|
1085
1111
|
*
|
|
@@ -5274,7 +5300,7 @@ interface FaceControls extends Instance {
|
|
|
5274
5300
|
UpperLipSuck: number;
|
|
5275
5301
|
}
|
|
5276
5302
|
/**
|
|
5277
|
-
*
|
|
5303
|
+
* An abstract class from which the `Decal` and `Texture` classes inherit.
|
|
5278
5304
|
*
|
|
5279
5305
|
* - **Tags**: NotCreatable, NotBrowsable
|
|
5280
5306
|
*
|
|
@@ -5291,7 +5317,7 @@ interface FaceInstance extends Instance {
|
|
|
5291
5317
|
readonly _nominal_FaceInstance: unique symbol;
|
|
5292
5318
|
}
|
|
5293
5319
|
/**
|
|
5294
|
-
*
|
|
5320
|
+
* Applies an image texture to a face of a parent `BasePart`.
|
|
5295
5321
|
*
|
|
5296
5322
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal)
|
|
5297
5323
|
*/
|
|
@@ -5345,7 +5371,7 @@ interface Decal extends FaceInstance {
|
|
|
5345
5371
|
set RoughnessMapContent(value: Content);
|
|
5346
5372
|
}
|
|
5347
5373
|
/**
|
|
5348
|
-
*
|
|
5374
|
+
* Applies a repeating image texture to the face of a parent `BasePart`.
|
|
5349
5375
|
*
|
|
5350
5376
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Texture)
|
|
5351
5377
|
*/
|
|
@@ -6456,6 +6482,19 @@ interface LineHandleAdornment extends HandleAdornment {
|
|
|
6456
6482
|
*/
|
|
6457
6483
|
readonly _nominal_LineHandleAdornment: unique symbol;
|
|
6458
6484
|
}
|
|
6485
|
+
/**
|
|
6486
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PyramidHandleAdornment)
|
|
6487
|
+
*/
|
|
6488
|
+
interface PyramidHandleAdornment extends HandleAdornment {
|
|
6489
|
+
/**
|
|
6490
|
+
* **DO NOT USE!**
|
|
6491
|
+
*
|
|
6492
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
6493
|
+
* @hidden
|
|
6494
|
+
* @deprecated
|
|
6495
|
+
*/
|
|
6496
|
+
readonly _nominal_PyramidHandleAdornment: unique symbol;
|
|
6497
|
+
}
|
|
6459
6498
|
/**
|
|
6460
6499
|
* The SphereHandleAdornment is a sphere that can be adorned to a BasePart.
|
|
6461
6500
|
*
|
|
@@ -9366,6 +9405,8 @@ interface BanHistoryPages extends Pages {
|
|
|
9366
9405
|
readonly _nominal_BanHistoryPages: unique symbol;
|
|
9367
9406
|
}
|
|
9368
9407
|
/**
|
|
9408
|
+
* A special version of the `Pages` class returned by `CaptureService.ReadCapturesFromGalleryAsync`.
|
|
9409
|
+
*
|
|
9369
9410
|
* - **Tags**: NotCreatable, NotReplicated
|
|
9370
9411
|
*
|
|
9371
9412
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CapturesPages)
|
|
@@ -9558,6 +9599,8 @@ interface OutfitPages extends Pages<ReadonlyArray<{
|
|
|
9558
9599
|
readonly _nominal_OutfitPages: unique symbol;
|
|
9559
9600
|
}
|
|
9560
9601
|
/**
|
|
9602
|
+
* A special version of the `Pages` class returned by `GenerateItemListAsync`.
|
|
9603
|
+
*
|
|
9561
9604
|
* - **Tags**: NotCreatable, NotReplicated
|
|
9562
9605
|
*
|
|
9563
9606
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationPages)
|
|
@@ -10933,6 +10976,8 @@ interface RTAnimationTracker extends Instance {
|
|
|
10933
10976
|
readonly _nominal_RTAnimationTracker: unique symbol;
|
|
10934
10977
|
}
|
|
10935
10978
|
/**
|
|
10979
|
+
* A service that provides an interface for you to manage and display personalized content recommendations.
|
|
10980
|
+
*
|
|
10936
10981
|
* - **Tags**: NotCreatable, Service
|
|
10937
10982
|
*
|
|
10938
10983
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService)
|
|
@@ -13234,6 +13279,35 @@ interface StudioService extends Instance {
|
|
|
13234
13279
|
*/
|
|
13235
13280
|
PromptImportFiles(this: StudioService, fileTypeFilter?: Array<unknown>): Array<Instance>;
|
|
13236
13281
|
}
|
|
13282
|
+
/**
|
|
13283
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
13284
|
+
*
|
|
13285
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioTestService)
|
|
13286
|
+
*/
|
|
13287
|
+
interface StudioTestService extends Instance {
|
|
13288
|
+
/**
|
|
13289
|
+
* **DO NOT USE!**
|
|
13290
|
+
*
|
|
13291
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
13292
|
+
* @hidden
|
|
13293
|
+
* @deprecated
|
|
13294
|
+
*/
|
|
13295
|
+
readonly _nominal_StudioTestService: unique symbol;
|
|
13296
|
+
/**
|
|
13297
|
+
* - **ThreadSafety**: Unsafe
|
|
13298
|
+
* - **Tags**: Yields
|
|
13299
|
+
*
|
|
13300
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioTestService#ExecutePlayModeAsync)
|
|
13301
|
+
*/
|
|
13302
|
+
ExecutePlayModeAsync(this: StudioTestService, args: unknown): unknown;
|
|
13303
|
+
/**
|
|
13304
|
+
* - **ThreadSafety**: Unsafe
|
|
13305
|
+
* - **Tags**: Yields
|
|
13306
|
+
*
|
|
13307
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioTestService#ExecuteRunModeAsync)
|
|
13308
|
+
*/
|
|
13309
|
+
ExecuteRunModeAsync(this: StudioTestService, args: unknown): unknown;
|
|
13310
|
+
}
|
|
13237
13311
|
/**
|
|
13238
13312
|
* - **Tags**: NotCreatable, NotReplicated
|
|
13239
13313
|
*
|
|
@@ -1635,6 +1635,42 @@ declare namespace Enum {
|
|
|
1635
1635
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodePlayMode | undefined;
|
|
1636
1636
|
}
|
|
1637
1637
|
export type AnimationNodePlayMode = AnimationNodePlayMode.Loop | AnimationNodePlayMode.PingPong | AnimationNodePlayMode.OnceAndHold | AnimationNodePlayMode.OnceAndReset;
|
|
1638
|
+
/**
|
|
1639
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeTransitionType)
|
|
1640
|
+
*/
|
|
1641
|
+
export namespace AnimationNodeTransitionType {
|
|
1642
|
+
/**
|
|
1643
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeTransitionType#CrossFade)
|
|
1644
|
+
*/
|
|
1645
|
+
export interface CrossFade extends globalThis.EnumItem {
|
|
1646
|
+
Name: "CrossFade";
|
|
1647
|
+
Value: 0;
|
|
1648
|
+
EnumType: typeof globalThis.Enum.AnimationNodeTransitionType;
|
|
1649
|
+
}
|
|
1650
|
+
export const CrossFade: CrossFade;
|
|
1651
|
+
/**
|
|
1652
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeTransitionType#InertialBlend)
|
|
1653
|
+
*/
|
|
1654
|
+
export interface InertialBlend extends globalThis.EnumItem {
|
|
1655
|
+
Name: "InertialBlend";
|
|
1656
|
+
Value: 1;
|
|
1657
|
+
EnumType: typeof globalThis.Enum.AnimationNodeTransitionType;
|
|
1658
|
+
}
|
|
1659
|
+
export const InertialBlend: InertialBlend;
|
|
1660
|
+
/**
|
|
1661
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeTransitionType#DeadBlend)
|
|
1662
|
+
*/
|
|
1663
|
+
export interface DeadBlend extends globalThis.EnumItem {
|
|
1664
|
+
Name: "DeadBlend";
|
|
1665
|
+
Value: 2;
|
|
1666
|
+
EnumType: typeof globalThis.Enum.AnimationNodeTransitionType;
|
|
1667
|
+
}
|
|
1668
|
+
export const DeadBlend: DeadBlend;
|
|
1669
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationNodeTransitionType>;
|
|
1670
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodeTransitionType | undefined;
|
|
1671
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeTransitionType | undefined;
|
|
1672
|
+
}
|
|
1673
|
+
export type AnimationNodeTransitionType = AnimationNodeTransitionType.CrossFade | AnimationNodeTransitionType.InertialBlend | AnimationNodeTransitionType.DeadBlend;
|
|
1638
1674
|
/**
|
|
1639
1675
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType)
|
|
1640
1676
|
*/
|
|
@@ -9382,11 +9418,83 @@ declare namespace Enum {
|
|
|
9382
9418
|
EnumType: typeof globalThis.Enum.DataStoreRequestType;
|
|
9383
9419
|
}
|
|
9384
9420
|
export const RemoveVersionAsync: RemoveVersionAsync;
|
|
9421
|
+
/**
|
|
9422
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#StandardRead)
|
|
9423
|
+
*/
|
|
9424
|
+
export interface StandardRead extends globalThis.EnumItem {
|
|
9425
|
+
Name: "StandardRead";
|
|
9426
|
+
Value: 9;
|
|
9427
|
+
EnumType: typeof globalThis.Enum.DataStoreRequestType;
|
|
9428
|
+
}
|
|
9429
|
+
export const StandardRead: StandardRead;
|
|
9430
|
+
/**
|
|
9431
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#StandardWrite)
|
|
9432
|
+
*/
|
|
9433
|
+
export interface StandardWrite extends globalThis.EnumItem {
|
|
9434
|
+
Name: "StandardWrite";
|
|
9435
|
+
Value: 10;
|
|
9436
|
+
EnumType: typeof globalThis.Enum.DataStoreRequestType;
|
|
9437
|
+
}
|
|
9438
|
+
export const StandardWrite: StandardWrite;
|
|
9439
|
+
/**
|
|
9440
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#StandardList)
|
|
9441
|
+
*/
|
|
9442
|
+
export interface StandardList extends globalThis.EnumItem {
|
|
9443
|
+
Name: "StandardList";
|
|
9444
|
+
Value: 11;
|
|
9445
|
+
EnumType: typeof globalThis.Enum.DataStoreRequestType;
|
|
9446
|
+
}
|
|
9447
|
+
export const StandardList: StandardList;
|
|
9448
|
+
/**
|
|
9449
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#StandardRemove)
|
|
9450
|
+
*/
|
|
9451
|
+
export interface StandardRemove extends globalThis.EnumItem {
|
|
9452
|
+
Name: "StandardRemove";
|
|
9453
|
+
Value: 12;
|
|
9454
|
+
EnumType: typeof globalThis.Enum.DataStoreRequestType;
|
|
9455
|
+
}
|
|
9456
|
+
export const StandardRemove: StandardRemove;
|
|
9457
|
+
/**
|
|
9458
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#OrderedRead)
|
|
9459
|
+
*/
|
|
9460
|
+
export interface OrderedRead extends globalThis.EnumItem {
|
|
9461
|
+
Name: "OrderedRead";
|
|
9462
|
+
Value: 13;
|
|
9463
|
+
EnumType: typeof globalThis.Enum.DataStoreRequestType;
|
|
9464
|
+
}
|
|
9465
|
+
export const OrderedRead: OrderedRead;
|
|
9466
|
+
/**
|
|
9467
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#OrderedWrite)
|
|
9468
|
+
*/
|
|
9469
|
+
export interface OrderedWrite extends globalThis.EnumItem {
|
|
9470
|
+
Name: "OrderedWrite";
|
|
9471
|
+
Value: 14;
|
|
9472
|
+
EnumType: typeof globalThis.Enum.DataStoreRequestType;
|
|
9473
|
+
}
|
|
9474
|
+
export const OrderedWrite: OrderedWrite;
|
|
9475
|
+
/**
|
|
9476
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#OrderedList)
|
|
9477
|
+
*/
|
|
9478
|
+
export interface OrderedList extends globalThis.EnumItem {
|
|
9479
|
+
Name: "OrderedList";
|
|
9480
|
+
Value: 15;
|
|
9481
|
+
EnumType: typeof globalThis.Enum.DataStoreRequestType;
|
|
9482
|
+
}
|
|
9483
|
+
export const OrderedList: OrderedList;
|
|
9484
|
+
/**
|
|
9485
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataStoreRequestType#OrderedRemove)
|
|
9486
|
+
*/
|
|
9487
|
+
export interface OrderedRemove extends globalThis.EnumItem {
|
|
9488
|
+
Name: "OrderedRemove";
|
|
9489
|
+
Value: 16;
|
|
9490
|
+
EnumType: typeof globalThis.Enum.DataStoreRequestType;
|
|
9491
|
+
}
|
|
9492
|
+
export const OrderedRemove: OrderedRemove;
|
|
9385
9493
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DataStoreRequestType>;
|
|
9386
9494
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DataStoreRequestType | undefined;
|
|
9387
9495
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DataStoreRequestType | undefined;
|
|
9388
9496
|
}
|
|
9389
|
-
export type DataStoreRequestType = DataStoreRequestType.GetAsync | DataStoreRequestType.SetIncrementAsync | DataStoreRequestType.UpdateAsync | DataStoreRequestType.GetSortedAsync | DataStoreRequestType.SetIncrementSortedAsync | DataStoreRequestType.OnUpdate | DataStoreRequestType.ListAsync | DataStoreRequestType.GetVersionAsync | DataStoreRequestType.RemoveVersionAsync;
|
|
9497
|
+
export type DataStoreRequestType = DataStoreRequestType.GetAsync | DataStoreRequestType.SetIncrementAsync | DataStoreRequestType.UpdateAsync | DataStoreRequestType.GetSortedAsync | DataStoreRequestType.SetIncrementSortedAsync | DataStoreRequestType.OnUpdate | DataStoreRequestType.ListAsync | DataStoreRequestType.GetVersionAsync | DataStoreRequestType.RemoveVersionAsync | DataStoreRequestType.StandardRead | DataStoreRequestType.StandardWrite | DataStoreRequestType.StandardList | DataStoreRequestType.StandardRemove | DataStoreRequestType.OrderedRead | DataStoreRequestType.OrderedWrite | DataStoreRequestType.OrderedList | DataStoreRequestType.OrderedRemove;
|
|
9390
9498
|
/**
|
|
9391
9499
|
* Reason for the end of the debugger session.
|
|
9392
9500
|
*
|
|
@@ -14462,6 +14570,61 @@ declare namespace Enum {
|
|
|
14462
14570
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.GraphicsOptimizationMode | undefined;
|
|
14463
14571
|
}
|
|
14464
14572
|
export type GraphicsOptimizationMode = GraphicsOptimizationMode.Performance | GraphicsOptimizationMode.Balanced | GraphicsOptimizationMode.Quality;
|
|
14573
|
+
/**
|
|
14574
|
+
* Defines the possible outcomes of the `GroupService:PromptJoinAsync()` method.
|
|
14575
|
+
*
|
|
14576
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GroupMembershipStatus)
|
|
14577
|
+
*/
|
|
14578
|
+
export namespace GroupMembershipStatus {
|
|
14579
|
+
/**
|
|
14580
|
+
* The player chose not to join, cancelled the prompt, or was not eligible to join the group.
|
|
14581
|
+
*
|
|
14582
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GroupMembershipStatus#None)
|
|
14583
|
+
*/
|
|
14584
|
+
export interface None extends globalThis.EnumItem {
|
|
14585
|
+
Name: "None";
|
|
14586
|
+
Value: 0;
|
|
14587
|
+
EnumType: typeof globalThis.Enum.GroupMembershipStatus;
|
|
14588
|
+
}
|
|
14589
|
+
export const None: None;
|
|
14590
|
+
/**
|
|
14591
|
+
* The player successfully joined the group during the prompt.
|
|
14592
|
+
*
|
|
14593
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GroupMembershipStatus#Joined)
|
|
14594
|
+
*/
|
|
14595
|
+
export interface Joined extends globalThis.EnumItem {
|
|
14596
|
+
Name: "Joined";
|
|
14597
|
+
Value: 1;
|
|
14598
|
+
EnumType: typeof globalThis.Enum.GroupMembershipStatus;
|
|
14599
|
+
}
|
|
14600
|
+
export const Joined: Joined;
|
|
14601
|
+
/**
|
|
14602
|
+
* The player submitted a request to join the group.
|
|
14603
|
+
*
|
|
14604
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GroupMembershipStatus#JoinRequestPending)
|
|
14605
|
+
*/
|
|
14606
|
+
export interface JoinRequestPending extends globalThis.EnumItem {
|
|
14607
|
+
Name: "JoinRequestPending";
|
|
14608
|
+
Value: 2;
|
|
14609
|
+
EnumType: typeof globalThis.Enum.GroupMembershipStatus;
|
|
14610
|
+
}
|
|
14611
|
+
export const JoinRequestPending: JoinRequestPending;
|
|
14612
|
+
/**
|
|
14613
|
+
* The player was already a member of the group.
|
|
14614
|
+
*
|
|
14615
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GroupMembershipStatus#AlreadyMember)
|
|
14616
|
+
*/
|
|
14617
|
+
export interface AlreadyMember extends globalThis.EnumItem {
|
|
14618
|
+
Name: "AlreadyMember";
|
|
14619
|
+
Value: 3;
|
|
14620
|
+
EnumType: typeof globalThis.Enum.GroupMembershipStatus;
|
|
14621
|
+
}
|
|
14622
|
+
export const AlreadyMember: AlreadyMember;
|
|
14623
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.GroupMembershipStatus>;
|
|
14624
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.GroupMembershipStatus | undefined;
|
|
14625
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.GroupMembershipStatus | undefined;
|
|
14626
|
+
}
|
|
14627
|
+
export type GroupMembershipStatus = GroupMembershipStatus.None | GroupMembershipStatus.Joined | GroupMembershipStatus.JoinRequestPending | GroupMembershipStatus.AlreadyMember;
|
|
14465
14628
|
/**
|
|
14466
14629
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GuiState)
|
|
14467
14630
|
*/
|
|
@@ -20337,12 +20500,21 @@ declare namespace Enum {
|
|
|
20337
20500
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LuauTypeCheckMode)
|
|
20338
20501
|
*/
|
|
20339
20502
|
export namespace LuauTypeCheckMode {
|
|
20503
|
+
/**
|
|
20504
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LuauTypeCheckMode#Default)
|
|
20505
|
+
*/
|
|
20506
|
+
export interface Default extends globalThis.EnumItem {
|
|
20507
|
+
Name: "Default";
|
|
20508
|
+
Value: 0;
|
|
20509
|
+
EnumType: typeof globalThis.Enum.LuauTypeCheckMode;
|
|
20510
|
+
}
|
|
20511
|
+
export const Default: Default;
|
|
20340
20512
|
/**
|
|
20341
20513
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/LuauTypeCheckMode#NoCheck)
|
|
20342
20514
|
*/
|
|
20343
20515
|
export interface NoCheck extends globalThis.EnumItem {
|
|
20344
20516
|
Name: "NoCheck";
|
|
20345
|
-
Value:
|
|
20517
|
+
Value: 1;
|
|
20346
20518
|
EnumType: typeof globalThis.Enum.LuauTypeCheckMode;
|
|
20347
20519
|
}
|
|
20348
20520
|
export const NoCheck: NoCheck;
|
|
@@ -20351,7 +20523,7 @@ declare namespace Enum {
|
|
|
20351
20523
|
*/
|
|
20352
20524
|
export interface Nonstrict extends globalThis.EnumItem {
|
|
20353
20525
|
Name: "Nonstrict";
|
|
20354
|
-
Value:
|
|
20526
|
+
Value: 2;
|
|
20355
20527
|
EnumType: typeof globalThis.Enum.LuauTypeCheckMode;
|
|
20356
20528
|
}
|
|
20357
20529
|
export const Nonstrict: Nonstrict;
|
|
@@ -20360,7 +20532,7 @@ declare namespace Enum {
|
|
|
20360
20532
|
*/
|
|
20361
20533
|
export interface Strict extends globalThis.EnumItem {
|
|
20362
20534
|
Name: "Strict";
|
|
20363
|
-
Value:
|
|
20535
|
+
Value: 3;
|
|
20364
20536
|
EnumType: typeof globalThis.Enum.LuauTypeCheckMode;
|
|
20365
20537
|
}
|
|
20366
20538
|
export const Strict: Strict;
|
|
@@ -20368,7 +20540,7 @@ declare namespace Enum {
|
|
|
20368
20540
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.LuauTypeCheckMode | undefined;
|
|
20369
20541
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.LuauTypeCheckMode | undefined;
|
|
20370
20542
|
}
|
|
20371
|
-
export type LuauTypeCheckMode = LuauTypeCheckMode.NoCheck | LuauTypeCheckMode.Nonstrict | LuauTypeCheckMode.Strict;
|
|
20543
|
+
export type LuauTypeCheckMode = LuauTypeCheckMode.Default | LuauTypeCheckMode.NoCheck | LuauTypeCheckMode.Nonstrict | LuauTypeCheckMode.Strict;
|
|
20372
20544
|
/**
|
|
20373
20545
|
* The status of the BulkPurchasePrompt after player interaction.
|
|
20374
20546
|
*
|
|
@@ -24489,50 +24661,41 @@ declare namespace Enum {
|
|
|
24489
24661
|
}
|
|
24490
24662
|
export type PredictionMode = PredictionMode.Automatic | PredictionMode.On | PredictionMode.Off;
|
|
24491
24663
|
/**
|
|
24492
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/
|
|
24664
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionStatus)
|
|
24493
24665
|
*/
|
|
24494
|
-
export namespace
|
|
24666
|
+
export namespace PredictionStatus {
|
|
24495
24667
|
/**
|
|
24496
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/
|
|
24668
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionStatus#Authoritative)
|
|
24497
24669
|
*/
|
|
24498
|
-
export interface
|
|
24499
|
-
Name: "
|
|
24670
|
+
export interface Authoritative extends globalThis.EnumItem {
|
|
24671
|
+
Name: "Authoritative";
|
|
24500
24672
|
Value: 0;
|
|
24501
|
-
EnumType: typeof globalThis.Enum.
|
|
24673
|
+
EnumType: typeof globalThis.Enum.PredictionStatus;
|
|
24502
24674
|
}
|
|
24503
|
-
export const
|
|
24675
|
+
export const Authoritative: Authoritative;
|
|
24504
24676
|
/**
|
|
24505
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/
|
|
24677
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionStatus#Predicted)
|
|
24506
24678
|
*/
|
|
24507
|
-
export interface
|
|
24508
|
-
Name: "
|
|
24679
|
+
export interface Predicted extends globalThis.EnumItem {
|
|
24680
|
+
Name: "Predicted";
|
|
24509
24681
|
Value: 1;
|
|
24510
|
-
EnumType: typeof globalThis.Enum.
|
|
24682
|
+
EnumType: typeof globalThis.Enum.PredictionStatus;
|
|
24511
24683
|
}
|
|
24512
|
-
export const
|
|
24684
|
+
export const Predicted: Predicted;
|
|
24513
24685
|
/**
|
|
24514
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/
|
|
24686
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionStatus#None)
|
|
24515
24687
|
*/
|
|
24516
|
-
export interface
|
|
24517
|
-
Name: "
|
|
24688
|
+
export interface None extends globalThis.EnumItem {
|
|
24689
|
+
Name: "None";
|
|
24518
24690
|
Value: 2;
|
|
24519
|
-
EnumType: typeof globalThis.Enum.
|
|
24691
|
+
EnumType: typeof globalThis.Enum.PredictionStatus;
|
|
24520
24692
|
}
|
|
24521
|
-
export const
|
|
24522
|
-
|
|
24523
|
-
|
|
24524
|
-
|
|
24525
|
-
export interface Resimulating extends globalThis.EnumItem {
|
|
24526
|
-
Name: "Resimulating";
|
|
24527
|
-
Value: 3;
|
|
24528
|
-
EnumType: typeof globalThis.Enum.PredictionState;
|
|
24529
|
-
}
|
|
24530
|
-
export const Resimulating: Resimulating;
|
|
24531
|
-
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PredictionState>;
|
|
24532
|
-
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PredictionState | undefined;
|
|
24533
|
-
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PredictionState | undefined;
|
|
24693
|
+
export const None: None;
|
|
24694
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PredictionStatus>;
|
|
24695
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PredictionStatus | undefined;
|
|
24696
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PredictionStatus | undefined;
|
|
24534
24697
|
}
|
|
24535
|
-
export type
|
|
24698
|
+
export type PredictionStatus = PredictionStatus.Authoritative | PredictionStatus.Predicted | PredictionStatus.None;
|
|
24536
24699
|
/**
|
|
24537
24700
|
* This enum is used with `UserInputService.PreferredInput` to indicate the primary input type a player is likely using.
|
|
24538
24701
|
*
|
|
@@ -25765,6 +25928,8 @@ declare namespace Enum {
|
|
|
25765
25928
|
*/
|
|
25766
25929
|
export namespace RecommendationActionType {
|
|
25767
25930
|
/**
|
|
25931
|
+
* The user added a reaction to the item, such as a "like".
|
|
25932
|
+
*
|
|
25768
25933
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#AddReaction)
|
|
25769
25934
|
*/
|
|
25770
25935
|
export interface AddReaction extends globalThis.EnumItem {
|
|
@@ -25774,6 +25939,8 @@ declare namespace Enum {
|
|
|
25774
25939
|
}
|
|
25775
25940
|
export const AddReaction: AddReaction;
|
|
25776
25941
|
/**
|
|
25942
|
+
* The user removed a reaction from the item.
|
|
25943
|
+
*
|
|
25777
25944
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#RemoveReaction)
|
|
25778
25945
|
*/
|
|
25779
25946
|
export interface RemoveReaction extends globalThis.EnumItem {
|
|
@@ -25783,6 +25950,8 @@ declare namespace Enum {
|
|
|
25783
25950
|
}
|
|
25784
25951
|
export const RemoveReaction: RemoveReaction;
|
|
25785
25952
|
/**
|
|
25953
|
+
* The user shared the item.
|
|
25954
|
+
*
|
|
25786
25955
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#Share)
|
|
25787
25956
|
*/
|
|
25788
25957
|
export interface Share extends globalThis.EnumItem {
|
|
@@ -25792,6 +25961,8 @@ declare namespace Enum {
|
|
|
25792
25961
|
}
|
|
25793
25962
|
export const Share: Share;
|
|
25794
25963
|
/**
|
|
25964
|
+
* The user created an abuse report of the item.
|
|
25965
|
+
*
|
|
25795
25966
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#Report)
|
|
25796
25967
|
*/
|
|
25797
25968
|
export interface Report extends globalThis.EnumItem {
|
|
@@ -25801,6 +25972,8 @@ declare namespace Enum {
|
|
|
25801
25972
|
}
|
|
25802
25973
|
export const Report: Report;
|
|
25803
25974
|
/**
|
|
25975
|
+
* The user commented on the item.
|
|
25976
|
+
*
|
|
25804
25977
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#Comment)
|
|
25805
25978
|
*/
|
|
25806
25979
|
export interface Comment extends globalThis.EnumItem {
|
|
@@ -25810,6 +25983,8 @@ declare namespace Enum {
|
|
|
25810
25983
|
}
|
|
25811
25984
|
export const Comment: Comment;
|
|
25812
25985
|
/**
|
|
25986
|
+
* The user joined an experience through the item.
|
|
25987
|
+
*
|
|
25813
25988
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#Play)
|
|
25814
25989
|
*/
|
|
25815
25990
|
export interface Play extends globalThis.EnumItem {
|
|
@@ -25819,6 +25994,8 @@ declare namespace Enum {
|
|
|
25819
25994
|
}
|
|
25820
25995
|
export const Play: Play;
|
|
25821
25996
|
/**
|
|
25997
|
+
* The user made a purchase from the item.
|
|
25998
|
+
*
|
|
25822
25999
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType#Purchase)
|
|
25823
26000
|
*/
|
|
25824
26001
|
export interface Purchase extends globalThis.EnumItem {
|
|
@@ -25873,6 +26050,8 @@ declare namespace Enum {
|
|
|
25873
26050
|
*/
|
|
25874
26051
|
export namespace RecommendationImpressionType {
|
|
25875
26052
|
/**
|
|
26053
|
+
* A complete view of the item.
|
|
26054
|
+
*
|
|
25876
26055
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationImpressionType#View)
|
|
25877
26056
|
*/
|
|
25878
26057
|
export interface View extends globalThis.EnumItem {
|
|
@@ -25882,6 +26061,8 @@ declare namespace Enum {
|
|
|
25882
26061
|
}
|
|
25883
26062
|
export const View: View;
|
|
25884
26063
|
/**
|
|
26064
|
+
* The item has failed to render.
|
|
26065
|
+
*
|
|
25885
26066
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationImpressionType#NotViewable)
|
|
25886
26067
|
*/
|
|
25887
26068
|
export interface NotViewable extends globalThis.EnumItem {
|
|
@@ -25900,6 +26081,8 @@ declare namespace Enum {
|
|
|
25900
26081
|
*/
|
|
25901
26082
|
export namespace RecommendationItemContentType {
|
|
25902
26083
|
/**
|
|
26084
|
+
* The item is static, such as an image.
|
|
26085
|
+
*
|
|
25903
26086
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemContentType#Static)
|
|
25904
26087
|
*/
|
|
25905
26088
|
export interface Static extends globalThis.EnumItem {
|
|
@@ -25909,6 +26092,8 @@ declare namespace Enum {
|
|
|
25909
26092
|
}
|
|
25910
26093
|
export const Static: Static;
|
|
25911
26094
|
/**
|
|
26095
|
+
* The item is dynamic; for example, it is a video.
|
|
26096
|
+
*
|
|
25912
26097
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemContentType#Dynamic)
|
|
25913
26098
|
*/
|
|
25914
26099
|
export interface Dynamic extends globalThis.EnumItem {
|
|
@@ -25918,6 +26103,8 @@ declare namespace Enum {
|
|
|
25918
26103
|
}
|
|
25919
26104
|
export const Dynamic: Dynamic;
|
|
25920
26105
|
/**
|
|
26106
|
+
* The item is interactive, such as a 3D model or a mini-game.
|
|
26107
|
+
*
|
|
25921
26108
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationItemContentType#Interactive)
|
|
25922
26109
|
*/
|
|
25923
26110
|
export interface Interactive extends globalThis.EnumItem {
|
|
@@ -26854,6 +27041,15 @@ declare namespace Enum {
|
|
|
26854
27041
|
EnumType: typeof globalThis.Enum.RigType;
|
|
26855
27042
|
}
|
|
26856
27043
|
export const R15: R15;
|
|
27044
|
+
/**
|
|
27045
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigType#CustomHumanoid)
|
|
27046
|
+
*/
|
|
27047
|
+
export interface CustomHumanoid extends globalThis.EnumItem {
|
|
27048
|
+
Name: "CustomHumanoid";
|
|
27049
|
+
Value: 1;
|
|
27050
|
+
EnumType: typeof globalThis.Enum.RigType;
|
|
27051
|
+
}
|
|
27052
|
+
export const CustomHumanoid: CustomHumanoid;
|
|
26857
27053
|
/**
|
|
26858
27054
|
* A rig type of Custom.
|
|
26859
27055
|
*
|
|
@@ -26861,7 +27057,7 @@ declare namespace Enum {
|
|
|
26861
27057
|
*/
|
|
26862
27058
|
export interface Custom extends globalThis.EnumItem {
|
|
26863
27059
|
Name: "Custom";
|
|
26864
|
-
Value:
|
|
27060
|
+
Value: 2;
|
|
26865
27061
|
EnumType: typeof globalThis.Enum.RigType;
|
|
26866
27062
|
}
|
|
26867
27063
|
export const Custom: Custom;
|
|
@@ -26872,7 +27068,7 @@ declare namespace Enum {
|
|
|
26872
27068
|
*/
|
|
26873
27069
|
export interface None extends globalThis.EnumItem {
|
|
26874
27070
|
Name: "None";
|
|
26875
|
-
Value:
|
|
27071
|
+
Value: 3;
|
|
26876
27072
|
EnumType: typeof globalThis.Enum.RigType;
|
|
26877
27073
|
}
|
|
26878
27074
|
export const None: None;
|
|
@@ -26880,7 +27076,7 @@ declare namespace Enum {
|
|
|
26880
27076
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RigType | undefined;
|
|
26881
27077
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RigType | undefined;
|
|
26882
27078
|
}
|
|
26883
|
-
export type RigType = RigType.R15 | RigType.Custom | RigType.None;
|
|
27079
|
+
export type RigType = RigType.R15 | RigType.CustomHumanoid | RigType.Custom | RigType.None;
|
|
26884
27080
|
/**
|
|
26885
27081
|
* How `Sounds` parented to a `BasePart` or `Attachment` attenuate (fade out) as the distance between the listener and the parent increases.
|
|
26886
27082
|
*
|
|
@@ -27337,11 +27533,20 @@ declare namespace Enum {
|
|
|
27337
27533
|
EnumType: typeof globalThis.Enum.SalesTypeFilter;
|
|
27338
27534
|
}
|
|
27339
27535
|
export const Premium: Premium;
|
|
27536
|
+
/**
|
|
27537
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SalesTypeFilter#TimedOptions)
|
|
27538
|
+
*/
|
|
27539
|
+
export interface TimedOptions extends globalThis.EnumItem {
|
|
27540
|
+
Name: "TimedOptions";
|
|
27541
|
+
Value: 4;
|
|
27542
|
+
EnumType: typeof globalThis.Enum.SalesTypeFilter;
|
|
27543
|
+
}
|
|
27544
|
+
export const TimedOptions: TimedOptions;
|
|
27340
27545
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SalesTypeFilter>;
|
|
27341
27546
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SalesTypeFilter | undefined;
|
|
27342
27547
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SalesTypeFilter | undefined;
|
|
27343
27548
|
}
|
|
27344
|
-
export type SalesTypeFilter = SalesTypeFilter.All | SalesTypeFilter.Collectibles | SalesTypeFilter.Premium;
|
|
27549
|
+
export type SalesTypeFilter = SalesTypeFilter.All | SalesTypeFilter.Collectibles | SalesTypeFilter.Premium | SalesTypeFilter.TimedOptions;
|
|
27345
27550
|
/**
|
|
27346
27551
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SandboxedInstanceMode)
|
|
27347
27552
|
*/
|