@rbxts/types 1.0.884 → 1.0.885
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.
|
@@ -89,6 +89,7 @@ interface Services {
|
|
|
89
89
|
ILegacyStudioBridge: ILegacyStudioBridge;
|
|
90
90
|
IncrementalPatchBuilder: IncrementalPatchBuilder;
|
|
91
91
|
InsertService: InsertService;
|
|
92
|
+
InstanceExtensionsService: InstanceExtensionsService;
|
|
92
93
|
InternalSyncService: InternalSyncService;
|
|
93
94
|
IXPService: IXPService;
|
|
94
95
|
JointsService: JointsService;
|
|
@@ -153,6 +154,7 @@ interface Services {
|
|
|
153
154
|
RomarkService: RomarkService;
|
|
154
155
|
RtMessagingService: RtMessagingService;
|
|
155
156
|
RunService: RunService;
|
|
157
|
+
RuntimeContentService: RuntimeContentService;
|
|
156
158
|
SafetyService: SafetyService;
|
|
157
159
|
ScriptChangeService: ScriptChangeService;
|
|
158
160
|
ScriptCloneWatcher: ScriptCloneWatcher;
|
|
@@ -3964,10 +3966,15 @@ interface AssetService extends Instance {
|
|
|
3964
3966
|
*/
|
|
3965
3967
|
CreateEditableMesh(this: AssetService, editableMeshOptions?: object): EditableMesh;
|
|
3966
3968
|
/**
|
|
3969
|
+
* Creates a Decal instance that uses composite PBR textures created by layering the provided textures in the order they are provided in the `layers` array. Textures layer based on the alpha value of the ColorMap.
|
|
3970
|
+
*
|
|
3967
3971
|
* - **ThreadSafety**: Unsafe
|
|
3968
3972
|
* - **Tags**: Yields
|
|
3969
3973
|
*
|
|
3970
3974
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#ComposeDecalAsync)
|
|
3975
|
+
* @param this A non-replicated service that handles asset-related queries to the Roblox web API.
|
|
3976
|
+
* @param layers An array of `Dictionary` tables that maps PBR names to ContentID.
|
|
3977
|
+
* @returns A new `Decal` containing the composed texture set.
|
|
3971
3978
|
*/
|
|
3972
3979
|
ComposeDecalAsync(this: AssetService, layers: Array<unknown>): Decal;
|
|
3973
3980
|
/**
|
|
@@ -5276,6 +5283,8 @@ interface AudioEmitter extends Instance {
|
|
|
5276
5283
|
*/
|
|
5277
5284
|
AudioInteractionGroup: string;
|
|
5278
5285
|
/**
|
|
5286
|
+
* **Deprecated:**
|
|
5287
|
+
*
|
|
5279
5288
|
* Controls how detailed the audio simulation should be for this `AudioEmitter`.
|
|
5280
5289
|
*
|
|
5281
5290
|
* - **ThreadSafety**: ReadSafe
|
|
@@ -5888,6 +5897,8 @@ interface AudioListener extends Instance {
|
|
|
5888
5897
|
*/
|
|
5889
5898
|
AudioInteractionGroup: string;
|
|
5890
5899
|
/**
|
|
5900
|
+
* **Deprecated:**
|
|
5901
|
+
*
|
|
5891
5902
|
* Controls how detailed the audio simulation should be for this `AudioListener`.
|
|
5892
5903
|
*
|
|
5893
5904
|
* - **ThreadSafety**: ReadSafe
|
|
@@ -6857,8 +6868,6 @@ interface AudioTextToSpeech extends Instance {
|
|
|
6857
6868
|
/**
|
|
6858
6869
|
* Creates a trembling effect on a sound by varying the volume of the sound up and down.
|
|
6859
6870
|
*
|
|
6860
|
-
* - **Tags**: NotBrowsable
|
|
6861
|
-
*
|
|
6862
6871
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTremolo)
|
|
6863
6872
|
*/
|
|
6864
6873
|
interface AudioTremolo extends Instance {
|
|
@@ -18773,7 +18782,7 @@ interface TextBox extends GuiObject {
|
|
|
18773
18782
|
readonly ReturnPressedFromOnScreenKeyboard: RBXScriptSignal<() => void>;
|
|
18774
18783
|
}
|
|
18775
18784
|
/**
|
|
18776
|
-
*
|
|
18785
|
+
* A GUI object that displays video content from a connected `VideoPlayer`.
|
|
18777
18786
|
*
|
|
18778
18787
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay)
|
|
18779
18788
|
*/
|
|
@@ -18787,12 +18796,16 @@ interface VideoDisplay extends GuiObject {
|
|
|
18787
18796
|
*/
|
|
18788
18797
|
readonly _nominal_VideoDisplay: unique symbol;
|
|
18789
18798
|
/**
|
|
18799
|
+
* Selects the texture resampling mode for the `VideoDisplay`.
|
|
18800
|
+
*
|
|
18790
18801
|
* - **ThreadSafety**: ReadSafe
|
|
18791
18802
|
*
|
|
18792
18803
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#ResampleMode)
|
|
18793
18804
|
*/
|
|
18794
18805
|
ResampleMode: Enum.ResamplerMode;
|
|
18795
18806
|
/**
|
|
18807
|
+
* Determines how a video will scale if displayed in a UI element whose aspect ratio differs from the source video.
|
|
18808
|
+
*
|
|
18796
18809
|
* - **ThreadSafety**: ReadSafe
|
|
18797
18810
|
*
|
|
18798
18811
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#ScaleType)
|
|
@@ -18805,34 +18818,44 @@ interface VideoDisplay extends GuiObject {
|
|
|
18805
18818
|
*/
|
|
18806
18819
|
TileSize: UDim2;
|
|
18807
18820
|
/**
|
|
18821
|
+
* Determines how a rendered video will be colorized.
|
|
18822
|
+
*
|
|
18808
18823
|
* - **ThreadSafety**: ReadSafe
|
|
18809
18824
|
*
|
|
18810
18825
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#VideoColor3)
|
|
18811
18826
|
*/
|
|
18812
18827
|
VideoColor3: Color3;
|
|
18813
18828
|
/**
|
|
18829
|
+
* The offset in pixels of the sub-area of a video to be displayed.
|
|
18830
|
+
*
|
|
18814
18831
|
* - **ThreadSafety**: ReadSafe
|
|
18815
18832
|
*
|
|
18816
18833
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#VideoRectOffset)
|
|
18817
18834
|
*/
|
|
18818
18835
|
VideoRectOffset: Vector2;
|
|
18819
18836
|
/**
|
|
18837
|
+
* Determines the size in pixels of the sub-area of a video to be displayed.
|
|
18838
|
+
*
|
|
18820
18839
|
* - **ThreadSafety**: ReadSafe
|
|
18821
18840
|
*
|
|
18822
18841
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#VideoRectSize)
|
|
18823
18842
|
*/
|
|
18824
18843
|
VideoRectSize: Vector2;
|
|
18825
18844
|
/**
|
|
18845
|
+
* Determines the transparency of the rendered video.
|
|
18846
|
+
*
|
|
18826
18847
|
* - **ThreadSafety**: ReadSafe
|
|
18827
18848
|
*
|
|
18828
18849
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#VideoTransparency)
|
|
18829
18850
|
*/
|
|
18830
18851
|
VideoTransparency: number;
|
|
18831
18852
|
/**
|
|
18853
|
+
* Returns an array of `Wires` that are connected to the specified pin.
|
|
18854
|
+
*
|
|
18832
18855
|
* - **ThreadSafety**: Unsafe
|
|
18833
18856
|
*
|
|
18834
18857
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#GetConnectedWires)
|
|
18835
|
-
* @param this
|
|
18858
|
+
* @param this A GUI object that displays video content from a connected `VideoPlayer`.
|
|
18836
18859
|
* @param pin
|
|
18837
18860
|
*/
|
|
18838
18861
|
GetConnectedWires(this: VideoDisplay, pin: string): Array<Instance>;
|
|
@@ -18840,17 +18863,19 @@ interface VideoDisplay extends GuiObject {
|
|
|
18840
18863
|
* - **ThreadSafety**: Unsafe
|
|
18841
18864
|
*
|
|
18842
18865
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#GetInputPins)
|
|
18843
|
-
* @param this
|
|
18866
|
+
* @param this A GUI object that displays video content from a connected `VideoPlayer`.
|
|
18844
18867
|
*/
|
|
18845
18868
|
GetInputPins(this: VideoDisplay): Array<unknown>;
|
|
18846
18869
|
/**
|
|
18847
18870
|
* - **ThreadSafety**: Unsafe
|
|
18848
18871
|
*
|
|
18849
18872
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#GetOutputPins)
|
|
18850
|
-
* @param this
|
|
18873
|
+
* @param this A GUI object that displays video content from a connected `VideoPlayer`.
|
|
18851
18874
|
*/
|
|
18852
18875
|
GetOutputPins(this: VideoDisplay): Array<unknown>;
|
|
18853
18876
|
/**
|
|
18877
|
+
* Fires when another instance is connected to or disconnected from the `VideoDisplay` via a `Wire`.
|
|
18878
|
+
*
|
|
18854
18879
|
* - **ThreadSafety**: Unsafe
|
|
18855
18880
|
*
|
|
18856
18881
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#WiringChanged)
|
|
@@ -19174,6 +19199,8 @@ interface BillboardGui extends LayerCollector {
|
|
|
19174
19199
|
*/
|
|
19175
19200
|
readonly CurrentDistance: number;
|
|
19176
19201
|
/**
|
|
19202
|
+
* **Deprecated:**
|
|
19203
|
+
*
|
|
19177
19204
|
* Determines the distance in studs at which the `BillboardGui` will stop scaling larger in size.
|
|
19178
19205
|
*
|
|
19179
19206
|
* - **ThreadSafety**: ReadSafe
|
|
@@ -19194,6 +19221,8 @@ interface BillboardGui extends LayerCollector {
|
|
|
19194
19221
|
*/
|
|
19195
19222
|
DistanceStep: number;
|
|
19196
19223
|
/**
|
|
19224
|
+
* **Deprecated:**
|
|
19225
|
+
*
|
|
19197
19226
|
* Determines the distance in studs at which the `BillboardGui` will stop scaling smaller in size.
|
|
19198
19227
|
*
|
|
19199
19228
|
* - **ThreadSafety**: ReadSafe
|
|
@@ -24570,6 +24599,21 @@ interface InsertService extends Instance {
|
|
|
24570
24599
|
*/
|
|
24571
24600
|
readonly InternalDelete: RBXScriptSignal<(instance: Instance) => void>;
|
|
24572
24601
|
}
|
|
24602
|
+
/**
|
|
24603
|
+
* - **Tags**: NotCreatable, Service
|
|
24604
|
+
*
|
|
24605
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InstanceExtensionsService)
|
|
24606
|
+
*/
|
|
24607
|
+
interface InstanceExtensionsService extends Instance {
|
|
24608
|
+
/**
|
|
24609
|
+
* **DO NOT USE!**
|
|
24610
|
+
*
|
|
24611
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
24612
|
+
* @hidden
|
|
24613
|
+
* @deprecated
|
|
24614
|
+
*/
|
|
24615
|
+
readonly _nominal_InstanceExtensionsService: unique symbol;
|
|
24616
|
+
}
|
|
24573
24617
|
/**
|
|
24574
24618
|
* - **Tags**: NotReplicated
|
|
24575
24619
|
*
|
|
@@ -26733,12 +26777,15 @@ interface MarketplaceService extends Instance {
|
|
|
26733
26777
|
*/
|
|
26734
26778
|
GetUserSubscriptionStatusAsync(this: MarketplaceService, user: Player, subscriptionId: string): UserSubscriptionStatus;
|
|
26735
26779
|
/**
|
|
26780
|
+
* Returns the regionalized price level of a user, representing the recommended price for an item in their regional market.
|
|
26781
|
+
*
|
|
26736
26782
|
* - **ThreadSafety**: Unsafe
|
|
26737
26783
|
* - **Tags**: Yields
|
|
26738
26784
|
*
|
|
26739
26785
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#GetUsersPriceLevelsAsync)
|
|
26740
26786
|
* @param this The service responsible for in-experience transactions.
|
|
26741
|
-
* @param userIds
|
|
26787
|
+
* @param userIds An array of user IDs.
|
|
26788
|
+
* @returns Returns an array of `PriceLevelInfo` objects with a dictionary where the keys are user IDs (strings) and their values are the corresponding price levels (integers between 1 and 1000).
|
|
26742
26789
|
*/
|
|
26743
26790
|
GetUsersPriceLevelsAsync(this: MarketplaceService, userIds: Array<unknown>): Array<unknown>;
|
|
26744
26791
|
/**
|
|
@@ -29916,6 +29963,8 @@ interface MeshPart extends TriangleMeshPart {
|
|
|
29916
29963
|
*/
|
|
29917
29964
|
get DoubleSided(): boolean;
|
|
29918
29965
|
/**
|
|
29966
|
+
* **Deprecated:**
|
|
29967
|
+
*
|
|
29919
29968
|
* - **ThreadSafety**: ReadSafe
|
|
29920
29969
|
* - **Tags**: Hidden
|
|
29921
29970
|
*
|
|
@@ -29932,6 +29981,8 @@ interface MeshPart extends TriangleMeshPart {
|
|
|
29932
29981
|
*/
|
|
29933
29982
|
get HasSkinnedMesh(): boolean;
|
|
29934
29983
|
/**
|
|
29984
|
+
* **Deprecated:**
|
|
29985
|
+
*
|
|
29935
29986
|
* - **ThreadSafety**: ReadSafe
|
|
29936
29987
|
* - **Tags**: Hidden
|
|
29937
29988
|
*
|
|
@@ -31605,7 +31656,7 @@ interface Workspace extends WorldRoot {
|
|
|
31605
31656
|
readonly PersistentLoaded: RBXScriptSignal<(player: Player) => void>;
|
|
31606
31657
|
}
|
|
31607
31658
|
/**
|
|
31608
|
-
*
|
|
31659
|
+
* Extends limited physics for its children on to a parent `ViewportFrame`.
|
|
31609
31660
|
*
|
|
31610
31661
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldModel)
|
|
31611
31662
|
*/
|
|
@@ -34412,7 +34463,7 @@ interface Players extends Instance {
|
|
|
34412
34463
|
*
|
|
34413
34464
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Players#PlayerRemoving)
|
|
34414
34465
|
*/
|
|
34415
|
-
readonly PlayerRemoving: RBXScriptSignal<(player: Player) => void>;
|
|
34466
|
+
readonly PlayerRemoving: RBXScriptSignal<(player: Player, reason: Enum.PlayerExitReason) => void>;
|
|
34416
34467
|
/**
|
|
34417
34468
|
* Fires when the game server recognizes that the user's status for a certain subscription has changed.
|
|
34418
34469
|
*
|
|
@@ -35819,6 +35870,13 @@ interface RunService extends Instance {
|
|
|
35819
35870
|
* @deprecated
|
|
35820
35871
|
*/
|
|
35821
35872
|
readonly _nominal_RunService: unique symbol;
|
|
35873
|
+
/**
|
|
35874
|
+
* - **ThreadSafety**: ReadSafe
|
|
35875
|
+
* - **Tags**: NotReplicated
|
|
35876
|
+
*
|
|
35877
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#PredictionState)
|
|
35878
|
+
*/
|
|
35879
|
+
readonly PredictionState: Enum.PredictionState;
|
|
35822
35880
|
/**
|
|
35823
35881
|
* - **ThreadSafety**: ReadSafe
|
|
35824
35882
|
* - **Tags**: NotReplicated
|
|
@@ -35912,6 +35970,12 @@ interface RunService extends Instance {
|
|
|
35912
35970
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#Heartbeat)
|
|
35913
35971
|
*/
|
|
35914
35972
|
readonly Heartbeat: RBXScriptSignal<(deltaTime: number) => void>;
|
|
35973
|
+
/**
|
|
35974
|
+
* - **ThreadSafety**: Unsafe
|
|
35975
|
+
*
|
|
35976
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#Misprediction)
|
|
35977
|
+
*/
|
|
35978
|
+
readonly Misprediction: RBXScriptSignal<(remoteWorldStepId: number, mispredictedInstances: Array<unknown>) => void>;
|
|
35915
35979
|
/**
|
|
35916
35980
|
* Fires every frame, after the physics simulation has completed.
|
|
35917
35981
|
*
|
|
@@ -35961,6 +36025,39 @@ interface RunService extends Instance {
|
|
|
35961
36025
|
*/
|
|
35962
36026
|
readonly Stepped: RBXScriptSignal<(time: number, deltaTime: number) => void>;
|
|
35963
36027
|
}
|
|
36028
|
+
/**
|
|
36029
|
+
* - **Tags**: NotCreatable, Service
|
|
36030
|
+
*
|
|
36031
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RuntimeContentService)
|
|
36032
|
+
*/
|
|
36033
|
+
interface RuntimeContentService extends Instance {
|
|
36034
|
+
/**
|
|
36035
|
+
* **DO NOT USE!**
|
|
36036
|
+
*
|
|
36037
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
36038
|
+
* @hidden
|
|
36039
|
+
* @deprecated
|
|
36040
|
+
*/
|
|
36041
|
+
readonly _nominal_RuntimeContentService: unique symbol;
|
|
36042
|
+
/**
|
|
36043
|
+
* - **ThreadSafety**: Unsafe
|
|
36044
|
+
*
|
|
36045
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RuntimeContentService#RuntimeContentFail)
|
|
36046
|
+
*/
|
|
36047
|
+
readonly RuntimeContentFail: RBXScriptSignal<(id: string) => void>;
|
|
36048
|
+
/**
|
|
36049
|
+
* - **ThreadSafety**: Unsafe
|
|
36050
|
+
*
|
|
36051
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RuntimeContentService#RuntimeContentQuery)
|
|
36052
|
+
*/
|
|
36053
|
+
readonly RuntimeContentQuery: RBXScriptSignal<(id: string, content: string) => void>;
|
|
36054
|
+
/**
|
|
36055
|
+
* - **ThreadSafety**: Unsafe
|
|
36056
|
+
*
|
|
36057
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RuntimeContentService#RuntimeContentShare)
|
|
36058
|
+
*/
|
|
36059
|
+
readonly RuntimeContentShare: RBXScriptSignal<(id: string, content: string) => void>;
|
|
36060
|
+
}
|
|
35964
36061
|
/**
|
|
35965
36062
|
* - **Tags**: NotCreatable, Service
|
|
35966
36063
|
*
|
|
@@ -37441,10 +37538,13 @@ interface SocialService extends Instance {
|
|
|
37441
37538
|
*/
|
|
37442
37539
|
GetPartyAsync(this: SocialService, partyId: string): Array<unknown>;
|
|
37443
37540
|
/**
|
|
37541
|
+
* Prompts the player to submit feedback about the current experience.
|
|
37542
|
+
*
|
|
37444
37543
|
* - **ThreadSafety**: Unsafe
|
|
37445
37544
|
* - **Tags**: Yields
|
|
37446
37545
|
*
|
|
37447
37546
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#PromptFeedbackSubmissionAsync)
|
|
37547
|
+
* @param this Facilitates social functions that impact relationships made on the Roblox platform.
|
|
37448
37548
|
*/
|
|
37449
37549
|
PromptFeedbackSubmissionAsync(this: SocialService): void;
|
|
37450
37550
|
/**
|
|
@@ -37453,8 +37553,13 @@ interface SocialService extends Instance {
|
|
|
37453
37553
|
*
|
|
37454
37554
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#PromptLinkSharing)
|
|
37455
37555
|
* @param this Facilitates social functions that impact relationships made on the Roblox platform.
|
|
37456
|
-
* @param player
|
|
37457
|
-
* @param options
|
|
37556
|
+
* @param player Prompts the given `Player` with a Roblox platform-level share sheet with a generated share link.
|
|
37557
|
+
* @param options `Dictionary` that specifies the configuration for the generated link. It includes the following optional key-value pairs: - `FallbackLinkId` (string). Determines how this share link will direct player to once expired. Default to experience join link.
|
|
37558
|
+
* - `ExpirationSeconds` (number). Determines time to expiration once the share link is created. Truncates to nearest integer. Defaults to 86,400.
|
|
37559
|
+
* - `PreviewTitle` (string) Preview title of the share link.
|
|
37560
|
+
* - `PreiviewDescription` (string) Preview description of the share link.
|
|
37561
|
+
* - `PreviewAssettId` (number) Image asset ID used for share link preview.
|
|
37562
|
+
* - `LaunchData` (string). Used to set a parameter in `Player:GetJoinData()` when a player joined using the generated share link.
|
|
37458
37563
|
*/
|
|
37459
37564
|
PromptLinkSharing(this: SocialService, player: Player, options?: object): unknown;
|
|
37460
37565
|
/**
|
|
@@ -45409,7 +45514,7 @@ interface VideoDeviceInput extends Instance {
|
|
|
45409
45514
|
readonly IsReady: boolean;
|
|
45410
45515
|
}
|
|
45411
45516
|
/**
|
|
45412
|
-
*
|
|
45517
|
+
* Used to play video assets.
|
|
45413
45518
|
*
|
|
45414
45519
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer)
|
|
45415
45520
|
*/
|
|
@@ -45423,6 +45528,8 @@ interface VideoPlayer extends Instance {
|
|
|
45423
45528
|
*/
|
|
45424
45529
|
readonly _nominal_VideoPlayer: unique symbol;
|
|
45425
45530
|
/**
|
|
45531
|
+
* Indicates when the `VideoContent` has loaded and is ready to play.
|
|
45532
|
+
*
|
|
45426
45533
|
* - **ThreadSafety**: ReadSafe
|
|
45427
45534
|
* - **Tags**: NotReplicated
|
|
45428
45535
|
*
|
|
@@ -45430,6 +45537,8 @@ interface VideoPlayer extends Instance {
|
|
|
45430
45537
|
*/
|
|
45431
45538
|
readonly IsLoaded: boolean;
|
|
45432
45539
|
/**
|
|
45540
|
+
* Denotes whether this `VideoPlayer` is currently playing.
|
|
45541
|
+
*
|
|
45433
45542
|
* - **ThreadSafety**: ReadSafe
|
|
45434
45543
|
* - **Tags**: NotReplicated
|
|
45435
45544
|
*
|
|
@@ -45437,18 +45546,24 @@ interface VideoPlayer extends Instance {
|
|
|
45437
45546
|
*/
|
|
45438
45547
|
readonly IsPlaying: boolean;
|
|
45439
45548
|
/**
|
|
45549
|
+
* Controls whether this `VideoPlayer` loops.
|
|
45550
|
+
*
|
|
45440
45551
|
* - **ThreadSafety**: ReadSafe
|
|
45441
45552
|
*
|
|
45442
45553
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#Looping)
|
|
45443
45554
|
*/
|
|
45444
45555
|
Looping: boolean;
|
|
45445
45556
|
/**
|
|
45557
|
+
* Controls the speed at which the video is played.
|
|
45558
|
+
*
|
|
45446
45559
|
* - **ThreadSafety**: ReadSafe
|
|
45447
45560
|
*
|
|
45448
45561
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#PlaybackSpeed)
|
|
45449
45562
|
*/
|
|
45450
45563
|
PlaybackSpeed: number;
|
|
45451
45564
|
/**
|
|
45565
|
+
* Gets the original source resolution of the `VideoContent` file.
|
|
45566
|
+
*
|
|
45452
45567
|
* - **ThreadSafety**: ReadSafe
|
|
45453
45568
|
* - **Tags**: NotReplicated
|
|
45454
45569
|
*
|
|
@@ -45456,6 +45571,8 @@ interface VideoPlayer extends Instance {
|
|
|
45456
45571
|
*/
|
|
45457
45572
|
readonly Resolution: Vector2;
|
|
45458
45573
|
/**
|
|
45574
|
+
* Indicates the length of the `VideoContent` in seconds.
|
|
45575
|
+
*
|
|
45459
45576
|
* - **ThreadSafety**: ReadSafe
|
|
45460
45577
|
* - **Tags**: NotReplicated
|
|
45461
45578
|
*
|
|
@@ -45463,28 +45580,36 @@ interface VideoPlayer extends Instance {
|
|
|
45463
45580
|
*/
|
|
45464
45581
|
readonly TimeLength: number;
|
|
45465
45582
|
/**
|
|
45583
|
+
* Indicates the progress in seconds of the `VideoContent`.
|
|
45584
|
+
*
|
|
45466
45585
|
* - **ThreadSafety**: ReadSafe
|
|
45467
45586
|
*
|
|
45468
45587
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#TimePosition)
|
|
45469
45588
|
*/
|
|
45470
45589
|
TimePosition: number;
|
|
45471
45590
|
/**
|
|
45591
|
+
* The asset to be loaded into the `VideoPlayer`.
|
|
45592
|
+
*
|
|
45472
45593
|
* - **ThreadSafety**: ReadSafe
|
|
45473
45594
|
*
|
|
45474
45595
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#VideoContent)
|
|
45475
45596
|
*/
|
|
45476
45597
|
VideoContent: Content;
|
|
45477
45598
|
/**
|
|
45599
|
+
* Controls how loudly the audio track will be played.
|
|
45600
|
+
*
|
|
45478
45601
|
* - **ThreadSafety**: ReadSafe
|
|
45479
45602
|
*
|
|
45480
45603
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#Volume)
|
|
45481
45604
|
*/
|
|
45482
45605
|
Volume: number;
|
|
45483
45606
|
/**
|
|
45607
|
+
* Returns an array of `Wires` that are connected to the specified pin.
|
|
45608
|
+
*
|
|
45484
45609
|
* - **ThreadSafety**: Unsafe
|
|
45485
45610
|
*
|
|
45486
45611
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#GetConnectedWires)
|
|
45487
|
-
* @param this
|
|
45612
|
+
* @param this Used to play video assets.
|
|
45488
45613
|
* @param pin
|
|
45489
45614
|
*/
|
|
45490
45615
|
GetConnectedWires(this: VideoPlayer, pin: string): Array<Instance>;
|
|
@@ -45492,52 +45617,64 @@ interface VideoPlayer extends Instance {
|
|
|
45492
45617
|
* - **ThreadSafety**: Unsafe
|
|
45493
45618
|
*
|
|
45494
45619
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#GetInputPins)
|
|
45495
|
-
* @param this
|
|
45620
|
+
* @param this Used to play video assets.
|
|
45496
45621
|
*/
|
|
45497
45622
|
GetInputPins(this: VideoPlayer): Array<unknown>;
|
|
45498
45623
|
/**
|
|
45499
45624
|
* - **ThreadSafety**: Unsafe
|
|
45500
45625
|
*
|
|
45501
45626
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#GetOutputPins)
|
|
45502
|
-
* @param this
|
|
45627
|
+
* @param this Used to play video assets.
|
|
45503
45628
|
*/
|
|
45504
45629
|
GetOutputPins(this: VideoPlayer): Array<unknown>;
|
|
45505
45630
|
/**
|
|
45631
|
+
* Pauses the `VideoPlayer` wherever its `TimePosition` is.
|
|
45632
|
+
*
|
|
45506
45633
|
* - **ThreadSafety**: Unsafe
|
|
45507
45634
|
*
|
|
45508
45635
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#Pause)
|
|
45509
|
-
* @param this
|
|
45636
|
+
* @param this Used to play video assets.
|
|
45510
45637
|
*/
|
|
45511
45638
|
Pause(this: VideoPlayer): void;
|
|
45512
45639
|
/**
|
|
45640
|
+
* Plays the `VideoPlayer` from wherever its `TimePosition` is.
|
|
45641
|
+
*
|
|
45513
45642
|
* - **ThreadSafety**: Unsafe
|
|
45514
45643
|
*
|
|
45515
45644
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#Play)
|
|
45516
|
-
* @param this
|
|
45645
|
+
* @param this Used to play video assets.
|
|
45517
45646
|
*/
|
|
45518
45647
|
Play(this: VideoPlayer): void;
|
|
45519
45648
|
/**
|
|
45649
|
+
* Unloads the `VideoPlayer.VideoContent` to save resources.
|
|
45650
|
+
*
|
|
45520
45651
|
* - **ThreadSafety**: Unsafe
|
|
45521
45652
|
*
|
|
45522
45653
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#Unload)
|
|
45523
|
-
* @param this
|
|
45654
|
+
* @param this Used to play video assets.
|
|
45524
45655
|
*/
|
|
45525
45656
|
Unload(this: VideoPlayer): void;
|
|
45526
45657
|
/**
|
|
45658
|
+
* Loads the `VideoContent` before it is played.
|
|
45659
|
+
*
|
|
45527
45660
|
* - **ThreadSafety**: Unsafe
|
|
45528
45661
|
* - **Tags**: Yields
|
|
45529
45662
|
*
|
|
45530
45663
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#LoadAsync)
|
|
45531
|
-
* @param this
|
|
45664
|
+
* @param this Used to play video assets.
|
|
45532
45665
|
*/
|
|
45533
45666
|
LoadAsync(this: VideoPlayer): Enum.AssetFetchStatus;
|
|
45534
45667
|
/**
|
|
45668
|
+
* Fires when the `VideoContent` has completed playback and stopped.
|
|
45669
|
+
*
|
|
45535
45670
|
* - **ThreadSafety**: Unsafe
|
|
45536
45671
|
*
|
|
45537
45672
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#DidEnd)
|
|
45538
45673
|
*/
|
|
45539
45674
|
readonly DidEnd: RBXScriptSignal<() => void>;
|
|
45540
45675
|
/**
|
|
45676
|
+
* Fires when the `VideoContent` loops.
|
|
45677
|
+
*
|
|
45541
45678
|
* - **ThreadSafety**: Unsafe
|
|
45542
45679
|
*
|
|
45543
45680
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#DidLoop)
|
|
@@ -45550,6 +45687,8 @@ interface VideoPlayer extends Instance {
|
|
|
45550
45687
|
*/
|
|
45551
45688
|
readonly PlayFailed: RBXScriptSignal<(error: Enum.AssetFetchStatus) => void>;
|
|
45552
45689
|
/**
|
|
45690
|
+
* Fires when another instance is connected to or disconnected from the `VideoPlayer` via a `Wire`.
|
|
45691
|
+
*
|
|
45553
45692
|
* - **ThreadSafety**: Unsafe
|
|
45554
45693
|
*
|
|
45555
45694
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#WiringChanged)
|
|
@@ -46038,7 +46177,7 @@ interface Wire extends Instance {
|
|
|
46038
46177
|
TargetName: string;
|
|
46039
46178
|
}
|
|
46040
46179
|
/**
|
|
46041
|
-
*
|
|
46180
|
+
* `WrapTextureTransfer` allows a parent `Decal` to be wrapped around its parent `MeshPart` based on the cage of its `WrapTarget`.
|
|
46042
46181
|
*
|
|
46043
46182
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapTextureTransfer)
|
|
46044
46183
|
*/
|
|
@@ -46052,18 +46191,24 @@ interface WrapTextureTransfer extends Instance {
|
|
|
46052
46191
|
*/
|
|
46053
46192
|
readonly _nominal_WrapTextureTransfer: unique symbol;
|
|
46054
46193
|
/**
|
|
46194
|
+
* An optional reference mesh used for pruning and validating the target cage.
|
|
46195
|
+
*
|
|
46055
46196
|
* - **ThreadSafety**: ReadSafe
|
|
46056
46197
|
*
|
|
46057
46198
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapTextureTransfer#ReferenceCageMeshContent)
|
|
46058
46199
|
*/
|
|
46059
46200
|
ReferenceCageMeshContent: Content;
|
|
46060
46201
|
/**
|
|
46202
|
+
* Determines the maximum bound of the UV space to include in the transfer.
|
|
46203
|
+
*
|
|
46061
46204
|
* - **ThreadSafety**: ReadSafe
|
|
46062
46205
|
*
|
|
46063
46206
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapTextureTransfer#UVMaxBound)
|
|
46064
46207
|
*/
|
|
46065
46208
|
UVMaxBound: Vector2;
|
|
46066
46209
|
/**
|
|
46210
|
+
* Determines the minimum bound of the UV space to include in the transfer.
|
|
46211
|
+
*
|
|
46067
46212
|
* - **ThreadSafety**: ReadSafe
|
|
46068
46213
|
*
|
|
46069
46214
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapTextureTransfer#UVMinBound)
|
|
@@ -92,6 +92,7 @@ interface Services {
|
|
|
92
92
|
ILegacyStudioBridge: ILegacyStudioBridge;
|
|
93
93
|
IncrementalPatchBuilder: IncrementalPatchBuilder;
|
|
94
94
|
InsertService: InsertService;
|
|
95
|
+
InstanceExtensionsService: InstanceExtensionsService;
|
|
95
96
|
InternalSyncService: InternalSyncService;
|
|
96
97
|
IXPService: IXPService;
|
|
97
98
|
JointsService: JointsService;
|
|
@@ -164,6 +165,7 @@ interface Services {
|
|
|
164
165
|
RomarkService: RomarkService;
|
|
165
166
|
RtMessagingService: RtMessagingService;
|
|
166
167
|
RunService: RunService;
|
|
168
|
+
RuntimeContentService: RuntimeContentService;
|
|
167
169
|
SafetyService: SafetyService;
|
|
168
170
|
ScriptChangeService: ScriptChangeService;
|
|
169
171
|
ScriptCloneWatcher: ScriptCloneWatcher;
|
|
@@ -1917,8 +1919,6 @@ interface AudioTextToSpeech extends Instance {
|
|
|
1917
1919
|
/**
|
|
1918
1920
|
* Creates a trembling effect on a sound by varying the volume of the sound up and down.
|
|
1919
1921
|
*
|
|
1920
|
-
* - **Tags**: NotBrowsable
|
|
1921
|
-
*
|
|
1922
1922
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTremolo)
|
|
1923
1923
|
*/
|
|
1924
1924
|
interface AudioTremolo extends Instance {
|
|
@@ -5993,7 +5993,7 @@ interface TextBox extends GuiObject {
|
|
|
5993
5993
|
readonly _nominal_TextBox: unique symbol;
|
|
5994
5994
|
}
|
|
5995
5995
|
/**
|
|
5996
|
-
*
|
|
5996
|
+
* A GUI object that displays video content from a connected `VideoPlayer`.
|
|
5997
5997
|
*
|
|
5998
5998
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay)
|
|
5999
5999
|
*/
|
|
@@ -7046,6 +7046,21 @@ interface InsertService extends Instance {
|
|
|
7046
7046
|
*/
|
|
7047
7047
|
readonly _nominal_InsertService: unique symbol;
|
|
7048
7048
|
}
|
|
7049
|
+
/**
|
|
7050
|
+
* - **Tags**: NotCreatable, Service
|
|
7051
|
+
*
|
|
7052
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InstanceExtensionsService)
|
|
7053
|
+
*/
|
|
7054
|
+
interface InstanceExtensionsService extends Instance {
|
|
7055
|
+
/**
|
|
7056
|
+
* **DO NOT USE!**
|
|
7057
|
+
*
|
|
7058
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
7059
|
+
* @hidden
|
|
7060
|
+
* @deprecated
|
|
7061
|
+
*/
|
|
7062
|
+
readonly _nominal_InstanceExtensionsService: unique symbol;
|
|
7063
|
+
}
|
|
7049
7064
|
/**
|
|
7050
7065
|
* - **Tags**: NotReplicated
|
|
7051
7066
|
*
|
|
@@ -9179,7 +9194,7 @@ interface Workspace extends WorldRoot {
|
|
|
9179
9194
|
ZoomToExtents(this: Workspace): void;
|
|
9180
9195
|
}
|
|
9181
9196
|
/**
|
|
9182
|
-
*
|
|
9197
|
+
* Extends limited physics for its children on to a parent `ViewportFrame`.
|
|
9183
9198
|
*
|
|
9184
9199
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldModel)
|
|
9185
9200
|
*/
|
|
@@ -11207,6 +11222,21 @@ interface RunService extends Instance {
|
|
|
11207
11222
|
*/
|
|
11208
11223
|
Stop(this: RunService): void;
|
|
11209
11224
|
}
|
|
11225
|
+
/**
|
|
11226
|
+
* - **Tags**: NotCreatable, Service
|
|
11227
|
+
*
|
|
11228
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RuntimeContentService)
|
|
11229
|
+
*/
|
|
11230
|
+
interface RuntimeContentService extends Instance {
|
|
11231
|
+
/**
|
|
11232
|
+
* **DO NOT USE!**
|
|
11233
|
+
*
|
|
11234
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
11235
|
+
* @hidden
|
|
11236
|
+
* @deprecated
|
|
11237
|
+
*/
|
|
11238
|
+
readonly _nominal_RuntimeContentService: unique symbol;
|
|
11239
|
+
}
|
|
11210
11240
|
/**
|
|
11211
11241
|
* - **Tags**: NotCreatable, Service
|
|
11212
11242
|
*
|
|
@@ -14975,7 +15005,7 @@ interface VideoDeviceInput extends Instance {
|
|
|
14975
15005
|
readonly _nominal_VideoDeviceInput: unique symbol;
|
|
14976
15006
|
}
|
|
14977
15007
|
/**
|
|
14978
|
-
*
|
|
15008
|
+
* Used to play video assets.
|
|
14979
15009
|
*
|
|
14980
15010
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer)
|
|
14981
15011
|
*/
|
|
@@ -15194,7 +15224,7 @@ interface Wire extends Instance {
|
|
|
15194
15224
|
readonly _nominal_Wire: unique symbol;
|
|
15195
15225
|
}
|
|
15196
15226
|
/**
|
|
15197
|
-
*
|
|
15227
|
+
* `WrapTextureTransfer` allows a parent `Decal` to be wrapped around its parent `MeshPart` based on the cage of its `WrapTarget`.
|
|
15198
15228
|
*
|
|
15199
15229
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapTextureTransfer)
|
|
15200
15230
|
*/
|
|
@@ -7680,6 +7680,87 @@ declare namespace Enum {
|
|
|
7680
7680
|
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
7681
7681
|
}
|
|
7682
7682
|
export const Unknown: Unknown;
|
|
7683
|
+
/**
|
|
7684
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#ConnectErrors)
|
|
7685
|
+
*/
|
|
7686
|
+
export interface ConnectErrors extends globalThis.EnumItem {
|
|
7687
|
+
Name: "ConnectErrors";
|
|
7688
|
+
Value: 2;
|
|
7689
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
7690
|
+
}
|
|
7691
|
+
export const ConnectErrors: ConnectErrors;
|
|
7692
|
+
/**
|
|
7693
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#AlreadyConnected)
|
|
7694
|
+
*/
|
|
7695
|
+
export interface AlreadyConnected extends globalThis.EnumItem {
|
|
7696
|
+
Name: "AlreadyConnected";
|
|
7697
|
+
Value: 3;
|
|
7698
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
7699
|
+
}
|
|
7700
|
+
export const AlreadyConnected: AlreadyConnected;
|
|
7701
|
+
/**
|
|
7702
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#NoFreeIncomingConnections)
|
|
7703
|
+
*/
|
|
7704
|
+
export interface NoFreeIncomingConnections extends globalThis.EnumItem {
|
|
7705
|
+
Name: "NoFreeIncomingConnections";
|
|
7706
|
+
Value: 4;
|
|
7707
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
7708
|
+
}
|
|
7709
|
+
export const NoFreeIncomingConnections: NoFreeIncomingConnections;
|
|
7710
|
+
/**
|
|
7711
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#ConnectionBanned)
|
|
7712
|
+
*/
|
|
7713
|
+
export interface ConnectionBanned extends globalThis.EnumItem {
|
|
7714
|
+
Name: "ConnectionBanned";
|
|
7715
|
+
Value: 5;
|
|
7716
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
7717
|
+
}
|
|
7718
|
+
export const ConnectionBanned: ConnectionBanned;
|
|
7719
|
+
/**
|
|
7720
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#InvalidPassword)
|
|
7721
|
+
*/
|
|
7722
|
+
export interface InvalidPassword extends globalThis.EnumItem {
|
|
7723
|
+
Name: "InvalidPassword";
|
|
7724
|
+
Value: 6;
|
|
7725
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
7726
|
+
}
|
|
7727
|
+
export const InvalidPassword: InvalidPassword;
|
|
7728
|
+
/**
|
|
7729
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#IncompatibleProtocolVersion)
|
|
7730
|
+
*/
|
|
7731
|
+
export interface IncompatibleProtocolVersion extends globalThis.EnumItem {
|
|
7732
|
+
Name: "IncompatibleProtocolVersion";
|
|
7733
|
+
Value: 7;
|
|
7734
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
7735
|
+
}
|
|
7736
|
+
export const IncompatibleProtocolVersion: IncompatibleProtocolVersion;
|
|
7737
|
+
/**
|
|
7738
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#IPRecentlyConnected)
|
|
7739
|
+
*/
|
|
7740
|
+
export interface IPRecentlyConnected extends globalThis.EnumItem {
|
|
7741
|
+
Name: "IPRecentlyConnected";
|
|
7742
|
+
Value: 8;
|
|
7743
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
7744
|
+
}
|
|
7745
|
+
export const IPRecentlyConnected: IPRecentlyConnected;
|
|
7746
|
+
/**
|
|
7747
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#OurSystemRequiresSecurity)
|
|
7748
|
+
*/
|
|
7749
|
+
export interface OurSystemRequiresSecurity extends globalThis.EnumItem {
|
|
7750
|
+
Name: "OurSystemRequiresSecurity";
|
|
7751
|
+
Value: 9;
|
|
7752
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
7753
|
+
}
|
|
7754
|
+
export const OurSystemRequiresSecurity: OurSystemRequiresSecurity;
|
|
7755
|
+
/**
|
|
7756
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#SecurityKeyMismatch)
|
|
7757
|
+
*/
|
|
7758
|
+
export interface SecurityKeyMismatch extends globalThis.EnumItem {
|
|
7759
|
+
Name: "SecurityKeyMismatch";
|
|
7760
|
+
Value: 10;
|
|
7761
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
7762
|
+
}
|
|
7763
|
+
export const SecurityKeyMismatch: SecurityKeyMismatch;
|
|
7683
7764
|
/**
|
|
7684
7765
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectErrors)
|
|
7685
7766
|
*/
|
|
@@ -8130,6 +8211,15 @@ declare namespace Enum {
|
|
|
8130
8211
|
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
8131
8212
|
}
|
|
8132
8213
|
export const ScreentimeLockoutKick: ScreentimeLockoutKick;
|
|
8214
|
+
/**
|
|
8215
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectionNotification)
|
|
8216
|
+
*/
|
|
8217
|
+
export interface DisconnectionNotification extends globalThis.EnumItem {
|
|
8218
|
+
Name: "DisconnectionNotification";
|
|
8219
|
+
Value: 308;
|
|
8220
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
8221
|
+
}
|
|
8222
|
+
export const DisconnectionNotification: DisconnectionNotification;
|
|
8133
8223
|
/**
|
|
8134
8224
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#PlacelaunchErrors)
|
|
8135
8225
|
*/
|
|
@@ -8359,7 +8449,7 @@ declare namespace Enum {
|
|
|
8359
8449
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ConnectionError | undefined;
|
|
8360
8450
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ConnectionError | undefined;
|
|
8361
8451
|
}
|
|
8362
|
-
export type ConnectionError = ConnectionError.OK | ConnectionError.Unknown | ConnectionError.DisconnectErrors | ConnectionError.DisconnectBadhash | ConnectionError.DisconnectSecurityKeyMismatch | ConnectionError.DisconnectProtocolMismatch | ConnectionError.DisconnectReceivePacketError | ConnectionError.DisconnectReceivePacketStreamError | ConnectionError.DisconnectSendPacketError | ConnectionError.DisconnectIllegalTeleport | ConnectionError.DisconnectDuplicatePlayer | ConnectionError.DisconnectDuplicateTicket | ConnectionError.DisconnectTimeout | ConnectionError.DisconnectLuaKick | ConnectionError.DisconnectOnRemoteSysStats | ConnectionError.DisconnectHashTimeout | ConnectionError.DisconnectCloudEditKick | ConnectionError.DisconnectPlayerless | ConnectionError.DisconnectNewSecurityKeyMismatch | ConnectionError.DisconnectEvicted | ConnectionError.DisconnectDevMaintenance | ConnectionError.DisconnectRobloxMaintenance | ConnectionError.DisconnectRejoin | ConnectionError.DisconnectConnectionLost | ConnectionError.DisconnectIdle | ConnectionError.DisconnectRaknetErrors | ConnectionError.DisconnectWrongVersion | ConnectionError.DisconnectBySecurityPolicy | ConnectionError.DisconnectBlockedIP | ConnectionError.DisconnectClientFailure | ConnectionError.DisconnectClientRequest | ConnectionError.DisconnectPrivateServerKickout | ConnectionError.DisconnectModeratedGame | ConnectionError.ServerShutdown | ConnectionError.ReplicatorTimeout | ConnectionError.PlayerRemoved | ConnectionError.DisconnectOutOfMemoryKeepPlayingLeave | ConnectionError.DisconnectRomarkEndOfTest | ConnectionError.DisconnectCollaboratorPermissionRevoked | ConnectionError.DisconnectCollaboratorUnderage | ConnectionError.NetworkInternal | ConnectionError.NetworkSend | ConnectionError.NetworkTimeout | ConnectionError.NetworkMisbehavior | ConnectionError.NetworkSecurity | ConnectionError.ReplacementReady | ConnectionError.ServerEmpty | ConnectionError.PhantomFreeze | ConnectionError.AndroidAnticheatKick | ConnectionError.AndroidEmulatorKick | ConnectionError.AndroidRootedKick | ConnectionError.ScreentimeLockoutKick | ConnectionError.PlacelaunchErrors | ConnectionError.PlacelaunchDisabled | ConnectionError.PlacelaunchError | ConnectionError.PlacelaunchGameEnded | ConnectionError.PlacelaunchGameFull | ConnectionError.PlacelaunchUserLeft | ConnectionError.PlacelaunchRestricted | ConnectionError.PlacelaunchUnauthorized | ConnectionError.PlacelaunchFlooded | ConnectionError.PlacelaunchHashExpired | ConnectionError.PlacelaunchHashException | ConnectionError.PlacelaunchPartyCannotFit | ConnectionError.PlacelaunchHttpError | ConnectionError.PlacelaunchUserPrivacyUnauthorized | ConnectionError.PlacelaunchCreatorBan | ConnectionError.PlacelaunchCustomMessage | ConnectionError.PlacelaunchOtherError | ConnectionError.TeleportErrors | ConnectionError.TeleportFailure | ConnectionError.TeleportGameNotFound | ConnectionError.TeleportGameEnded | ConnectionError.TeleportGameFull | ConnectionError.TeleportUnauthorized | ConnectionError.TeleportFlooded | ConnectionError.TeleportIsTeleporting;
|
|
8452
|
+
export type ConnectionError = ConnectionError.OK | ConnectionError.Unknown | ConnectionError.ConnectErrors | ConnectionError.AlreadyConnected | ConnectionError.NoFreeIncomingConnections | ConnectionError.ConnectionBanned | ConnectionError.InvalidPassword | ConnectionError.IncompatibleProtocolVersion | ConnectionError.IPRecentlyConnected | ConnectionError.OurSystemRequiresSecurity | ConnectionError.SecurityKeyMismatch | ConnectionError.DisconnectErrors | ConnectionError.DisconnectBadhash | ConnectionError.DisconnectSecurityKeyMismatch | ConnectionError.DisconnectProtocolMismatch | ConnectionError.DisconnectReceivePacketError | ConnectionError.DisconnectReceivePacketStreamError | ConnectionError.DisconnectSendPacketError | ConnectionError.DisconnectIllegalTeleport | ConnectionError.DisconnectDuplicatePlayer | ConnectionError.DisconnectDuplicateTicket | ConnectionError.DisconnectTimeout | ConnectionError.DisconnectLuaKick | ConnectionError.DisconnectOnRemoteSysStats | ConnectionError.DisconnectHashTimeout | ConnectionError.DisconnectCloudEditKick | ConnectionError.DisconnectPlayerless | ConnectionError.DisconnectNewSecurityKeyMismatch | ConnectionError.DisconnectEvicted | ConnectionError.DisconnectDevMaintenance | ConnectionError.DisconnectRobloxMaintenance | ConnectionError.DisconnectRejoin | ConnectionError.DisconnectConnectionLost | ConnectionError.DisconnectIdle | ConnectionError.DisconnectRaknetErrors | ConnectionError.DisconnectWrongVersion | ConnectionError.DisconnectBySecurityPolicy | ConnectionError.DisconnectBlockedIP | ConnectionError.DisconnectClientFailure | ConnectionError.DisconnectClientRequest | ConnectionError.DisconnectPrivateServerKickout | ConnectionError.DisconnectModeratedGame | ConnectionError.ServerShutdown | ConnectionError.ReplicatorTimeout | ConnectionError.PlayerRemoved | ConnectionError.DisconnectOutOfMemoryKeepPlayingLeave | ConnectionError.DisconnectRomarkEndOfTest | ConnectionError.DisconnectCollaboratorPermissionRevoked | ConnectionError.DisconnectCollaboratorUnderage | ConnectionError.NetworkInternal | ConnectionError.NetworkSend | ConnectionError.NetworkTimeout | ConnectionError.NetworkMisbehavior | ConnectionError.NetworkSecurity | ConnectionError.ReplacementReady | ConnectionError.ServerEmpty | ConnectionError.PhantomFreeze | ConnectionError.AndroidAnticheatKick | ConnectionError.AndroidEmulatorKick | ConnectionError.AndroidRootedKick | ConnectionError.ScreentimeLockoutKick | ConnectionError.DisconnectionNotification | ConnectionError.PlacelaunchErrors | ConnectionError.PlacelaunchDisabled | ConnectionError.PlacelaunchError | ConnectionError.PlacelaunchGameEnded | ConnectionError.PlacelaunchGameFull | ConnectionError.PlacelaunchUserLeft | ConnectionError.PlacelaunchRestricted | ConnectionError.PlacelaunchUnauthorized | ConnectionError.PlacelaunchFlooded | ConnectionError.PlacelaunchHashExpired | ConnectionError.PlacelaunchHashException | ConnectionError.PlacelaunchPartyCannotFit | ConnectionError.PlacelaunchHttpError | ConnectionError.PlacelaunchUserPrivacyUnauthorized | ConnectionError.PlacelaunchCreatorBan | ConnectionError.PlacelaunchCustomMessage | ConnectionError.PlacelaunchOtherError | ConnectionError.TeleportErrors | ConnectionError.TeleportFailure | ConnectionError.TeleportGameNotFound | ConnectionError.TeleportGameEnded | ConnectionError.TeleportGameFull | ConnectionError.TeleportUnauthorized | ConnectionError.TeleportFlooded | ConnectionError.TeleportIsTeleporting;
|
|
8363
8453
|
/**
|
|
8364
8454
|
* Used to determine the connection state of the client to the game server.
|
|
8365
8455
|
*
|
|
@@ -8432,11 +8522,20 @@ declare namespace Enum {
|
|
|
8432
8522
|
EnumType: typeof globalThis.Enum.ContentSourceType;
|
|
8433
8523
|
}
|
|
8434
8524
|
export const Object: Object;
|
|
8525
|
+
/**
|
|
8526
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ContentSourceType#Opaque)
|
|
8527
|
+
*/
|
|
8528
|
+
export interface Opaque extends globalThis.EnumItem {
|
|
8529
|
+
Name: "Opaque";
|
|
8530
|
+
Value: 3;
|
|
8531
|
+
EnumType: typeof globalThis.Enum.ContentSourceType;
|
|
8532
|
+
}
|
|
8533
|
+
export const Opaque: Opaque;
|
|
8435
8534
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ContentSourceType>;
|
|
8436
8535
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ContentSourceType | undefined;
|
|
8437
8536
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ContentSourceType | undefined;
|
|
8438
8537
|
}
|
|
8439
|
-
export type ContentSourceType = ContentSourceType.None | ContentSourceType.Uri | ContentSourceType.Object;
|
|
8538
|
+
export type ContentSourceType = ContentSourceType.None | ContentSourceType.Uri | ContentSourceType.Object | ContentSourceType.Opaque;
|
|
8440
8539
|
/**
|
|
8441
8540
|
* Describes the priority of a context action.
|
|
8442
8541
|
*
|
|
@@ -9724,6 +9823,8 @@ declare namespace Enum {
|
|
|
9724
9823
|
}
|
|
9725
9824
|
export const PhysicsCollision: PhysicsCollision;
|
|
9726
9825
|
/**
|
|
9826
|
+
* 3D parts used for simulation.
|
|
9827
|
+
*
|
|
9727
9828
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DeveloperMemoryTag#BaseParts)
|
|
9728
9829
|
*/
|
|
9729
9830
|
export interface BaseParts extends globalThis.EnumItem {
|
|
@@ -22257,6 +22358,8 @@ declare namespace Enum {
|
|
|
22257
22358
|
}
|
|
22258
22359
|
export const Grid8x8: Grid8x8;
|
|
22259
22360
|
/**
|
|
22361
|
+
* A custom grid size defined by `FlipbookSizeX` and `FlipbookSizeY`.
|
|
22362
|
+
*
|
|
22260
22363
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ParticleFlipbookLayout#Custom)
|
|
22261
22364
|
*/
|
|
22262
22365
|
export interface Custom extends globalThis.EnumItem {
|
|
@@ -23419,6 +23522,42 @@ declare namespace Enum {
|
|
|
23419
23522
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PlayerDataLoadFailureBehavior | undefined;
|
|
23420
23523
|
}
|
|
23421
23524
|
export type PlayerDataLoadFailureBehavior = PlayerDataLoadFailureBehavior.Failure | PlayerDataLoadFailureBehavior.FallbackToDefault | PlayerDataLoadFailureBehavior.Kick;
|
|
23525
|
+
/**
|
|
23526
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerExitReason)
|
|
23527
|
+
*/
|
|
23528
|
+
export namespace PlayerExitReason {
|
|
23529
|
+
/**
|
|
23530
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerExitReason#Unknown)
|
|
23531
|
+
*/
|
|
23532
|
+
export interface Unknown extends globalThis.EnumItem {
|
|
23533
|
+
Name: "Unknown";
|
|
23534
|
+
Value: 0;
|
|
23535
|
+
EnumType: typeof globalThis.Enum.PlayerExitReason;
|
|
23536
|
+
}
|
|
23537
|
+
export const Unknown: Unknown;
|
|
23538
|
+
/**
|
|
23539
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerExitReason#PlatformKick)
|
|
23540
|
+
*/
|
|
23541
|
+
export interface PlatformKick extends globalThis.EnumItem {
|
|
23542
|
+
Name: "PlatformKick";
|
|
23543
|
+
Value: 1;
|
|
23544
|
+
EnumType: typeof globalThis.Enum.PlayerExitReason;
|
|
23545
|
+
}
|
|
23546
|
+
export const PlatformKick: PlatformKick;
|
|
23547
|
+
/**
|
|
23548
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerExitReason#CreatorKick)
|
|
23549
|
+
*/
|
|
23550
|
+
export interface CreatorKick extends globalThis.EnumItem {
|
|
23551
|
+
Name: "CreatorKick";
|
|
23552
|
+
Value: 2;
|
|
23553
|
+
EnumType: typeof globalThis.Enum.PlayerExitReason;
|
|
23554
|
+
}
|
|
23555
|
+
export const CreatorKick: CreatorKick;
|
|
23556
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PlayerExitReason>;
|
|
23557
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PlayerExitReason | undefined;
|
|
23558
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PlayerExitReason | undefined;
|
|
23559
|
+
}
|
|
23560
|
+
export type PlayerExitReason = PlayerExitReason.Unknown | PlayerExitReason.PlatformKick | PlayerExitReason.CreatorKick;
|
|
23422
23561
|
/**
|
|
23423
23562
|
* Used exclusively by Pose.EasingDirection to specify direction of the EasingStyle curve.
|
|
23424
23563
|
*
|
|
@@ -23607,6 +23746,51 @@ declare namespace Enum {
|
|
|
23607
23746
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PredictionMode | undefined;
|
|
23608
23747
|
}
|
|
23609
23748
|
export type PredictionMode = PredictionMode.Automatic | PredictionMode.On | PredictionMode.Off;
|
|
23749
|
+
/**
|
|
23750
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionState)
|
|
23751
|
+
*/
|
|
23752
|
+
export namespace PredictionState {
|
|
23753
|
+
/**
|
|
23754
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionState#Idle)
|
|
23755
|
+
*/
|
|
23756
|
+
export interface Idle extends globalThis.EnumItem {
|
|
23757
|
+
Name: "Idle";
|
|
23758
|
+
Value: 0;
|
|
23759
|
+
EnumType: typeof globalThis.Enum.PredictionState;
|
|
23760
|
+
}
|
|
23761
|
+
export const Idle: Idle;
|
|
23762
|
+
/**
|
|
23763
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionState#Simulating)
|
|
23764
|
+
*/
|
|
23765
|
+
export interface Simulating extends globalThis.EnumItem {
|
|
23766
|
+
Name: "Simulating";
|
|
23767
|
+
Value: 1;
|
|
23768
|
+
EnumType: typeof globalThis.Enum.PredictionState;
|
|
23769
|
+
}
|
|
23770
|
+
export const Simulating: Simulating;
|
|
23771
|
+
/**
|
|
23772
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionState#RollingBack)
|
|
23773
|
+
*/
|
|
23774
|
+
export interface RollingBack extends globalThis.EnumItem {
|
|
23775
|
+
Name: "RollingBack";
|
|
23776
|
+
Value: 2;
|
|
23777
|
+
EnumType: typeof globalThis.Enum.PredictionState;
|
|
23778
|
+
}
|
|
23779
|
+
export const RollingBack: RollingBack;
|
|
23780
|
+
/**
|
|
23781
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionState#Resimulating)
|
|
23782
|
+
*/
|
|
23783
|
+
export interface Resimulating extends globalThis.EnumItem {
|
|
23784
|
+
Name: "Resimulating";
|
|
23785
|
+
Value: 3;
|
|
23786
|
+
EnumType: typeof globalThis.Enum.PredictionState;
|
|
23787
|
+
}
|
|
23788
|
+
export const Resimulating: Resimulating;
|
|
23789
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PredictionState>;
|
|
23790
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PredictionState | undefined;
|
|
23791
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PredictionState | undefined;
|
|
23792
|
+
}
|
|
23793
|
+
export type PredictionState = PredictionState.Idle | PredictionState.Simulating | PredictionState.RollingBack | PredictionState.Resimulating;
|
|
23610
23794
|
/**
|
|
23611
23795
|
* This enum is used with `UserInputService.PreferredInput` to indicate the primary input type a player is likely using.
|
|
23612
23796
|
*
|
|
@@ -23636,7 +23820,7 @@ declare namespace Enum {
|
|
|
23636
23820
|
}
|
|
23637
23821
|
export const Gamepad: Gamepad;
|
|
23638
23822
|
/**
|
|
23639
|
-
* The player's device has touch capability and no other input method is available or
|
|
23823
|
+
* The player's device has touch capability and no other input method is available or was recently interacted with.
|
|
23640
23824
|
*
|
|
23641
23825
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PreferredInput#Touch)
|
|
23642
23826
|
*/
|