@rbxts/types 1.0.888 → 1.0.889
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.
|
@@ -220,6 +220,7 @@ interface Services {
|
|
|
220
220
|
UserInputService: UserInputService;
|
|
221
221
|
UserService: UserService;
|
|
222
222
|
VideoCaptureService: VideoCaptureService;
|
|
223
|
+
VideoScreenCaptureService: VideoScreenCaptureService;
|
|
223
224
|
VideoService: VideoService;
|
|
224
225
|
VisibilityCheckDispatcher: VisibilityCheckDispatcher;
|
|
225
226
|
VisualizationModeService: VisualizationModeService;
|
|
@@ -722,6 +723,7 @@ interface Objects extends Instances {
|
|
|
722
723
|
TerrainReadOperation: TerrainReadOperation;
|
|
723
724
|
TerrainWriteOperation: TerrainWriteOperation;
|
|
724
725
|
VideoCapture: VideoCapture;
|
|
726
|
+
VideoSampler: VideoSampler;
|
|
725
727
|
WebStreamClient: WebStreamClient;
|
|
726
728
|
}
|
|
727
729
|
// GENERATED ROBLOX INSTANCE CLASSES
|
|
@@ -2470,8 +2472,11 @@ interface Instance extends RBXObject {
|
|
|
2470
2472
|
* - **Tags**: CustomLuaState
|
|
2471
2473
|
*
|
|
2472
2474
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#QueryDescendants)
|
|
2475
|
+
* @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
|
|
2476
|
+
* @param selector Selector string used to filter elements.
|
|
2477
|
+
* @returns An array of instances (empty if nothing matched the selector).
|
|
2473
2478
|
*/
|
|
2474
|
-
QueryDescendants(this: Instance,
|
|
2479
|
+
QueryDescendants(this: Instance, selector: string): Array<Instance>;
|
|
2475
2480
|
/**
|
|
2476
2481
|
* Removes a tag from the instance.
|
|
2477
2482
|
*
|
|
@@ -3629,6 +3634,18 @@ interface AnimationTrack extends Instance {
|
|
|
3629
3634
|
* @returns The signal created and fired when the animation reaches the created `KeyframeMarker`.
|
|
3630
3635
|
*/
|
|
3631
3636
|
GetMarkerReachedSignal(this: AnimationTrack, name: string): RBXScriptSignal<(param?: string) => void>;
|
|
3637
|
+
/**
|
|
3638
|
+
* - **ThreadSafety**: Unsafe
|
|
3639
|
+
*
|
|
3640
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationTrack#GetParameter)
|
|
3641
|
+
*/
|
|
3642
|
+
GetParameter(this: AnimationTrack, key: string): unknown;
|
|
3643
|
+
/**
|
|
3644
|
+
* - **ThreadSafety**: Unsafe
|
|
3645
|
+
*
|
|
3646
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationTrack#GetParameterDefaults)
|
|
3647
|
+
*/
|
|
3648
|
+
GetParameterDefaults(this: AnimationTrack): object;
|
|
3632
3649
|
/**
|
|
3633
3650
|
* - **ThreadSafety**: Unsafe
|
|
3634
3651
|
*
|
|
@@ -3668,6 +3685,12 @@ interface AnimationTrack extends Instance {
|
|
|
3668
3685
|
* @param speed The playback speed of the animation.
|
|
3669
3686
|
*/
|
|
3670
3687
|
Play(this: AnimationTrack, fadeTime?: number, weight?: number, speed?: number): void;
|
|
3688
|
+
/**
|
|
3689
|
+
* - **ThreadSafety**: Unsafe
|
|
3690
|
+
*
|
|
3691
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationTrack#SetParameter)
|
|
3692
|
+
*/
|
|
3693
|
+
SetParameter(this: AnimationTrack, key: string, value: unknown): void;
|
|
3671
3694
|
/**
|
|
3672
3695
|
* - **ThreadSafety**: Unsafe
|
|
3673
3696
|
*
|
|
@@ -4186,6 +4209,7 @@ interface AssetService extends Instance {
|
|
|
4186
4209
|
* - `MetalnessMap` — A `Content` object that contains the metalness map. If more than one channel is present, only the red channel is used. Default is `nil`.
|
|
4187
4210
|
* - `NormalMap` — A `Content` object that contains the normal map. Default is `nil`.
|
|
4188
4211
|
* - `RoughnessMap` — A `Content` object that contains the roughness map. If more than one channel is present, only the red channel is used. Default is `nil`.
|
|
4212
|
+
* - `EmissiveMask` — A `Content` object that contains the emissive mask. If more than one channel is present, only the red channel is used. Default is `nil`.
|
|
4189
4213
|
*
|
|
4190
4214
|
*
|
|
4191
4215
|
* @returns A new `SurfaceAppearance` instance with the given maps from the `content` parameter.
|
|
@@ -6703,8 +6727,6 @@ interface AudioSearchParams extends Instance {
|
|
|
6703
6727
|
/**
|
|
6704
6728
|
* Converts spoken audio into text.
|
|
6705
6729
|
*
|
|
6706
|
-
* - **Tags**: NotBrowsable
|
|
6707
|
-
*
|
|
6708
6730
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText)
|
|
6709
6731
|
*/
|
|
6710
6732
|
interface AudioSpeechToText extends Instance {
|
|
@@ -7490,10 +7512,19 @@ interface AvatarCreationService extends Instance {
|
|
|
7490
7512
|
*/
|
|
7491
7513
|
PrepareAvatarForPreviewAsync(this: AvatarCreationService, humanoidModel: Model): void;
|
|
7492
7514
|
/**
|
|
7515
|
+
* Prompts a `Player` to purchase and create an avatar asset from an `Instance`.
|
|
7516
|
+
*
|
|
7493
7517
|
* - **ThreadSafety**: Unsafe
|
|
7494
7518
|
* - **Tags**: Yields
|
|
7495
7519
|
*
|
|
7496
7520
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#PromptCreateAvatarAssetAsync)
|
|
7521
|
+
* @param this A service to support developer avatar creators.
|
|
7522
|
+
* @param tokenId The ID of a creation token. The token must be valid in that the universe the method is called from is the same universe the token was created for. Furthermore, the token creator must maintain ID verification and [Roblox Premium](https://www.roblox.com/premium/membership). To create a token for utilization in this API, follow the [token creation](../../../production/monetization/avatar-creation-token.md) process. The token's creation type must match the `AvatarAssetType` passed in to the method.
|
|
7523
|
+
* @param player The `Player` intended to be presented with the creation prompt.
|
|
7524
|
+
* @param assetInstance The `Instance` of the avatar asset intended for creation.
|
|
7525
|
+
* @param assetType The `AvatarAssetType` of the expected creation. This must match the creation type of the provided token.
|
|
7526
|
+
* @returns A tuple containing, in order: - An `PromptCreateAssetResult` indicating the result of the creation prompt.
|
|
7527
|
+
* - A string result. In the case of `PromptCreateAssetResult.Success`, this will indicate the asset ID. In the case of any failure enum, this will indicate the resultant error message.
|
|
7497
7528
|
*/
|
|
7498
7529
|
PromptCreateAvatarAssetAsync(this: AvatarCreationService, tokenId: string, player: Player, assetInstance: Instance, assetType: CastsToEnum<Enum.AvatarAssetType>): unknown;
|
|
7499
7530
|
/**
|
|
@@ -7582,6 +7613,8 @@ interface AvatarCreationService extends Instance {
|
|
|
7582
7613
|
*/
|
|
7583
7614
|
ValidateUGCFullBodyAsync(this: AvatarCreationService, player: Player, humanoidDescription: HumanoidDescription): unknown;
|
|
7584
7615
|
/**
|
|
7616
|
+
* Fires when an in-experience-created avatar asset's moderation status has been updated from pending.
|
|
7617
|
+
*
|
|
7585
7618
|
* - **ThreadSafety**: Unsafe
|
|
7586
7619
|
*
|
|
7587
7620
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#AvatarAssetModerationCompleted)
|
|
@@ -9884,6 +9917,12 @@ interface BodyPartDescription extends Instance {
|
|
|
9884
9917
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyPartDescription#Color)
|
|
9885
9918
|
*/
|
|
9886
9919
|
Color: Color3;
|
|
9920
|
+
/**
|
|
9921
|
+
* - **ThreadSafety**: ReadSafe
|
|
9922
|
+
*
|
|
9923
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyPartDescription#HeadShape)
|
|
9924
|
+
*/
|
|
9925
|
+
HeadShape: string;
|
|
9887
9926
|
/**
|
|
9888
9927
|
* A reference to the `Instance` that should be applied when applying this `BodyPartDescription`.
|
|
9889
9928
|
*
|
|
@@ -15184,6 +15223,8 @@ interface EditableService extends Instance {
|
|
|
15184
15223
|
readonly _nominal_EditableService: unique symbol;
|
|
15185
15224
|
}
|
|
15186
15225
|
/**
|
|
15226
|
+
* Service providing common encoding, hashing, and compression methods.
|
|
15227
|
+
*
|
|
15187
15228
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
15188
15229
|
*
|
|
15189
15230
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService)
|
|
@@ -15201,42 +15242,69 @@ interface EncodingService extends Instance {
|
|
|
15201
15242
|
* - **ThreadSafety**: Safe
|
|
15202
15243
|
*
|
|
15203
15244
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService#Base64Decode)
|
|
15245
|
+
* @param this Service providing common encoding, hashing, and compression methods.
|
|
15246
|
+
* @param input `buffer` containing Base64 data to decode
|
|
15247
|
+
* @returns `buffer` with the decoded result
|
|
15204
15248
|
*/
|
|
15205
15249
|
Base64Decode(this: EncodingService, input: buffer): buffer;
|
|
15206
15250
|
/**
|
|
15207
15251
|
* - **ThreadSafety**: Safe
|
|
15208
15252
|
*
|
|
15209
15253
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService#Base64Encode)
|
|
15254
|
+
* @param this Service providing common encoding, hashing, and compression methods.
|
|
15255
|
+
* @param input `buffer` containing binary data to encode
|
|
15256
|
+
* @returns `buffer` with the encoded result
|
|
15210
15257
|
*/
|
|
15211
15258
|
Base64Encode(this: EncodingService, input: buffer): buffer;
|
|
15212
15259
|
/**
|
|
15213
15260
|
* - **ThreadSafety**: Safe
|
|
15214
15261
|
*
|
|
15215
15262
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService#CompressBuffer)
|
|
15263
|
+
* @param this Service providing common encoding, hashing, and compression methods.
|
|
15264
|
+
* @param input `buffer` with binary data to compress
|
|
15265
|
+
* @param algorithm `CompressionAlgorithm` to use for compression
|
|
15266
|
+
* @param compressionLevel optional integer compression level to use
|
|
15267
|
+
* @returns `buffer` with compressed binary data
|
|
15216
15268
|
*/
|
|
15217
15269
|
CompressBuffer(this: EncodingService, input: buffer, algorithm: CastsToEnum<Enum.CompressionAlgorithm>, compressionLevel?: number): buffer;
|
|
15218
15270
|
/**
|
|
15219
15271
|
* - **ThreadSafety**: Safe
|
|
15220
15272
|
*
|
|
15221
15273
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService#ComputeBufferHash)
|
|
15274
|
+
* @param this Service providing common encoding, hashing, and compression methods.
|
|
15275
|
+
* @param input `buffer` with binary data to compute hash for
|
|
15276
|
+
* @param algorithm `HashAlgorithm` cryptographic hash function
|
|
15277
|
+
* @returns `buffer` with the binary data of the hash
|
|
15222
15278
|
*/
|
|
15223
15279
|
ComputeBufferHash(this: EncodingService, input: buffer, algorithm: CastsToEnum<Enum.HashAlgorithm>): buffer;
|
|
15224
15280
|
/**
|
|
15225
15281
|
* - **ThreadSafety**: Safe
|
|
15226
15282
|
*
|
|
15227
15283
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService#ComputeStringHash)
|
|
15284
|
+
* @param this Service providing common encoding, hashing, and compression methods.
|
|
15285
|
+
* @param input string to compute the hash for
|
|
15286
|
+
* @param algorithm `HashAlgorithm` cryptographic hash function
|
|
15287
|
+
* @returns String with the binary data of the hash
|
|
15228
15288
|
*/
|
|
15229
15289
|
ComputeStringHash(this: EncodingService, input: string, algorithm: CastsToEnum<Enum.HashAlgorithm>): string;
|
|
15230
15290
|
/**
|
|
15231
15291
|
* - **ThreadSafety**: Safe
|
|
15232
15292
|
*
|
|
15233
15293
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService#DecompressBuffer)
|
|
15294
|
+
* @param this Service providing common encoding, hashing, and compression methods.
|
|
15295
|
+
* @param input `buffer` with compressed binary data
|
|
15296
|
+
* @param algorithm `CompressionAlgorithm` to use for decompression
|
|
15297
|
+
* @returns `buffer` with the decompressed binary data
|
|
15234
15298
|
*/
|
|
15235
15299
|
DecompressBuffer(this: EncodingService, input: buffer, algorithm: CastsToEnum<Enum.CompressionAlgorithm>): buffer;
|
|
15236
15300
|
/**
|
|
15237
15301
|
* - **ThreadSafety**: Safe
|
|
15238
15302
|
*
|
|
15239
15303
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService#GetDecompressedBufferSize)
|
|
15304
|
+
* @param this Service providing common encoding, hashing, and compression methods.
|
|
15305
|
+
* @param input `buffer` with compressed binary data
|
|
15306
|
+
* @param algorithm `CompressionAlgorithm` used to compress it
|
|
15307
|
+
* @returns Integer size of the decompressed data or 'nil'
|
|
15240
15308
|
*/
|
|
15241
15309
|
GetDecompressedBufferSize(this: EncodingService, input: buffer, algorithm: CastsToEnum<Enum.CompressionAlgorithm>): number | undefined;
|
|
15242
15310
|
}
|
|
@@ -16444,6 +16512,13 @@ interface GeometryService extends Instance {
|
|
|
16444
16512
|
* | `NoCollisionConstraintPart1` | `Class.BasePart` |
|
|
16445
16513
|
*/
|
|
16446
16514
|
CalculateConstraintsToPreserve(this: GeometryService, source: Instance, destination: ReadonlyArray<Instance>, options?: CalculateConstraintsToPreserveConfig): Array<unknown>;
|
|
16515
|
+
/**
|
|
16516
|
+
* - **ThreadSafety**: Unsafe
|
|
16517
|
+
* - **Tags**: Yields
|
|
16518
|
+
*
|
|
16519
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GeometryService#FragmentAsync)
|
|
16520
|
+
*/
|
|
16521
|
+
FragmentAsync(this: GeometryService, part: BasePart, fragmentSites: Array<unknown>, options?: object, mainPartSites?: Array<unknown>): Array<unknown>;
|
|
16447
16522
|
/**
|
|
16448
16523
|
* Creates one or more `PartOperations` from the intersecting geometry of one part and other parts.
|
|
16449
16524
|
*
|
|
@@ -27219,12 +27294,16 @@ interface MaterialVariant extends Instance {
|
|
|
27219
27294
|
*/
|
|
27220
27295
|
CustomPhysicalProperties: PhysicalProperties;
|
|
27221
27296
|
/**
|
|
27297
|
+
* Determines the strength of emissive contribution.
|
|
27298
|
+
*
|
|
27222
27299
|
* - **ThreadSafety**: ReadSafe
|
|
27223
27300
|
*
|
|
27224
27301
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#EmissiveStrength)
|
|
27225
27302
|
*/
|
|
27226
27303
|
EmissiveStrength: number;
|
|
27227
27304
|
/**
|
|
27305
|
+
* Determines the tinting color for emissive contribution.
|
|
27306
|
+
*
|
|
27228
27307
|
* - **ThreadSafety**: ReadSafe
|
|
27229
27308
|
*
|
|
27230
27309
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#EmissiveTint)
|
|
@@ -28074,6 +28153,8 @@ interface OmniRecommendationsService extends Instance {
|
|
|
28074
28153
|
* - **Tags**: NotCreatable, NotReplicated
|
|
28075
28154
|
*
|
|
28076
28155
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/OpenCloudApiV1)
|
|
28156
|
+
*
|
|
28157
|
+
* @deprecated HttpService
|
|
28077
28158
|
*/
|
|
28078
28159
|
interface OpenCloudApiV1 extends Instance {
|
|
28079
28160
|
/**
|
|
@@ -28091,6 +28172,8 @@ interface OpenCloudApiV1 extends Instance {
|
|
|
28091
28172
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/OpenCloudApiV1#CreateModel)
|
|
28092
28173
|
* @param this
|
|
28093
28174
|
* @param name
|
|
28175
|
+
*
|
|
28176
|
+
* @deprecated
|
|
28094
28177
|
*/
|
|
28095
28178
|
CreateModel(this: OpenCloudApiV1, name: string): OpenCloudModel;
|
|
28096
28179
|
/**
|
|
@@ -28101,6 +28184,8 @@ interface OpenCloudApiV1 extends Instance {
|
|
|
28101
28184
|
* @param this
|
|
28102
28185
|
* @param user
|
|
28103
28186
|
* @param userNotification
|
|
28187
|
+
*
|
|
28188
|
+
* @deprecated
|
|
28104
28189
|
*/
|
|
28105
28190
|
CreateUserNotificationAsync(this: OpenCloudApiV1, user: string, userNotification: OpenCloudModel): OpenCloudModel;
|
|
28106
28191
|
}
|
|
@@ -28108,6 +28193,8 @@ interface OpenCloudApiV1 extends Instance {
|
|
|
28108
28193
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
28109
28194
|
*
|
|
28110
28195
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/OpenCloudService)
|
|
28196
|
+
*
|
|
28197
|
+
* @deprecated HttpService
|
|
28111
28198
|
*/
|
|
28112
28199
|
interface OpenCloudService extends Instance {
|
|
28113
28200
|
/**
|
|
@@ -28120,9 +28207,12 @@ interface OpenCloudService extends Instance {
|
|
|
28120
28207
|
readonly _nominal_OpenCloudService: unique symbol;
|
|
28121
28208
|
/**
|
|
28122
28209
|
* - **ThreadSafety**: Unsafe
|
|
28210
|
+
* - **Tags**:
|
|
28123
28211
|
*
|
|
28124
28212
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/OpenCloudService#GetApiV1)
|
|
28125
28213
|
* @param this
|
|
28214
|
+
*
|
|
28215
|
+
* @deprecated
|
|
28126
28216
|
*/
|
|
28127
28217
|
GetApiV1(this: OpenCloudService): OpenCloudApiV1;
|
|
28128
28218
|
/**
|
|
@@ -28135,6 +28225,8 @@ interface OpenCloudService extends Instance {
|
|
|
28135
28225
|
* @param methodName
|
|
28136
28226
|
* @param arguments
|
|
28137
28227
|
* @param headers
|
|
28228
|
+
*
|
|
28229
|
+
* @deprecated
|
|
28138
28230
|
*/
|
|
28139
28231
|
InvokeAsync(this: OpenCloudService, version: string, methodName: string, arguments: object, headers?: object): object;
|
|
28140
28232
|
}
|
|
@@ -35619,6 +35711,7 @@ interface ReflectionService extends Instance {
|
|
|
35619
35711
|
readonly _nominal_ReflectionService: unique symbol;
|
|
35620
35712
|
/**
|
|
35621
35713
|
* - **ThreadSafety**: Unsafe
|
|
35714
|
+
* - **Tags**: CustomLuaState
|
|
35622
35715
|
*
|
|
35623
35716
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetClass)
|
|
35624
35717
|
* @param this
|
|
@@ -35628,6 +35721,7 @@ interface ReflectionService extends Instance {
|
|
|
35628
35721
|
GetClass(this: ReflectionService, className: string, filter?: object): object | undefined;
|
|
35629
35722
|
/**
|
|
35630
35723
|
* - **ThreadSafety**: Unsafe
|
|
35724
|
+
* - **Tags**: CustomLuaState
|
|
35631
35725
|
*
|
|
35632
35726
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetClasses)
|
|
35633
35727
|
* @param this
|
|
@@ -35636,6 +35730,7 @@ interface ReflectionService extends Instance {
|
|
|
35636
35730
|
GetClasses(this: ReflectionService, filter?: object): Array<unknown>;
|
|
35637
35731
|
/**
|
|
35638
35732
|
* - **ThreadSafety**: Unsafe
|
|
35733
|
+
* - **Tags**: CustomLuaState
|
|
35639
35734
|
*
|
|
35640
35735
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetPropertiesOfClass)
|
|
35641
35736
|
* @param this
|
|
@@ -37718,10 +37813,15 @@ interface SocialService extends Instance {
|
|
|
37718
37813
|
*/
|
|
37719
37814
|
GetEventRsvpStatusAsync(this: SocialService, eventId: string): Enum.RsvpStatus;
|
|
37720
37815
|
/**
|
|
37816
|
+
* Returns details for the specified experience event or `nil` if it is unavailable.
|
|
37817
|
+
*
|
|
37721
37818
|
* - **ThreadSafety**: Unsafe
|
|
37722
37819
|
* - **Tags**: Yields
|
|
37723
37820
|
*
|
|
37724
37821
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#GetExperienceEventAsync)
|
|
37822
|
+
* @param this Facilitates social functions that impact relationships made on the Roblox platform.
|
|
37823
|
+
* @param eventId The string identifier of the event to retrieve. Must correspond to an event in the current experience.
|
|
37824
|
+
* @returns A dictionary describing the event, or `nil` if the event does not exist, belongs to another experience, or is otherwise unavailable.
|
|
37725
37825
|
*/
|
|
37726
37826
|
GetExperienceEventAsync(this: SocialService, eventId: string): object | undefined;
|
|
37727
37827
|
/**
|
|
@@ -37737,10 +37837,14 @@ interface SocialService extends Instance {
|
|
|
37737
37837
|
*/
|
|
37738
37838
|
GetPartyAsync(this: SocialService, partyId: string): Array<unknown>;
|
|
37739
37839
|
/**
|
|
37840
|
+
* Returns active and upcoming experience events for the current experience.
|
|
37841
|
+
*
|
|
37740
37842
|
* - **ThreadSafety**: Unsafe
|
|
37741
37843
|
* - **Tags**: Yields
|
|
37742
37844
|
*
|
|
37743
37845
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#GetUpcomingExperienceEventsAsync)
|
|
37846
|
+
* @param this Facilitates social functions that impact relationships made on the Roblox platform.
|
|
37847
|
+
* @returns An array of dictionaries describing each active or upcoming event in the current experience, ordered by soonest start time first.
|
|
37744
37848
|
*/
|
|
37745
37849
|
GetUpcomingExperienceEventsAsync(this: SocialService): Array<unknown>;
|
|
37746
37850
|
/**
|
|
@@ -39530,6 +39634,12 @@ interface StudioCameraService extends Instance {
|
|
|
39530
39634
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioCameraService#LockCameraSpeed)
|
|
39531
39635
|
*/
|
|
39532
39636
|
LockCameraSpeed: boolean;
|
|
39637
|
+
/**
|
|
39638
|
+
* - **ThreadSafety**: ReadSafe
|
|
39639
|
+
*
|
|
39640
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioCameraService#LoggingEnabled)
|
|
39641
|
+
*/
|
|
39642
|
+
LoggingEnabled: boolean;
|
|
39533
39643
|
/**
|
|
39534
39644
|
* - **ThreadSafety**: Unsafe
|
|
39535
39645
|
*
|
|
@@ -39975,18 +40085,24 @@ interface SurfaceAppearance extends Instance {
|
|
|
39975
40085
|
*/
|
|
39976
40086
|
get ColorMapContent(): Content;
|
|
39977
40087
|
/**
|
|
40088
|
+
* Determines the emissivity across the surface.
|
|
40089
|
+
*
|
|
39978
40090
|
* - **ThreadSafety**: ReadSafe
|
|
39979
40091
|
*
|
|
39980
40092
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#EmissiveMaskContent)
|
|
39981
40093
|
*/
|
|
39982
40094
|
get EmissiveMaskContent(): Content;
|
|
39983
40095
|
/**
|
|
40096
|
+
* Determines the strength of emissive contribution.
|
|
40097
|
+
*
|
|
39984
40098
|
* - **ThreadSafety**: ReadSafe
|
|
39985
40099
|
*
|
|
39986
40100
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#EmissiveStrength)
|
|
39987
40101
|
*/
|
|
39988
40102
|
EmissiveStrength: number;
|
|
39989
40103
|
/**
|
|
40104
|
+
* Determines the tinting color for emissive contribution.
|
|
40105
|
+
*
|
|
39990
40106
|
* - **ThreadSafety**: ReadSafe
|
|
39991
40107
|
*
|
|
39992
40108
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#EmissiveTint)
|
|
@@ -40461,6 +40577,13 @@ interface TeleportService extends Instance {
|
|
|
40461
40577
|
number,
|
|
40462
40578
|
string
|
|
40463
40579
|
]>;
|
|
40580
|
+
/**
|
|
40581
|
+
* - **ThreadSafety**: Unsafe
|
|
40582
|
+
* - **Tags**: Yields
|
|
40583
|
+
*
|
|
40584
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#PromptExperienceDetailsAsync)
|
|
40585
|
+
*/
|
|
40586
|
+
PromptExperienceDetailsAsync(this: TeleportService, player: Player, universeId: number): Enum.PromptExperienceDetailsResult;
|
|
40464
40587
|
/**
|
|
40465
40588
|
* Returns an access code that can be used to teleport players to a reserved server, along with the `DataModel.PrivateServerId` for it.
|
|
40466
40589
|
*
|
|
@@ -40567,12 +40690,16 @@ interface TerrainDetail extends Instance {
|
|
|
40567
40690
|
*/
|
|
40568
40691
|
readonly _nominal_TerrainDetail: unique symbol;
|
|
40569
40692
|
/**
|
|
40693
|
+
* Determines the strength of emissive contribution.
|
|
40694
|
+
*
|
|
40570
40695
|
* - **ThreadSafety**: ReadSafe
|
|
40571
40696
|
*
|
|
40572
40697
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#EmissiveStrength)
|
|
40573
40698
|
*/
|
|
40574
40699
|
EmissiveStrength: number;
|
|
40575
40700
|
/**
|
|
40701
|
+
* Determines the tinting color for emissive contribution.
|
|
40702
|
+
*
|
|
40576
40703
|
* - **ThreadSafety**: ReadSafe
|
|
40577
40704
|
*
|
|
40578
40705
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#EmissiveTint)
|
|
@@ -46025,6 +46152,21 @@ interface VideoPlayer extends Instance {
|
|
|
46025
46152
|
*/
|
|
46026
46153
|
readonly WiringChanged: RBXScriptSignal<(connected: boolean, pin: string, wire: Wire, instance: Instance) => void>;
|
|
46027
46154
|
}
|
|
46155
|
+
/**
|
|
46156
|
+
* - **Tags**: NotCreatable, Service
|
|
46157
|
+
*
|
|
46158
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoScreenCaptureService)
|
|
46159
|
+
*/
|
|
46160
|
+
interface VideoScreenCaptureService extends Instance {
|
|
46161
|
+
/**
|
|
46162
|
+
* **DO NOT USE!**
|
|
46163
|
+
*
|
|
46164
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
46165
|
+
* @hidden
|
|
46166
|
+
* @deprecated
|
|
46167
|
+
*/
|
|
46168
|
+
readonly _nominal_VideoScreenCaptureService: unique symbol;
|
|
46169
|
+
}
|
|
46028
46170
|
/**
|
|
46029
46171
|
* An internal service that offers no functionality to developers.
|
|
46030
46172
|
*
|
|
@@ -46041,6 +46183,13 @@ interface VideoService extends Instance {
|
|
|
46041
46183
|
* @deprecated
|
|
46042
46184
|
*/
|
|
46043
46185
|
readonly _nominal_VideoService: unique symbol;
|
|
46186
|
+
/**
|
|
46187
|
+
* - **ThreadSafety**: Unsafe
|
|
46188
|
+
* - **Tags**: Yields
|
|
46189
|
+
*
|
|
46190
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoService#CreateVideoSamplerAsync)
|
|
46191
|
+
*/
|
|
46192
|
+
CreateVideoSamplerAsync(this: VideoService, content: Content, options?: object): VideoSampler;
|
|
46044
46193
|
}
|
|
46045
46194
|
/**
|
|
46046
46195
|
* - **Tags**: NotCreatable, Service
|
|
@@ -46679,6 +46828,42 @@ interface TerrainWriteOperation extends RBXObject {
|
|
|
46679
46828
|
*/
|
|
46680
46829
|
GetBlock(this: TerrainWriteOperation): object;
|
|
46681
46830
|
}
|
|
46831
|
+
/**
|
|
46832
|
+
* - **Tags**: NotCreatable
|
|
46833
|
+
*
|
|
46834
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoSampler)
|
|
46835
|
+
*/
|
|
46836
|
+
interface VideoSampler extends RBXObject {
|
|
46837
|
+
/**
|
|
46838
|
+
* **DO NOT USE!**
|
|
46839
|
+
*
|
|
46840
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
46841
|
+
* @hidden
|
|
46842
|
+
* @deprecated
|
|
46843
|
+
*/
|
|
46844
|
+
readonly _nominal_VideoSampler: unique symbol;
|
|
46845
|
+
/**
|
|
46846
|
+
* - **ThreadSafety**: ReadSafe
|
|
46847
|
+
* - **Tags**: NotReplicated
|
|
46848
|
+
*
|
|
46849
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoSampler#TimeLength)
|
|
46850
|
+
*/
|
|
46851
|
+
readonly TimeLength: number;
|
|
46852
|
+
/**
|
|
46853
|
+
* - **ThreadSafety**: ReadSafe
|
|
46854
|
+
* - **Tags**: NotReplicated
|
|
46855
|
+
*
|
|
46856
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoSampler#VideoContent)
|
|
46857
|
+
*/
|
|
46858
|
+
readonly VideoContent: Content;
|
|
46859
|
+
/**
|
|
46860
|
+
* - **ThreadSafety**: Unsafe
|
|
46861
|
+
* - **Tags**: Yields
|
|
46862
|
+
*
|
|
46863
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoSampler#GetSamplesAtTimesAsync)
|
|
46864
|
+
*/
|
|
46865
|
+
GetSamplesAtTimesAsync(this: VideoSampler, times: Array<unknown>): Array<unknown>;
|
|
46866
|
+
}
|
|
46682
46867
|
/**
|
|
46683
46868
|
* Maintains a streaming connection.
|
|
46684
46869
|
*
|
|
@@ -242,6 +242,7 @@ interface Services {
|
|
|
242
242
|
UserService: UserService;
|
|
243
243
|
VersionControlService: VersionControlService;
|
|
244
244
|
VideoCaptureService: VideoCaptureService;
|
|
245
|
+
VideoScreenCaptureService: VideoScreenCaptureService;
|
|
245
246
|
VideoService: VideoService;
|
|
246
247
|
VisibilityCheckDispatcher: VisibilityCheckDispatcher;
|
|
247
248
|
VisualizationModeService: VisualizationModeService;
|
|
@@ -774,6 +775,7 @@ interface Objects extends Instances {
|
|
|
774
775
|
TerrainReadOperation: TerrainReadOperation;
|
|
775
776
|
TerrainWriteOperation: TerrainWriteOperation;
|
|
776
777
|
VideoCapture: VideoCapture;
|
|
778
|
+
VideoSampler: VideoSampler;
|
|
777
779
|
WebStreamClient: WebStreamClient;
|
|
778
780
|
}
|
|
779
781
|
// GENERATED ROBLOX INSTANCE CLASSES
|
|
@@ -1932,8 +1934,6 @@ interface AudioSearchParams extends Instance {
|
|
|
1932
1934
|
/**
|
|
1933
1935
|
* Converts spoken audio into text.
|
|
1934
1936
|
*
|
|
1935
|
-
* - **Tags**: NotBrowsable
|
|
1936
|
-
*
|
|
1937
1937
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText)
|
|
1938
1938
|
*/
|
|
1939
1939
|
interface AudioSpeechToText extends Instance {
|
|
@@ -4578,6 +4578,8 @@ interface EditableService extends Instance {
|
|
|
4578
4578
|
readonly _nominal_EditableService: unique symbol;
|
|
4579
4579
|
}
|
|
4580
4580
|
/**
|
|
4581
|
+
* Service providing common encoding, hashing, and compression methods.
|
|
4582
|
+
*
|
|
4581
4583
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
4582
4584
|
*
|
|
4583
4585
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService)
|
|
@@ -8068,6 +8070,8 @@ interface MaterialVariant extends Instance {
|
|
|
8068
8070
|
*/
|
|
8069
8071
|
ColorMapContent: Content;
|
|
8070
8072
|
/**
|
|
8073
|
+
* Determines the emissivity across the surface.
|
|
8074
|
+
*
|
|
8071
8075
|
* - **ThreadSafety**: ReadSafe
|
|
8072
8076
|
*
|
|
8073
8077
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#EmissiveMaskContent)
|
|
@@ -8611,6 +8615,8 @@ interface OmniRecommendationsService extends Instance {
|
|
|
8611
8615
|
* - **Tags**: NotCreatable, NotReplicated
|
|
8612
8616
|
*
|
|
8613
8617
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/OpenCloudApiV1)
|
|
8618
|
+
*
|
|
8619
|
+
* @deprecated HttpService
|
|
8614
8620
|
*/
|
|
8615
8621
|
interface OpenCloudApiV1 extends Instance {
|
|
8616
8622
|
/**
|
|
@@ -8626,6 +8632,8 @@ interface OpenCloudApiV1 extends Instance {
|
|
|
8626
8632
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
8627
8633
|
*
|
|
8628
8634
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/OpenCloudService)
|
|
8635
|
+
*
|
|
8636
|
+
* @deprecated HttpService
|
|
8629
8637
|
*/
|
|
8630
8638
|
interface OpenCloudService extends Instance {
|
|
8631
8639
|
/**
|
|
@@ -13416,6 +13424,8 @@ interface SurfaceAppearance extends Instance {
|
|
|
13416
13424
|
*/
|
|
13417
13425
|
set ColorMapContent(value: Content);
|
|
13418
13426
|
/**
|
|
13427
|
+
* Determines the emissivity across the surface.
|
|
13428
|
+
*
|
|
13419
13429
|
* - **ThreadSafety**: ReadSafe
|
|
13420
13430
|
*
|
|
13421
13431
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#EmissiveMaskContent)
|
|
@@ -13701,6 +13711,8 @@ interface TerrainDetail extends Instance {
|
|
|
13701
13711
|
*/
|
|
13702
13712
|
ColorMapContent: Content;
|
|
13703
13713
|
/**
|
|
13714
|
+
* Determines the emissivity across the surface.
|
|
13715
|
+
*
|
|
13704
13716
|
* - **ThreadSafety**: ReadSafe
|
|
13705
13717
|
*
|
|
13706
13718
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#EmissiveMaskContent)
|
|
@@ -15081,6 +15093,21 @@ interface VideoPlayer extends Instance {
|
|
|
15081
15093
|
*/
|
|
15082
15094
|
readonly _nominal_VideoPlayer: unique symbol;
|
|
15083
15095
|
}
|
|
15096
|
+
/**
|
|
15097
|
+
* - **Tags**: NotCreatable, Service
|
|
15098
|
+
*
|
|
15099
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoScreenCaptureService)
|
|
15100
|
+
*/
|
|
15101
|
+
interface VideoScreenCaptureService extends Instance {
|
|
15102
|
+
/**
|
|
15103
|
+
* **DO NOT USE!**
|
|
15104
|
+
*
|
|
15105
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
15106
|
+
* @hidden
|
|
15107
|
+
* @deprecated
|
|
15108
|
+
*/
|
|
15109
|
+
readonly _nominal_VideoScreenCaptureService: unique symbol;
|
|
15110
|
+
}
|
|
15084
15111
|
/**
|
|
15085
15112
|
* An internal service that offers no functionality to developers.
|
|
15086
15113
|
*
|
|
@@ -15375,6 +15402,21 @@ interface TerrainWriteOperation extends RBXObject {
|
|
|
15375
15402
|
*/
|
|
15376
15403
|
readonly _nominal_TerrainWriteOperation: unique symbol;
|
|
15377
15404
|
}
|
|
15405
|
+
/**
|
|
15406
|
+
* - **Tags**: NotCreatable
|
|
15407
|
+
*
|
|
15408
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoSampler)
|
|
15409
|
+
*/
|
|
15410
|
+
interface VideoSampler extends RBXObject {
|
|
15411
|
+
/**
|
|
15412
|
+
* **DO NOT USE!**
|
|
15413
|
+
*
|
|
15414
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
15415
|
+
* @hidden
|
|
15416
|
+
* @deprecated
|
|
15417
|
+
*/
|
|
15418
|
+
readonly _nominal_VideoSampler: unique symbol;
|
|
15419
|
+
}
|
|
15378
15420
|
/**
|
|
15379
15421
|
* Maintains a streaming connection.
|
|
15380
15422
|
*
|
|
@@ -8404,6 +8404,15 @@ declare namespace Enum {
|
|
|
8404
8404
|
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
8405
8405
|
}
|
|
8406
8406
|
export const DisconnectionNotification: DisconnectionNotification;
|
|
8407
|
+
/**
|
|
8408
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectVerboselyModeratedGame)
|
|
8409
|
+
*/
|
|
8410
|
+
export interface DisconnectVerboselyModeratedGame extends globalThis.EnumItem {
|
|
8411
|
+
Name: "DisconnectVerboselyModeratedGame";
|
|
8412
|
+
Value: 309;
|
|
8413
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
8414
|
+
}
|
|
8415
|
+
export const DisconnectVerboselyModeratedGame: DisconnectVerboselyModeratedGame;
|
|
8407
8416
|
/**
|
|
8408
8417
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#PlacelaunchErrors)
|
|
8409
8418
|
*/
|
|
@@ -8633,7 +8642,7 @@ declare namespace Enum {
|
|
|
8633
8642
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ConnectionError | undefined;
|
|
8634
8643
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ConnectionError | undefined;
|
|
8635
8644
|
}
|
|
8636
|
-
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;
|
|
8645
|
+
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.DisconnectVerboselyModeratedGame | 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;
|
|
8637
8646
|
/**
|
|
8638
8647
|
* Used to determine the connection state of the client to the game server.
|
|
8639
8648
|
*
|
|
@@ -8707,6 +8716,8 @@ declare namespace Enum {
|
|
|
8707
8716
|
}
|
|
8708
8717
|
export const Object: Object;
|
|
8709
8718
|
/**
|
|
8719
|
+
* A non-`nil` `Opaque` reference contained in `Content.Opaque`.
|
|
8720
|
+
*
|
|
8710
8721
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ContentSourceType#Opaque)
|
|
8711
8722
|
*/
|
|
8712
8723
|
export interface Opaque extends globalThis.EnumItem {
|
|
@@ -23428,7 +23439,7 @@ declare namespace Enum {
|
|
|
23428
23439
|
*/
|
|
23429
23440
|
export namespace PhysicsSteppingMethod {
|
|
23430
23441
|
/**
|
|
23431
|
-
* The current default is
|
|
23442
|
+
* The current default is `Adaptive`.
|
|
23432
23443
|
*
|
|
23433
23444
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PhysicsSteppingMethod#Default)
|
|
23434
23445
|
*/
|
|
@@ -24978,6 +24989,33 @@ declare namespace Enum {
|
|
|
24978
24989
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PromptCreateAvatarResult | undefined;
|
|
24979
24990
|
}
|
|
24980
24991
|
export type PromptCreateAvatarResult = PromptCreateAvatarResult.Success | PromptCreateAvatarResult.PermissionDenied | PromptCreateAvatarResult.Timeout | PromptCreateAvatarResult.UploadFailed | PromptCreateAvatarResult.NoUserInput | PromptCreateAvatarResult.InvalidHumanoidDescription | PromptCreateAvatarResult.UGCValidationFailed | PromptCreateAvatarResult.ModeratedName | PromptCreateAvatarResult.MaxOutfits | PromptCreateAvatarResult.PurchaseFailure | PromptCreateAvatarResult.UnknownFailure | PromptCreateAvatarResult.TokenInvalid;
|
|
24992
|
+
/**
|
|
24993
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptExperienceDetailsResult)
|
|
24994
|
+
*/
|
|
24995
|
+
export namespace PromptExperienceDetailsResult {
|
|
24996
|
+
/**
|
|
24997
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptExperienceDetailsResult#PromptClosed)
|
|
24998
|
+
*/
|
|
24999
|
+
export interface PromptClosed extends globalThis.EnumItem {
|
|
25000
|
+
Name: "PromptClosed";
|
|
25001
|
+
Value: 0;
|
|
25002
|
+
EnumType: typeof globalThis.Enum.PromptExperienceDetailsResult;
|
|
25003
|
+
}
|
|
25004
|
+
export const PromptClosed: PromptClosed;
|
|
25005
|
+
/**
|
|
25006
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptExperienceDetailsResult#TeleportAttempted)
|
|
25007
|
+
*/
|
|
25008
|
+
export interface TeleportAttempted extends globalThis.EnumItem {
|
|
25009
|
+
Name: "TeleportAttempted";
|
|
25010
|
+
Value: 1;
|
|
25011
|
+
EnumType: typeof globalThis.Enum.PromptExperienceDetailsResult;
|
|
25012
|
+
}
|
|
25013
|
+
export const TeleportAttempted: TeleportAttempted;
|
|
25014
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PromptExperienceDetailsResult>;
|
|
25015
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PromptExperienceDetailsResult | undefined;
|
|
25016
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PromptExperienceDetailsResult | undefined;
|
|
25017
|
+
}
|
|
25018
|
+
export type PromptExperienceDetailsResult = PromptExperienceDetailsResult.PromptClosed | PromptExperienceDetailsResult.TeleportAttempted;
|
|
24981
25019
|
/**
|
|
24982
25020
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptLinkSharingResult)
|
|
24983
25021
|
*/
|
|
@@ -35801,6 +35839,53 @@ declare namespace Enum {
|
|
|
35801
35839
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VideoError | undefined;
|
|
35802
35840
|
}
|
|
35803
35841
|
export type VideoError = VideoError.Ok | VideoError.Eof | VideoError.EAgain | VideoError.BadParameter | VideoError.AllocFailed | VideoError.CodecInitFailed | VideoError.CodecCloseFailed | VideoError.DecodeFailed | VideoError.ParsingFailed | VideoError.Unsupported | VideoError.Generic | VideoError.DownloadFailed | VideoError.StreamNotFound | VideoError.EncodeFailed | VideoError.CreateFailed | VideoError.NoPermission | VideoError.NoService | VideoError.ReleaseFailed | VideoError.Unknown;
|
|
35842
|
+
/**
|
|
35843
|
+
* The size of textures produced by `VideoSampler`.
|
|
35844
|
+
*
|
|
35845
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoSampleSize)
|
|
35846
|
+
*/
|
|
35847
|
+
export namespace VideoSampleSize {
|
|
35848
|
+
/**
|
|
35849
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoSampleSize#Small)
|
|
35850
|
+
*/
|
|
35851
|
+
export interface Small extends globalThis.EnumItem {
|
|
35852
|
+
Name: "Small";
|
|
35853
|
+
Value: 0;
|
|
35854
|
+
EnumType: typeof globalThis.Enum.VideoSampleSize;
|
|
35855
|
+
}
|
|
35856
|
+
export const Small: Small;
|
|
35857
|
+
/**
|
|
35858
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoSampleSize#Medium)
|
|
35859
|
+
*/
|
|
35860
|
+
export interface Medium extends globalThis.EnumItem {
|
|
35861
|
+
Name: "Medium";
|
|
35862
|
+
Value: 1;
|
|
35863
|
+
EnumType: typeof globalThis.Enum.VideoSampleSize;
|
|
35864
|
+
}
|
|
35865
|
+
export const Medium: Medium;
|
|
35866
|
+
/**
|
|
35867
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoSampleSize#Large)
|
|
35868
|
+
*/
|
|
35869
|
+
export interface Large extends globalThis.EnumItem {
|
|
35870
|
+
Name: "Large";
|
|
35871
|
+
Value: 2;
|
|
35872
|
+
EnumType: typeof globalThis.Enum.VideoSampleSize;
|
|
35873
|
+
}
|
|
35874
|
+
export const Large: Large;
|
|
35875
|
+
/**
|
|
35876
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoSampleSize#Full)
|
|
35877
|
+
*/
|
|
35878
|
+
export interface Full extends globalThis.EnumItem {
|
|
35879
|
+
Name: "Full";
|
|
35880
|
+
Value: 3;
|
|
35881
|
+
EnumType: typeof globalThis.Enum.VideoSampleSize;
|
|
35882
|
+
}
|
|
35883
|
+
export const Full: Full;
|
|
35884
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VideoSampleSize>;
|
|
35885
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VideoSampleSize | undefined;
|
|
35886
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VideoSampleSize | undefined;
|
|
35887
|
+
}
|
|
35888
|
+
export type VideoSampleSize = VideoSampleSize.Small | VideoSampleSize.Medium | VideoSampleSize.Large | VideoSampleSize.Full;
|
|
35804
35889
|
/**
|
|
35805
35890
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ViewMode)
|
|
35806
35891
|
*/
|