@rbxts/types 1.0.882 → 1.0.884
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/include/generated/None.d.ts +227 -53
- package/include/generated/PluginSecurity.d.ts +40 -16
- package/include/generated/enums.d.ts +523 -36
- package/package.json +1 -1
|
@@ -464,6 +464,7 @@ interface CreatableInstances {
|
|
|
464
464
|
StudioCallout: StudioCallout;
|
|
465
465
|
StyleDerive: StyleDerive;
|
|
466
466
|
StyleLink: StyleLink;
|
|
467
|
+
StyleQuery: StyleQuery;
|
|
467
468
|
StyleRule: StyleRule;
|
|
468
469
|
StyleSheet: StyleSheet;
|
|
469
470
|
SunRaysEffect: SunRaysEffect;
|
|
@@ -492,7 +493,6 @@ interface CreatableInstances {
|
|
|
492
493
|
TremoloSoundEffect: TremoloSoundEffect;
|
|
493
494
|
TrussPart: TrussPart;
|
|
494
495
|
UIAspectRatioConstraint: UIAspectRatioConstraint;
|
|
495
|
-
UIContainerQuery: UIContainerQuery;
|
|
496
496
|
UICorner: UICorner;
|
|
497
497
|
UIDragDetector: UIDragDetector;
|
|
498
498
|
UIFlexItem: UIFlexItem;
|
|
@@ -897,7 +897,6 @@ interface ConfigSnapshot extends RBXObject {
|
|
|
897
897
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConfigSnapshot#GetValue)
|
|
898
898
|
* @param this
|
|
899
899
|
* @param key
|
|
900
|
-
* @param defaultValue
|
|
901
900
|
*/
|
|
902
901
|
GetValue(this: ConfigSnapshot, key: string): unknown;
|
|
903
902
|
/**
|
|
@@ -1712,7 +1711,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1712
1711
|
*/
|
|
1713
1712
|
GetVerticesWithAttribute(this: EditableMesh, id: number): Array<unknown>;
|
|
1714
1713
|
/**
|
|
1715
|
-
* Returns an array of
|
|
1714
|
+
* Returns an array of vertex IDs that use the given color ID.
|
|
1716
1715
|
*
|
|
1717
1716
|
* - **ThreadSafety**: Unsafe
|
|
1718
1717
|
* - **Tags**: CustomLuaState
|
|
@@ -5262,6 +5261,12 @@ interface AudioEmitter extends Instance {
|
|
|
5262
5261
|
* @deprecated
|
|
5263
5262
|
*/
|
|
5264
5263
|
readonly _nominal_AudioEmitter: unique symbol;
|
|
5264
|
+
/**
|
|
5265
|
+
* - **ThreadSafety**: ReadSafe
|
|
5266
|
+
*
|
|
5267
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEmitter#AcousticSimulationEnabled)
|
|
5268
|
+
*/
|
|
5269
|
+
AcousticSimulationEnabled: boolean;
|
|
5265
5270
|
/**
|
|
5266
5271
|
* Controls which `AudioListeners` are capable of hearing this `AudioEmitter`.
|
|
5267
5272
|
*
|
|
@@ -5274,8 +5279,11 @@ interface AudioEmitter extends Instance {
|
|
|
5274
5279
|
* Controls how detailed the audio simulation should be for this `AudioEmitter`.
|
|
5275
5280
|
*
|
|
5276
5281
|
* - **ThreadSafety**: ReadSafe
|
|
5282
|
+
* - **Tags**:
|
|
5277
5283
|
*
|
|
5278
5284
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEmitter#SimulationFidelity)
|
|
5285
|
+
*
|
|
5286
|
+
* @deprecated AcousticSimulationEnabled
|
|
5279
5287
|
*/
|
|
5280
5288
|
SimulationFidelity: Enum.AudioSimulationFidelity;
|
|
5281
5289
|
/**
|
|
@@ -5865,6 +5873,12 @@ interface AudioListener extends Instance {
|
|
|
5865
5873
|
* @deprecated
|
|
5866
5874
|
*/
|
|
5867
5875
|
readonly _nominal_AudioListener: unique symbol;
|
|
5876
|
+
/**
|
|
5877
|
+
* - **ThreadSafety**: ReadSafe
|
|
5878
|
+
*
|
|
5879
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioListener#AcousticSimulationEnabled)
|
|
5880
|
+
*/
|
|
5881
|
+
AcousticSimulationEnabled: boolean;
|
|
5868
5882
|
/**
|
|
5869
5883
|
* Controls which `AudioEmitters` are audible to this `AudioListener`.
|
|
5870
5884
|
*
|
|
@@ -5877,8 +5891,11 @@ interface AudioListener extends Instance {
|
|
|
5877
5891
|
* Controls how detailed the audio simulation should be for this `AudioListener`.
|
|
5878
5892
|
*
|
|
5879
5893
|
* - **ThreadSafety**: ReadSafe
|
|
5894
|
+
* - **Tags**:
|
|
5880
5895
|
*
|
|
5881
5896
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioListener#SimulationFidelity)
|
|
5897
|
+
*
|
|
5898
|
+
* @deprecated AcousticSimulationEnabled
|
|
5882
5899
|
*/
|
|
5883
5900
|
SimulationFidelity: Enum.AudioSimulationFidelity;
|
|
5884
5901
|
/**
|
|
@@ -6592,6 +6609,8 @@ interface AudioSearchParams extends Instance {
|
|
|
6592
6609
|
Title: string;
|
|
6593
6610
|
}
|
|
6594
6611
|
/**
|
|
6612
|
+
* Converts spoken audio into text.
|
|
6613
|
+
*
|
|
6595
6614
|
* - **Tags**: NotBrowsable
|
|
6596
6615
|
*
|
|
6597
6616
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText)
|
|
@@ -6606,18 +6625,24 @@ interface AudioSpeechToText extends Instance {
|
|
|
6606
6625
|
*/
|
|
6607
6626
|
readonly _nominal_AudioSpeechToText: unique symbol;
|
|
6608
6627
|
/**
|
|
6628
|
+
* Whether the `AudioSpeechToText` object is enabled for processing input audio into text.
|
|
6629
|
+
*
|
|
6609
6630
|
* - **ThreadSafety**: ReadSafe
|
|
6610
6631
|
*
|
|
6611
6632
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText#Enabled)
|
|
6612
6633
|
*/
|
|
6613
6634
|
Enabled: boolean;
|
|
6614
6635
|
/**
|
|
6636
|
+
* The text resulting from the conversion of speech audio.
|
|
6637
|
+
*
|
|
6615
6638
|
* - **ThreadSafety**: ReadSafe
|
|
6616
6639
|
*
|
|
6617
6640
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText#Text)
|
|
6618
6641
|
*/
|
|
6619
6642
|
Text: string;
|
|
6620
6643
|
/**
|
|
6644
|
+
* Whether the `AudioSpeechToText` object is detecting speech in the incoming audio signal.
|
|
6645
|
+
*
|
|
6621
6646
|
* - **ThreadSafety**: ReadSafe
|
|
6622
6647
|
* - **Tags**: NotReplicated
|
|
6623
6648
|
*
|
|
@@ -6625,14 +6650,18 @@ interface AudioSpeechToText extends Instance {
|
|
|
6625
6650
|
*/
|
|
6626
6651
|
readonly VoiceDetected: boolean;
|
|
6627
6652
|
/**
|
|
6653
|
+
* Returns an array of `Wires` that are connected to the specified pin.
|
|
6654
|
+
*
|
|
6628
6655
|
* - **ThreadSafety**: Unsafe
|
|
6629
6656
|
*
|
|
6630
6657
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText#GetConnectedWires)
|
|
6631
|
-
* @param this
|
|
6658
|
+
* @param this Converts spoken audio into text.
|
|
6632
6659
|
* @param pin
|
|
6633
6660
|
*/
|
|
6634
6661
|
GetConnectedWires(this: AudioSpeechToText, pin: string): Array<Instance>;
|
|
6635
6662
|
/**
|
|
6663
|
+
* Fires when another instance is connected to or disconnected from the `AudioSpeechToText` via a `Wire`.
|
|
6664
|
+
*
|
|
6636
6665
|
* - **ThreadSafety**: Unsafe
|
|
6637
6666
|
*
|
|
6638
6667
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText#WiringChanged)
|
|
@@ -7293,17 +7322,27 @@ interface AvatarCreationService extends Instance {
|
|
|
7293
7322
|
*/
|
|
7294
7323
|
AutoSetupAvatarAsync(this: AvatarCreationService, player: Player, model: Model, progressCallback?: Callback): string;
|
|
7295
7324
|
/**
|
|
7325
|
+
* Creates a 2D avatar preview and returns a previewId.
|
|
7326
|
+
*
|
|
7296
7327
|
* - **ThreadSafety**: Unsafe
|
|
7297
7328
|
* - **Tags**: Yields
|
|
7298
7329
|
*
|
|
7299
7330
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#GenerateAvatar2DPreviewAsync)
|
|
7331
|
+
* @param this A service to support developer avatar creators.
|
|
7332
|
+
* @param avatarGeneration2dPreviewParams A table of arguments for 2D preview generation. Type: `avatarGeneration2dPreviewParams: {SessionId: string, FileId: string, TextPrompt: string?}`
|
|
7333
|
+
* @returns A string previewId
|
|
7300
7334
|
*/
|
|
7301
7335
|
GenerateAvatar2DPreviewAsync(this: AvatarCreationService, avatarGeneration2dPreviewParams: object): string;
|
|
7302
7336
|
/**
|
|
7337
|
+
* Generates an avatar and returns a generationId.
|
|
7338
|
+
*
|
|
7303
7339
|
* - **ThreadSafety**: Unsafe
|
|
7304
7340
|
* - **Tags**: Yields
|
|
7305
7341
|
*
|
|
7306
7342
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#GenerateAvatarAsync)
|
|
7343
|
+
* @param this A service to support developer avatar creators.
|
|
7344
|
+
* @param avatarGenerationParams A table of arguments for generating an avatar. Type: `avatarGenerationParams: {SessionId: string, PreviewId: string}`
|
|
7345
|
+
* @returns A string generationId.
|
|
7307
7346
|
*/
|
|
7308
7347
|
GenerateAvatarAsync(this: AvatarCreationService, avatarGenerationParams: object): string;
|
|
7309
7348
|
/**
|
|
@@ -7319,10 +7358,15 @@ interface AvatarCreationService extends Instance {
|
|
|
7319
7358
|
*/
|
|
7320
7359
|
GetBatchTokenDetailsAsync(this: AvatarCreationService, tokenIds: Array<unknown>): Array<unknown>;
|
|
7321
7360
|
/**
|
|
7361
|
+
* Load an AvatarGeneration 2D preview on the client from a previewId.
|
|
7362
|
+
*
|
|
7322
7363
|
* - **ThreadSafety**: Unsafe
|
|
7323
7364
|
* - **Tags**: Yields
|
|
7324
7365
|
*
|
|
7325
7366
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#LoadAvatar2DPreviewAsync)
|
|
7367
|
+
* @param this A service to support developer avatar creators.
|
|
7368
|
+
* @param previewId Load the preview generated from `GenerateAvatar2DPreviewAsync()`.
|
|
7369
|
+
* @returns An `EditableImage` containing the preview image.
|
|
7326
7370
|
*/
|
|
7327
7371
|
LoadAvatar2DPreviewAsync(this: AvatarCreationService, previewId: string): EditableImage;
|
|
7328
7372
|
/**
|
|
@@ -7348,6 +7392,13 @@ interface AvatarCreationService extends Instance {
|
|
|
7348
7392
|
* @param humanoidModel The `Model` containing `MeshPart` children with `WrapDeformer` instances that require HSR data updating for preview.
|
|
7349
7393
|
*/
|
|
7350
7394
|
PrepareAvatarForPreviewAsync(this: AvatarCreationService, humanoidModel: Model): void;
|
|
7395
|
+
/**
|
|
7396
|
+
* - **ThreadSafety**: Unsafe
|
|
7397
|
+
* - **Tags**: Yields
|
|
7398
|
+
*
|
|
7399
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#PromptCreateAvatarAssetAsync)
|
|
7400
|
+
*/
|
|
7401
|
+
PromptCreateAvatarAssetAsync(this: AvatarCreationService, tokenId: string, player: Player, assetInstance: Instance, assetType: CastsToEnum<Enum.AvatarAssetType>): unknown;
|
|
7351
7402
|
/**
|
|
7352
7403
|
* Prompts a `Player` to purchase and create an avatar from a `HumanoidDescription`.
|
|
7353
7404
|
*
|
|
@@ -7365,17 +7416,28 @@ interface AvatarCreationService extends Instance {
|
|
|
7365
7416
|
*/
|
|
7366
7417
|
PromptCreateAvatarAsync(this: AvatarCreationService, tokenId: string, player: Player, humanoidDescription: HumanoidDescription): unknown;
|
|
7367
7418
|
/**
|
|
7419
|
+
* Prompt the `Player` to take a selfie and return the FileId.
|
|
7420
|
+
*
|
|
7368
7421
|
* - **ThreadSafety**: Unsafe
|
|
7369
7422
|
* - **Tags**: Yields
|
|
7370
7423
|
*
|
|
7371
7424
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#PromptSelectAvatarGenerationImageAsync)
|
|
7425
|
+
* @param this A service to support developer avatar creators.
|
|
7426
|
+
* @param player The `Player` to prompt for taking a selfie.
|
|
7427
|
+
* @returns A string FileId of the selfie.
|
|
7372
7428
|
*/
|
|
7373
7429
|
PromptSelectAvatarGenerationImageAsync(this: AvatarCreationService, player: Player): string;
|
|
7374
7430
|
/**
|
|
7431
|
+
* Request an AvatarGeneration session for a `Player`.
|
|
7432
|
+
*
|
|
7375
7433
|
* - **ThreadSafety**: Unsafe
|
|
7376
7434
|
* - **Tags**: Yields
|
|
7377
7435
|
*
|
|
7378
7436
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#RequestAvatarGenerationSessionAsync)
|
|
7437
|
+
* @param this A service to support developer avatar creators.
|
|
7438
|
+
* @param player The `Player` to request an AvatarGeneration session for.
|
|
7439
|
+
* @param callback Callback function that is invoked with a SessionInfo table, with information about the session. Type: `(SessionInfo: { SessionId: string, Allowed2DGenerations: number, Allowed3DGenerations: number, SessionTime: number }) -> ()`
|
|
7440
|
+
* @returns A tuple containing a `RBXScriptConnection` that can be used to cancel the session request and the estimated wait time in seconds.
|
|
7379
7441
|
*/
|
|
7380
7442
|
RequestAvatarGenerationSessionAsync(this: AvatarCreationService, player: Player, callback: Callback): unknown;
|
|
7381
7443
|
/**
|
|
@@ -7422,6 +7484,12 @@ interface AvatarCreationService extends Instance {
|
|
|
7422
7484
|
* - An optional table of strings. This includes failure reasons if validation was unsuccessful; otherwise `nil` if validation was successful.
|
|
7423
7485
|
*/
|
|
7424
7486
|
ValidateUGCFullBodyAsync(this: AvatarCreationService, player: Player, humanoidDescription: HumanoidDescription): unknown;
|
|
7487
|
+
/**
|
|
7488
|
+
* - **ThreadSafety**: Unsafe
|
|
7489
|
+
*
|
|
7490
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#AvatarAssetModerationCompleted)
|
|
7491
|
+
*/
|
|
7492
|
+
readonly AvatarAssetModerationCompleted: RBXScriptSignal<(assetId: number, moderationStatus: Enum.ModerationStatus) => void>;
|
|
7425
7493
|
/**
|
|
7426
7494
|
* Fires when an in-experience-created avatar's moderation status has been updated from pending.
|
|
7427
7495
|
*
|
|
@@ -19109,14 +19177,18 @@ interface BillboardGui extends LayerCollector {
|
|
|
19109
19177
|
* Determines the distance in studs at which the `BillboardGui` will stop scaling larger in size.
|
|
19110
19178
|
*
|
|
19111
19179
|
* - **ThreadSafety**: ReadSafe
|
|
19180
|
+
* - **Tags**:
|
|
19112
19181
|
*
|
|
19113
19182
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BillboardGui#DistanceLowerLimit)
|
|
19183
|
+
*
|
|
19184
|
+
* @deprecated
|
|
19114
19185
|
*/
|
|
19115
19186
|
DistanceLowerLimit: number;
|
|
19116
19187
|
/**
|
|
19117
19188
|
* Determines the size `CurrentDistance` increments and decrements in studs as the player's camera moves closer and further from the `BillboardGui`.
|
|
19118
19189
|
*
|
|
19119
19190
|
* - **ThreadSafety**: ReadSafe
|
|
19191
|
+
* - **Tags**: NotReplicated
|
|
19120
19192
|
*
|
|
19121
19193
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BillboardGui#DistanceStep)
|
|
19122
19194
|
*/
|
|
@@ -19125,8 +19197,11 @@ interface BillboardGui extends LayerCollector {
|
|
|
19125
19197
|
* Determines the distance in studs at which the `BillboardGui` will stop scaling smaller in size.
|
|
19126
19198
|
*
|
|
19127
19199
|
* - **ThreadSafety**: ReadSafe
|
|
19200
|
+
* - **Tags**:
|
|
19128
19201
|
*
|
|
19129
19202
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BillboardGui#DistanceUpperLimit)
|
|
19203
|
+
*
|
|
19204
|
+
* @deprecated
|
|
19130
19205
|
*/
|
|
19131
19206
|
DistanceUpperLimit: number;
|
|
19132
19207
|
/**
|
|
@@ -21284,6 +21359,14 @@ interface HapticEffect extends Instance {
|
|
|
21284
21359
|
* @param this
|
|
21285
21360
|
*/
|
|
21286
21361
|
Stop(this: HapticEffect): void;
|
|
21362
|
+
/**
|
|
21363
|
+
* Fires when the `HapticEffect` has completed playback and stopped.
|
|
21364
|
+
*
|
|
21365
|
+
* - **ThreadSafety**: Unsafe
|
|
21366
|
+
*
|
|
21367
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HapticEffect#Ended)
|
|
21368
|
+
*/
|
|
21369
|
+
readonly Ended: RBXScriptSignal<() => void>;
|
|
21287
21370
|
}
|
|
21288
21371
|
/**
|
|
21289
21372
|
* Provides haptic feedback to controllers and devices.
|
|
@@ -23950,6 +24033,12 @@ interface IncrementalPatchBuilder extends Instance {
|
|
|
23950
24033
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/IncrementalPatchBuilder#SerializePatch)
|
|
23951
24034
|
*/
|
|
23952
24035
|
SerializePatch: boolean;
|
|
24036
|
+
/**
|
|
24037
|
+
* - **ThreadSafety**: ReadSafe
|
|
24038
|
+
*
|
|
24039
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/IncrementalPatchBuilder#UseFileLevelCompressionInsteadOfChunk)
|
|
24040
|
+
*/
|
|
24041
|
+
UseFileLevelCompressionInsteadOfChunk: boolean;
|
|
23953
24042
|
/**
|
|
23954
24043
|
* - **ThreadSafety**: ReadSafe
|
|
23955
24044
|
*
|
|
@@ -26912,6 +27001,18 @@ interface MaterialVariant extends Instance {
|
|
|
26912
27001
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#CustomPhysicalProperties)
|
|
26913
27002
|
*/
|
|
26914
27003
|
CustomPhysicalProperties: PhysicalProperties;
|
|
27004
|
+
/**
|
|
27005
|
+
* - **ThreadSafety**: ReadSafe
|
|
27006
|
+
*
|
|
27007
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#EmissiveStrength)
|
|
27008
|
+
*/
|
|
27009
|
+
EmissiveStrength: number;
|
|
27010
|
+
/**
|
|
27011
|
+
* - **ThreadSafety**: ReadSafe
|
|
27012
|
+
*
|
|
27013
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#EmissiveTint)
|
|
27014
|
+
*/
|
|
27015
|
+
EmissiveTint: Color3;
|
|
26915
27016
|
/**
|
|
26916
27017
|
* Determines texture tiling method.
|
|
26917
27018
|
*
|
|
@@ -27384,6 +27485,12 @@ interface ModerationService extends Instance {
|
|
|
27384
27485
|
* @deprecated
|
|
27385
27486
|
*/
|
|
27386
27487
|
readonly _nominal_ModerationService: unique symbol;
|
|
27488
|
+
/**
|
|
27489
|
+
* - **ThreadSafety**: Unsafe
|
|
27490
|
+
*
|
|
27491
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ModerationService#CreateReviewableContentKey)
|
|
27492
|
+
*/
|
|
27493
|
+
CreateReviewableContentKey(this: ModerationService, content: Content): string;
|
|
27387
27494
|
/**
|
|
27388
27495
|
* - **ThreadSafety**: Unsafe
|
|
27389
27496
|
* - **Tags**: Yields
|
|
@@ -29813,6 +29920,8 @@ interface MeshPart extends TriangleMeshPart {
|
|
|
29813
29920
|
* - **Tags**: Hidden
|
|
29814
29921
|
*
|
|
29815
29922
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MeshPart#HasJointOffset)
|
|
29923
|
+
*
|
|
29924
|
+
* @deprecated
|
|
29816
29925
|
*/
|
|
29817
29926
|
get HasJointOffset(): boolean;
|
|
29818
29927
|
/**
|
|
@@ -29827,6 +29936,8 @@ interface MeshPart extends TriangleMeshPart {
|
|
|
29827
29936
|
* - **Tags**: Hidden
|
|
29828
29937
|
*
|
|
29829
29938
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MeshPart#JointOffset)
|
|
29939
|
+
*
|
|
29940
|
+
* @deprecated
|
|
29830
29941
|
*/
|
|
29831
29942
|
get JointOffset(): Vector3;
|
|
29832
29943
|
/**
|
|
@@ -31958,7 +32069,7 @@ interface ParticleEmitter extends Instance {
|
|
|
31958
32069
|
*/
|
|
31959
32070
|
FlipbookIncompatible: string;
|
|
31960
32071
|
/**
|
|
31961
|
-
* Determines the layout of the flipbook texture. Must be None, Grid2x2, Grid4x4, or
|
|
32072
|
+
* Determines the layout of the flipbook texture. Must be None, Grid2x2, Grid4x4, Grid8x8 or Custom.
|
|
31962
32073
|
*
|
|
31963
32074
|
* - **ThreadSafety**: ReadSafe
|
|
31964
32075
|
*
|
|
@@ -31973,6 +32084,22 @@ interface ParticleEmitter extends Instance {
|
|
|
31973
32084
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ParticleEmitter#FlipbookMode)
|
|
31974
32085
|
*/
|
|
31975
32086
|
FlipbookMode: Enum.ParticleFlipbookMode;
|
|
32087
|
+
/**
|
|
32088
|
+
* Defines the number of horizontal frames in a custom flipbook layout.
|
|
32089
|
+
*
|
|
32090
|
+
* - **ThreadSafety**: ReadSafe
|
|
32091
|
+
*
|
|
32092
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ParticleEmitter#FlipbookSizeX)
|
|
32093
|
+
*/
|
|
32094
|
+
FlipbookSizeX: number;
|
|
32095
|
+
/**
|
|
32096
|
+
* Defines the number of vertical frames in a custom flipbook layout.
|
|
32097
|
+
*
|
|
32098
|
+
* - **ThreadSafety**: ReadSafe
|
|
32099
|
+
*
|
|
32100
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ParticleEmitter#FlipbookSizeY)
|
|
32101
|
+
*/
|
|
32102
|
+
FlipbookSizeY: number;
|
|
31976
32103
|
/**
|
|
31977
32104
|
* Determines whether the animation starts at a random frame chosen per particle instead of always starting at frame zero.
|
|
31978
32105
|
*
|
|
@@ -37313,6 +37440,13 @@ interface SocialService extends Instance {
|
|
|
37313
37440
|
* @returns An array of dictionaries representing the members of the specified party who are currently in the experience.
|
|
37314
37441
|
*/
|
|
37315
37442
|
GetPartyAsync(this: SocialService, partyId: string): Array<unknown>;
|
|
37443
|
+
/**
|
|
37444
|
+
* - **ThreadSafety**: Unsafe
|
|
37445
|
+
* - **Tags**: Yields
|
|
37446
|
+
*
|
|
37447
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#PromptFeedbackSubmissionAsync)
|
|
37448
|
+
*/
|
|
37449
|
+
PromptFeedbackSubmissionAsync(this: SocialService): void;
|
|
37316
37450
|
/**
|
|
37317
37451
|
* - **ThreadSafety**: Unsafe
|
|
37318
37452
|
* - **Tags**: Yields
|
|
@@ -39434,6 +39568,46 @@ interface StyleLink extends Instance {
|
|
|
39434
39568
|
*/
|
|
39435
39569
|
StyleSheet: StyleSheet | undefined;
|
|
39436
39570
|
}
|
|
39571
|
+
/**
|
|
39572
|
+
* - **Tags**: NotReplicated, NotBrowsable
|
|
39573
|
+
*
|
|
39574
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery)
|
|
39575
|
+
*/
|
|
39576
|
+
interface StyleQuery extends Instance {
|
|
39577
|
+
/**
|
|
39578
|
+
* **DO NOT USE!**
|
|
39579
|
+
*
|
|
39580
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
39581
|
+
* @hidden
|
|
39582
|
+
* @deprecated
|
|
39583
|
+
*/
|
|
39584
|
+
readonly _nominal_StyleQuery: unique symbol;
|
|
39585
|
+
/**
|
|
39586
|
+
* - **ThreadSafety**: ReadSafe
|
|
39587
|
+
*
|
|
39588
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery#AspectRatioRange)
|
|
39589
|
+
*/
|
|
39590
|
+
AspectRatioRange: NumberRange;
|
|
39591
|
+
/**
|
|
39592
|
+
* - **ThreadSafety**: ReadSafe
|
|
39593
|
+
* - **Tags**: NotReplicated
|
|
39594
|
+
*
|
|
39595
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery#IsActive)
|
|
39596
|
+
*/
|
|
39597
|
+
readonly IsActive: boolean;
|
|
39598
|
+
/**
|
|
39599
|
+
* - **ThreadSafety**: ReadSafe
|
|
39600
|
+
*
|
|
39601
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery#MaxSize)
|
|
39602
|
+
*/
|
|
39603
|
+
MaxSize: Vector2;
|
|
39604
|
+
/**
|
|
39605
|
+
* - **ThreadSafety**: ReadSafe
|
|
39606
|
+
*
|
|
39607
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery#MinSize)
|
|
39608
|
+
*/
|
|
39609
|
+
MinSize: Vector2;
|
|
39610
|
+
}
|
|
39437
39611
|
/**
|
|
39438
39612
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
39439
39613
|
*
|
|
@@ -39486,6 +39660,24 @@ interface SurfaceAppearance extends Instance {
|
|
|
39486
39660
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#ColorMapContent)
|
|
39487
39661
|
*/
|
|
39488
39662
|
get ColorMapContent(): Content;
|
|
39663
|
+
/**
|
|
39664
|
+
* - **ThreadSafety**: ReadSafe
|
|
39665
|
+
*
|
|
39666
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#EmissiveMaskContent)
|
|
39667
|
+
*/
|
|
39668
|
+
get EmissiveMaskContent(): Content;
|
|
39669
|
+
/**
|
|
39670
|
+
* - **ThreadSafety**: ReadSafe
|
|
39671
|
+
*
|
|
39672
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#EmissiveStrength)
|
|
39673
|
+
*/
|
|
39674
|
+
EmissiveStrength: number;
|
|
39675
|
+
/**
|
|
39676
|
+
* - **ThreadSafety**: ReadSafe
|
|
39677
|
+
*
|
|
39678
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#EmissiveTint)
|
|
39679
|
+
*/
|
|
39680
|
+
EmissiveTint: Color3;
|
|
39489
39681
|
/**
|
|
39490
39682
|
* - **ThreadSafety**: ReadSafe
|
|
39491
39683
|
* - **Tags**: Hidden
|
|
@@ -40060,6 +40252,18 @@ interface TerrainDetail extends Instance {
|
|
|
40060
40252
|
* @deprecated
|
|
40061
40253
|
*/
|
|
40062
40254
|
readonly _nominal_TerrainDetail: unique symbol;
|
|
40255
|
+
/**
|
|
40256
|
+
* - **ThreadSafety**: ReadSafe
|
|
40257
|
+
*
|
|
40258
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#EmissiveStrength)
|
|
40259
|
+
*/
|
|
40260
|
+
EmissiveStrength: number;
|
|
40261
|
+
/**
|
|
40262
|
+
* - **ThreadSafety**: ReadSafe
|
|
40263
|
+
*
|
|
40264
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#EmissiveTint)
|
|
40265
|
+
*/
|
|
40266
|
+
EmissiveTint: Color3;
|
|
40063
40267
|
/**
|
|
40064
40268
|
* The face this TerrainDetail overrides.
|
|
40065
40269
|
*
|
|
@@ -42350,19 +42554,19 @@ interface TweenService extends Instance {
|
|
|
42350
42554
|
*/
|
|
42351
42555
|
GetValue(this: TweenService, alpha: number, easingStyle: CastsToEnum<Enum.EasingStyle>, easingDirection: CastsToEnum<Enum.EasingDirection>): number;
|
|
42352
42556
|
/**
|
|
42353
|
-
*
|
|
42557
|
+
* Smoothly interpolates a value towards a target, simulating a critically damped spring.
|
|
42354
42558
|
*
|
|
42355
42559
|
* - **ThreadSafety**: Safe
|
|
42356
42560
|
*
|
|
42357
42561
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TweenService#SmoothDamp)
|
|
42358
42562
|
* @param this Used to create `Tweens` which interpolate, or tween, the properties of instances.
|
|
42359
|
-
* @param current The current
|
|
42360
|
-
* @param target The target
|
|
42361
|
-
* @param velocity The
|
|
42362
|
-
* @param smoothTime The duration
|
|
42363
|
-
* @param maxSpeed The maximum speed at which the current
|
|
42364
|
-
* @param dt The rate at which the smoothing operation should be applied.
|
|
42365
|
-
* @returns The new
|
|
42563
|
+
* @param current The current value to smooth.
|
|
42564
|
+
* @param target The target value to reach.
|
|
42565
|
+
* @param velocity The current velocity with which the current value should approach the target value. You shouldn't modify this value between calls yourself, it's used to store the stateful velocity. In most cases, initialize this with `0`, `zero`, `zero`, or `identity` depending on the type, or if needed, with your initial velocity.
|
|
42566
|
+
* @param smoothTime The duration over which the total smoothing operation should take place. Note that since this is a damped spring, there's no guarantee `current` will be exactly `target` after this time, but it will be close. Smaller values result in quicker smoothing.
|
|
42567
|
+
* @param maxSpeed The maximum speed at which the current value should approach the target value. Leaving this nil defaults to `huge`, meaning the velocity isn't clamped.
|
|
42568
|
+
* @param dt The rate at which the smoothing operation should be applied. If left nil, the current engine delta time will be used.
|
|
42569
|
+
* @returns The new value and new velocity calculated from the smoothing operation.
|
|
42366
42570
|
*/
|
|
42367
42571
|
SmoothDamp<T extends number | Vector2 | Vector3 | CFrame>(this: TweenService, current: T, target: T, velocity: T, smoothTime: number, maxSpeed?: number, dt?: number): LuaTuple<[
|
|
42368
42572
|
T,
|
|
@@ -42536,46 +42740,6 @@ interface UITextSizeConstraint extends UIConstraint {
|
|
|
42536
42740
|
*/
|
|
42537
42741
|
MinTextSize: number;
|
|
42538
42742
|
}
|
|
42539
|
-
/**
|
|
42540
|
-
* - **Tags**: NotReplicated, NotBrowsable
|
|
42541
|
-
*
|
|
42542
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIContainerQuery)
|
|
42543
|
-
*/
|
|
42544
|
-
interface UIContainerQuery extends UIComponent {
|
|
42545
|
-
/**
|
|
42546
|
-
* **DO NOT USE!**
|
|
42547
|
-
*
|
|
42548
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
42549
|
-
* @hidden
|
|
42550
|
-
* @deprecated
|
|
42551
|
-
*/
|
|
42552
|
-
readonly _nominal_UIContainerQuery: unique symbol;
|
|
42553
|
-
/**
|
|
42554
|
-
* - **ThreadSafety**: ReadSafe
|
|
42555
|
-
*
|
|
42556
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIContainerQuery#AspectRatioRange)
|
|
42557
|
-
*/
|
|
42558
|
-
AspectRatioRange: NumberRange;
|
|
42559
|
-
/**
|
|
42560
|
-
* - **ThreadSafety**: ReadSafe
|
|
42561
|
-
* - **Tags**: NotReplicated
|
|
42562
|
-
*
|
|
42563
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIContainerQuery#IsActive)
|
|
42564
|
-
*/
|
|
42565
|
-
readonly IsActive: boolean;
|
|
42566
|
-
/**
|
|
42567
|
-
* - **ThreadSafety**: ReadSafe
|
|
42568
|
-
*
|
|
42569
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIContainerQuery#MaxSize)
|
|
42570
|
-
*/
|
|
42571
|
-
MaxSize: Vector2;
|
|
42572
|
-
/**
|
|
42573
|
-
* - **ThreadSafety**: ReadSafe
|
|
42574
|
-
*
|
|
42575
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIContainerQuery#MinSize)
|
|
42576
|
-
*/
|
|
42577
|
-
MinSize: Vector2;
|
|
42578
|
-
}
|
|
42579
42743
|
/**
|
|
42580
42744
|
* UI modifier which applies deformation to corners of its parent `GuiObject`.
|
|
42581
42745
|
*
|
|
@@ -43483,12 +43647,16 @@ interface UIStroke extends UIComponent {
|
|
|
43483
43647
|
*/
|
|
43484
43648
|
ApplyStrokeMode: Enum.ApplyStrokeMode;
|
|
43485
43649
|
/**
|
|
43650
|
+
* Specifies an additional offset to the stroke's position, relative to the parent's minimum height or width.
|
|
43651
|
+
*
|
|
43486
43652
|
* - **ThreadSafety**: ReadSafe
|
|
43487
43653
|
*
|
|
43488
43654
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIStroke#BorderOffset)
|
|
43489
43655
|
*/
|
|
43490
43656
|
BorderOffset: UDim;
|
|
43491
43657
|
/**
|
|
43658
|
+
* Determines the stroke's position on its parent's border.
|
|
43659
|
+
*
|
|
43492
43660
|
* - **ThreadSafety**: ReadSafe
|
|
43493
43661
|
*
|
|
43494
43662
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIStroke#BorderStrokePosition)
|
|
@@ -43519,6 +43687,8 @@ interface UIStroke extends UIComponent {
|
|
|
43519
43687
|
*/
|
|
43520
43688
|
LineJoinMode: Enum.LineJoinMode;
|
|
43521
43689
|
/**
|
|
43690
|
+
* Determines whether the stroke's `Thickness` will be measured in pixels or be relative to the parent.
|
|
43691
|
+
*
|
|
43522
43692
|
* - **ThreadSafety**: ReadSafe
|
|
43523
43693
|
*
|
|
43524
43694
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIStroke#StrokeSizingMode)
|
|
@@ -43541,6 +43711,8 @@ interface UIStroke extends UIComponent {
|
|
|
43541
43711
|
*/
|
|
43542
43712
|
Transparency: number;
|
|
43543
43713
|
/**
|
|
43714
|
+
* Determines the order in which the stroke renders relative to sibling `UIStroke` instances.
|
|
43715
|
+
*
|
|
43544
43716
|
* - **ThreadSafety**: ReadSafe
|
|
43545
43717
|
*
|
|
43546
43718
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIStroke#ZIndex)
|
|
@@ -45866,6 +46038,8 @@ interface Wire extends Instance {
|
|
|
45866
46038
|
TargetName: string;
|
|
45867
46039
|
}
|
|
45868
46040
|
/**
|
|
46041
|
+
* - **Tags**: NotBrowsable
|
|
46042
|
+
*
|
|
45869
46043
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapTextureTransfer)
|
|
45870
46044
|
*/
|
|
45871
46045
|
interface WrapTextureTransfer extends Instance {
|