@rbxts/types 1.0.857 → 1.0.858
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.
|
@@ -113,6 +113,7 @@ interface Services {
|
|
|
113
113
|
MetaBreakpointManager: MetaBreakpointManager;
|
|
114
114
|
MLModelDeliveryService: MLModelDeliveryService;
|
|
115
115
|
MLService: MLService;
|
|
116
|
+
Moderation: Moderation;
|
|
116
117
|
OmniRecommendationsService: OmniRecommendationsService;
|
|
117
118
|
OpenCloudService: OpenCloudService;
|
|
118
119
|
PackageUIService: PackageUIService;
|
|
@@ -260,6 +261,7 @@ interface CreatableInstances {
|
|
|
260
261
|
AudioRecorder: AudioRecorder;
|
|
261
262
|
AudioReverb: AudioReverb;
|
|
262
263
|
AudioSearchParams: AudioSearchParams;
|
|
264
|
+
AudioSpeechToText: AudioSpeechToText;
|
|
263
265
|
AudioTextToSpeech: AudioTextToSpeech;
|
|
264
266
|
AuroraScript: AuroraScript;
|
|
265
267
|
AvatarAccessoryRules: AvatarAccessoryRules;
|
|
@@ -4916,6 +4918,8 @@ interface AudioEmitter extends Instance {
|
|
|
4916
4918
|
*/
|
|
4917
4919
|
GetAngleAttenuation(this: AudioEmitter): object;
|
|
4918
4920
|
/**
|
|
4921
|
+
* Calculates how audible this emitter is for a particular `AudioListener`.
|
|
4922
|
+
*
|
|
4919
4923
|
* - **ThreadSafety**: Unsafe
|
|
4920
4924
|
*
|
|
4921
4925
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEmitter#GetAudibilityFor)
|
|
@@ -4951,6 +4955,8 @@ interface AudioEmitter extends Instance {
|
|
|
4951
4955
|
*/
|
|
4952
4956
|
GetInputPins(this: AudioEmitter): Array<unknown>;
|
|
4953
4957
|
/**
|
|
4958
|
+
* Lists all `AudioListeners` that are capable of hearing this emitter.
|
|
4959
|
+
*
|
|
4954
4960
|
* - **ThreadSafety**: Unsafe
|
|
4955
4961
|
*
|
|
4956
4962
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEmitter#GetInteractingListeners)
|
|
@@ -5450,6 +5456,8 @@ interface AudioListener extends Instance {
|
|
|
5450
5456
|
*/
|
|
5451
5457
|
GetAngleAttenuation(this: AudioListener): object;
|
|
5452
5458
|
/**
|
|
5459
|
+
* Calculates how audible an `AudioEmitter` is for this listener
|
|
5460
|
+
*
|
|
5453
5461
|
* - **ThreadSafety**: Unsafe
|
|
5454
5462
|
*
|
|
5455
5463
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioListener#GetAudibilityFor)
|
|
@@ -5485,6 +5493,8 @@ interface AudioListener extends Instance {
|
|
|
5485
5493
|
*/
|
|
5486
5494
|
GetInputPins(this: AudioListener): Array<unknown>;
|
|
5487
5495
|
/**
|
|
5496
|
+
* Lists all `AudioEmitters` that this listener is capable of hearing.
|
|
5497
|
+
*
|
|
5488
5498
|
* - **ThreadSafety**: Unsafe
|
|
5489
5499
|
*
|
|
5490
5500
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioListener#GetInteractingEmitters)
|
|
@@ -6138,6 +6148,52 @@ interface AudioSearchParams extends Instance {
|
|
|
6138
6148
|
*/
|
|
6139
6149
|
Title: string;
|
|
6140
6150
|
}
|
|
6151
|
+
/**
|
|
6152
|
+
* - **Tags**: NotBrowsable
|
|
6153
|
+
*
|
|
6154
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText)
|
|
6155
|
+
*/
|
|
6156
|
+
interface AudioSpeechToText extends Instance {
|
|
6157
|
+
/**
|
|
6158
|
+
* **DO NOT USE!**
|
|
6159
|
+
*
|
|
6160
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
6161
|
+
* @hidden
|
|
6162
|
+
* @deprecated
|
|
6163
|
+
*/
|
|
6164
|
+
readonly _nominal_AudioSpeechToText: unique symbol;
|
|
6165
|
+
/**
|
|
6166
|
+
* - **ThreadSafety**: ReadSafe
|
|
6167
|
+
*
|
|
6168
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText#Enabled)
|
|
6169
|
+
*/
|
|
6170
|
+
Enabled: boolean;
|
|
6171
|
+
/**
|
|
6172
|
+
* - **ThreadSafety**: ReadSafe
|
|
6173
|
+
*
|
|
6174
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText#Text)
|
|
6175
|
+
*/
|
|
6176
|
+
Text: string;
|
|
6177
|
+
/**
|
|
6178
|
+
* - **ThreadSafety**: ReadSafe
|
|
6179
|
+
* - **Tags**: NotReplicated
|
|
6180
|
+
*
|
|
6181
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText#VoiceDetected)
|
|
6182
|
+
*/
|
|
6183
|
+
readonly VoiceDetected: boolean;
|
|
6184
|
+
/**
|
|
6185
|
+
* - **ThreadSafety**: Unsafe
|
|
6186
|
+
*
|
|
6187
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText#GetConnectedWires)
|
|
6188
|
+
*/
|
|
6189
|
+
GetConnectedWires(this: AudioSpeechToText, pin: string): Array<Instance>;
|
|
6190
|
+
/**
|
|
6191
|
+
* - **ThreadSafety**: Unsafe
|
|
6192
|
+
*
|
|
6193
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText#WiringChanged)
|
|
6194
|
+
*/
|
|
6195
|
+
readonly WiringChanged: RBXScriptSignal<(connected: boolean, pin: string, wire: Wire, instance: Instance) => void>;
|
|
6196
|
+
}
|
|
6141
6197
|
/**
|
|
6142
6198
|
* Plays text as speech audio.
|
|
6143
6199
|
*
|
|
@@ -6348,6 +6404,12 @@ interface AuroraScriptObject extends Instance {
|
|
|
6348
6404
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptObject#FrameId)
|
|
6349
6405
|
*/
|
|
6350
6406
|
FrameId: number;
|
|
6407
|
+
/**
|
|
6408
|
+
* - **ThreadSafety**: ReadSafe
|
|
6409
|
+
*
|
|
6410
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptObject#LODLevel)
|
|
6411
|
+
*/
|
|
6412
|
+
LODLevel: number;
|
|
6351
6413
|
}
|
|
6352
6414
|
/**
|
|
6353
6415
|
* - **Tags**: NotCreatable, Service
|
|
@@ -6454,6 +6516,12 @@ interface AuroraService extends Instance {
|
|
|
6454
6516
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#SetPropertyIsInput)
|
|
6455
6517
|
*/
|
|
6456
6518
|
SetPropertyIsInput(this: AuroraService, target: Instance, propertyName: string, isInput: boolean): void;
|
|
6519
|
+
/**
|
|
6520
|
+
* - **ThreadSafety**: Unsafe
|
|
6521
|
+
*
|
|
6522
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#ShowDebugVisualizer)
|
|
6523
|
+
*/
|
|
6524
|
+
ShowDebugVisualizer(this: AuroraService, state: boolean): void;
|
|
6457
6525
|
/**
|
|
6458
6526
|
* - **ThreadSafety**: Unsafe
|
|
6459
6527
|
*
|
|
@@ -17513,6 +17581,12 @@ interface ScrollingFrame extends GuiObject {
|
|
|
17513
17581
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScrollingFrame#BottomImage)
|
|
17514
17582
|
*/
|
|
17515
17583
|
BottomImage: ContentId;
|
|
17584
|
+
/**
|
|
17585
|
+
* - **ThreadSafety**: ReadSafe
|
|
17586
|
+
*
|
|
17587
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScrollingFrame#BottomImageContent)
|
|
17588
|
+
*/
|
|
17589
|
+
BottomImageContent: Content;
|
|
17516
17590
|
/**
|
|
17517
17591
|
* Reflects the **current** positional offset of the canvas within the frame, in pixels, and sets the position of scroll bars accordingly.
|
|
17518
17592
|
*
|
|
@@ -17553,6 +17627,12 @@ interface ScrollingFrame extends GuiObject {
|
|
|
17553
17627
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScrollingFrame#MidImage)
|
|
17554
17628
|
*/
|
|
17555
17629
|
MidImage: ContentId;
|
|
17630
|
+
/**
|
|
17631
|
+
* - **ThreadSafety**: ReadSafe
|
|
17632
|
+
*
|
|
17633
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScrollingFrame#MidImageContent)
|
|
17634
|
+
*/
|
|
17635
|
+
MidImageContent: Content;
|
|
17556
17636
|
/**
|
|
17557
17637
|
* Determines how the rendered scroll bar images are colorized.
|
|
17558
17638
|
*
|
|
@@ -17601,6 +17681,12 @@ interface ScrollingFrame extends GuiObject {
|
|
|
17601
17681
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScrollingFrame#TopImage)
|
|
17602
17682
|
*/
|
|
17603
17683
|
TopImage: ContentId;
|
|
17684
|
+
/**
|
|
17685
|
+
* - **ThreadSafety**: ReadSafe
|
|
17686
|
+
*
|
|
17687
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScrollingFrame#TopImageContent)
|
|
17688
|
+
*/
|
|
17689
|
+
TopImageContent: Content;
|
|
17604
17690
|
/**
|
|
17605
17691
|
* Indicates whether `CanvasSize` is inset by `ScrollBarThickness` on the vertical axis.
|
|
17606
17692
|
*
|
|
@@ -23225,6 +23311,12 @@ interface InputBinding extends Instance {
|
|
|
23225
23311
|
* @deprecated
|
|
23226
23312
|
*/
|
|
23227
23313
|
readonly _nominal_InputBinding: unique symbol;
|
|
23314
|
+
/**
|
|
23315
|
+
* - **ThreadSafety**: ReadSafe
|
|
23316
|
+
*
|
|
23317
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#Backward)
|
|
23318
|
+
*/
|
|
23319
|
+
Backward: Enum.KeyCode;
|
|
23228
23320
|
/**
|
|
23229
23321
|
* Specifies an alternate `KeyCode` for dispatching directionally "down" inputs to the parent `InputAction`.
|
|
23230
23322
|
*
|
|
@@ -23233,6 +23325,12 @@ interface InputBinding extends Instance {
|
|
|
23233
23325
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#Down)
|
|
23234
23326
|
*/
|
|
23235
23327
|
Down: Enum.KeyCode;
|
|
23328
|
+
/**
|
|
23329
|
+
* - **ThreadSafety**: ReadSafe
|
|
23330
|
+
*
|
|
23331
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#Forward)
|
|
23332
|
+
*/
|
|
23333
|
+
Forward: Enum.KeyCode;
|
|
23236
23334
|
/**
|
|
23237
23335
|
* Specifies the `KeyCode` which triggers the parent `InputAction`.
|
|
23238
23336
|
*
|
|
@@ -25507,6 +25605,8 @@ interface MLService extends Instance {
|
|
|
25507
25605
|
* - **Tags**: Yields
|
|
25508
25606
|
*
|
|
25509
25607
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MLService#CreateSessionAsync)
|
|
25608
|
+
* @param this
|
|
25609
|
+
* @param assetId
|
|
25510
25610
|
*/
|
|
25511
25611
|
CreateSessionAsync(this: MLService, assetId: string): MLSession;
|
|
25512
25612
|
}
|
|
@@ -26176,12 +26276,14 @@ interface MemoryStoreQueue extends Instance {
|
|
|
26176
26276
|
*/
|
|
26177
26277
|
AddAsync(this: MemoryStoreQueue, value: unknown, expiration: number, priority?: number): void;
|
|
26178
26278
|
/**
|
|
26279
|
+
* Gets the size of the queue.
|
|
26280
|
+
*
|
|
26179
26281
|
* - **ThreadSafety**: Unsafe
|
|
26180
26282
|
* - **Tags**: Yields
|
|
26181
26283
|
*
|
|
26182
26284
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MemoryStoreQueue#GetSizeAsync)
|
|
26183
26285
|
* @param this Provides access to a queue within MemoryStore.
|
|
26184
|
-
* @param excludeInvisible
|
|
26286
|
+
* @param excludeInvisible Determines whether to exclude invisible items from the size count.
|
|
26185
26287
|
*/
|
|
26186
26288
|
GetSizeAsync(this: MemoryStoreQueue, excludeInvisible?: boolean): number;
|
|
26187
26289
|
/**
|
|
@@ -26322,6 +26424,8 @@ interface MemoryStoreSortedMap extends Instance {
|
|
|
26322
26424
|
sortKey?: string | number;
|
|
26323
26425
|
}>;
|
|
26324
26426
|
/**
|
|
26427
|
+
* Gets the size of the sorted map.
|
|
26428
|
+
*
|
|
26325
26429
|
* - **ThreadSafety**: Unsafe
|
|
26326
26430
|
* - **Tags**: Yields
|
|
26327
26431
|
*
|
|
@@ -26489,6 +26593,41 @@ interface MetaBreakpointManager extends Instance {
|
|
|
26489
26593
|
*/
|
|
26490
26594
|
readonly _nominal_MetaBreakpointManager: unique symbol;
|
|
26491
26595
|
}
|
|
26596
|
+
/**
|
|
26597
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
26598
|
+
*
|
|
26599
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Moderation)
|
|
26600
|
+
*/
|
|
26601
|
+
interface Moderation extends Instance {
|
|
26602
|
+
/**
|
|
26603
|
+
* **DO NOT USE!**
|
|
26604
|
+
*
|
|
26605
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
26606
|
+
* @hidden
|
|
26607
|
+
* @deprecated
|
|
26608
|
+
*/
|
|
26609
|
+
readonly _nominal_Moderation: unique symbol;
|
|
26610
|
+
/**
|
|
26611
|
+
* - **ThreadSafety**: Unsafe
|
|
26612
|
+
* - **Tags**: Yields
|
|
26613
|
+
*
|
|
26614
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Moderation#InternalCreateReviewableContentAsync)
|
|
26615
|
+
*/
|
|
26616
|
+
InternalCreateReviewableContentAsync(this: Moderation, config: object): string;
|
|
26617
|
+
/**
|
|
26618
|
+
* - **ThreadSafety**: Unsafe
|
|
26619
|
+
* - **Tags**: Yields
|
|
26620
|
+
*
|
|
26621
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Moderation#InternalRequestReviewableContentReviewAsync)
|
|
26622
|
+
*/
|
|
26623
|
+
InternalRequestReviewableContentReviewAsync(this: Moderation, config: object): void;
|
|
26624
|
+
/**
|
|
26625
|
+
* - **ThreadSafety**: Unsafe
|
|
26626
|
+
*
|
|
26627
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Moderation#InternalProcessReviewableContentEvent)
|
|
26628
|
+
*/
|
|
26629
|
+
InternalProcessReviewableContentEvent: ((event: object) => boolean) | undefined;
|
|
26630
|
+
}
|
|
26492
26631
|
/**
|
|
26493
26632
|
* Legacy object that contains members useful for pointer input.
|
|
26494
26633
|
*
|
|
@@ -28449,6 +28588,9 @@ interface Terrain extends BasePart {
|
|
|
28449
28588
|
* - **Tags**: CustomLuaState
|
|
28450
28589
|
*
|
|
28451
28590
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Terrain#ClearVoxelsAsync_beta)
|
|
28591
|
+
* @param this Terrain lets you to create dynamically morphable environments.
|
|
28592
|
+
* @param region
|
|
28593
|
+
* @param channelIds
|
|
28452
28594
|
*/
|
|
28453
28595
|
ClearVoxelsAsync_beta(this: Terrain, region: Region3, channelIds: Array<unknown>): void;
|
|
28454
28596
|
/**
|
|
@@ -28580,6 +28722,10 @@ interface Terrain extends BasePart {
|
|
|
28580
28722
|
* - **Tags**: CustomLuaState
|
|
28581
28723
|
*
|
|
28582
28724
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Terrain#IterateVoxelsAsync_beta)
|
|
28725
|
+
* @param this Terrain lets you to create dynamically morphable environments.
|
|
28726
|
+
* @param region
|
|
28727
|
+
* @param resolution
|
|
28728
|
+
* @param channelIds
|
|
28583
28729
|
*/
|
|
28584
28730
|
IterateVoxelsAsync_beta(this: Terrain, region: Region3, resolution: number, channelIds: Array<unknown>): TerrainIterateOperation;
|
|
28585
28731
|
/**
|
|
@@ -28587,6 +28733,10 @@ interface Terrain extends BasePart {
|
|
|
28587
28733
|
* - **Tags**: CustomLuaState
|
|
28588
28734
|
*
|
|
28589
28735
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Terrain#ModifyVoxelsAsync_beta)
|
|
28736
|
+
* @param this Terrain lets you to create dynamically morphable environments.
|
|
28737
|
+
* @param region
|
|
28738
|
+
* @param resolution
|
|
28739
|
+
* @param channelIds
|
|
28590
28740
|
*/
|
|
28591
28741
|
ModifyVoxelsAsync_beta(this: Terrain, region: Region3, resolution: number, channelIds: Array<unknown>): TerrainModifyOperation;
|
|
28592
28742
|
/**
|
|
@@ -28641,6 +28791,10 @@ interface Terrain extends BasePart {
|
|
|
28641
28791
|
* - **Tags**: CustomLuaState
|
|
28642
28792
|
*
|
|
28643
28793
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Terrain#ReadVoxelsAsync_beta)
|
|
28794
|
+
* @param this Terrain lets you to create dynamically morphable environments.
|
|
28795
|
+
* @param region
|
|
28796
|
+
* @param resolution
|
|
28797
|
+
* @param channelIds
|
|
28644
28798
|
*/
|
|
28645
28799
|
ReadVoxelsAsync_beta(this: Terrain, region: Region3, resolution: number, channelIds: Array<unknown>): TerrainReadOperation;
|
|
28646
28800
|
/**
|
|
@@ -28788,6 +28942,10 @@ interface Terrain extends BasePart {
|
|
|
28788
28942
|
* - **Tags**: CustomLuaState
|
|
28789
28943
|
*
|
|
28790
28944
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Terrain#WriteVoxelsAsync_beta)
|
|
28945
|
+
* @param this Terrain lets you to create dynamically morphable environments.
|
|
28946
|
+
* @param region
|
|
28947
|
+
* @param resolution
|
|
28948
|
+
* @param channelIds
|
|
28791
28949
|
*/
|
|
28792
28950
|
WriteVoxelsAsync_beta(this: Terrain, region: Region3, resolution: number, channelIds: Array<unknown>): TerrainWriteOperation;
|
|
28793
28951
|
}
|
|
@@ -29586,13 +29744,13 @@ interface Model extends PVInstance {
|
|
|
29586
29744
|
*/
|
|
29587
29745
|
WorldPivot: CFrame;
|
|
29588
29746
|
/**
|
|
29589
|
-
* Sets this model to be persistent for the specified player. `
|
|
29747
|
+
* Sets this model to be persistent for the specified player. `ModelStreamingMode` must be set to `PersistentPerPlayer` for behavior to be changed as a result of addition.
|
|
29590
29748
|
*
|
|
29591
29749
|
* - **ThreadSafety**: Unsafe
|
|
29592
29750
|
*
|
|
29593
29751
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Model#AddPersistentPlayer)
|
|
29594
29752
|
* @param this Models are container objects, meaning they group objects together. They are best used to hold collections of `BaseParts` and have a number of functions that extend their functionality.
|
|
29595
|
-
* @param playerInstance
|
|
29753
|
+
* @param playerInstance The `Player` to make this model persistent for.
|
|
29596
29754
|
*/
|
|
29597
29755
|
AddPersistentPlayer(this: Model, playerInstance?: Player): void;
|
|
29598
29756
|
/**
|
|
@@ -29719,13 +29877,13 @@ interface Model extends PVInstance {
|
|
|
29719
29877
|
*/
|
|
29720
29878
|
MoveTo(this: Model, position: Vector3): void;
|
|
29721
29879
|
/**
|
|
29722
|
-
* Makes this model no longer persistent for specified player. `
|
|
29880
|
+
* Makes this model no longer persistent for the specified player. `ModelStreamingMode` must be set to `PersistentPerPlayer` for behavior to be changed as a result of removal.
|
|
29723
29881
|
*
|
|
29724
29882
|
* - **ThreadSafety**: Unsafe
|
|
29725
29883
|
*
|
|
29726
29884
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Model#RemovePersistentPlayer)
|
|
29727
29885
|
* @param this Models are container objects, meaning they group objects together. They are best used to hold collections of `BaseParts` and have a number of functions that extend their functionality.
|
|
29728
|
-
* @param playerInstance
|
|
29886
|
+
* @param playerInstance The `Player` to make this model no longer persistent for.
|
|
29729
29887
|
*/
|
|
29730
29888
|
RemovePersistentPlayer(this: Model, playerInstance?: Player): void;
|
|
29731
29889
|
/**
|
|
@@ -32103,6 +32261,8 @@ interface Player extends Instance {
|
|
|
32103
32261
|
*/
|
|
32104
32262
|
Neutral: boolean;
|
|
32105
32263
|
/**
|
|
32264
|
+
* A unique identifier of the party a `Player` belongs to.
|
|
32265
|
+
*
|
|
32106
32266
|
* - **ThreadSafety**: ReadSafe
|
|
32107
32267
|
* - **Tags**: Hidden, NotReplicated
|
|
32108
32268
|
*
|
|
@@ -35832,6 +35992,8 @@ interface Sky extends Instance {
|
|
|
35832
35992
|
*/
|
|
35833
35993
|
SkyboxLf: ContentId;
|
|
35834
35994
|
/**
|
|
35995
|
+
* Angle of the skybox, in degrees, with rotation order of **Y**, **X**, **Z**.
|
|
35996
|
+
*
|
|
35835
35997
|
* - **ThreadSafety**: ReadSafe
|
|
35836
35998
|
*
|
|
35837
35999
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxOrientation)
|
|
@@ -35998,11 +36160,14 @@ interface SocialService extends Instance {
|
|
|
35998
36160
|
*/
|
|
35999
36161
|
readonly _nominal_SocialService: unique symbol;
|
|
36000
36162
|
/**
|
|
36163
|
+
* Returns a table of all presently connected `Player` objects whose `Player.PartyId` property matches the passed `partyId`.
|
|
36164
|
+
*
|
|
36001
36165
|
* - **ThreadSafety**: Unsafe
|
|
36002
36166
|
*
|
|
36003
36167
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#GetPlayersByPartyId)
|
|
36004
36168
|
* @param this Facilitates social functions that impact relationships made on the Roblox platform.
|
|
36005
36169
|
* @param partyId
|
|
36170
|
+
* @returns A table of `Player` objects whose `Player.PartyId` property matches the passed `partyId`.
|
|
36006
36171
|
*/
|
|
36007
36172
|
GetPlayersByPartyId(this: SocialService, partyId: string): Array<Instance>;
|
|
36008
36173
|
/**
|
|
@@ -36072,14 +36237,31 @@ interface SocialService extends Instance {
|
|
|
36072
36237
|
*/
|
|
36073
36238
|
CanSendGameInviteAsync(this: SocialService, player: Player, recipientId?: number): boolean;
|
|
36074
36239
|
/**
|
|
36240
|
+
* - **ThreadSafety**: Unsafe
|
|
36241
|
+
* - **Tags**: Yields
|
|
36242
|
+
*
|
|
36243
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#GetEventRsvpStatusAsync)
|
|
36244
|
+
*/
|
|
36245
|
+
GetEventRsvpStatusAsync(this: SocialService, eventId: string): Enum.RsvpStatus;
|
|
36246
|
+
/**
|
|
36247
|
+
* Returns an array of dictionaries containing data for all members of the specified party who are currently in the experience.
|
|
36248
|
+
*
|
|
36075
36249
|
* - **ThreadSafety**: Unsafe
|
|
36076
36250
|
* - **Tags**: Yields
|
|
36077
36251
|
*
|
|
36078
36252
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#GetPartyAsync)
|
|
36079
36253
|
* @param this Facilitates social functions that impact relationships made on the Roblox platform.
|
|
36080
36254
|
* @param partyId
|
|
36255
|
+
* @returns An array of dictionaries representing the members of the specified party who are currently in the experience.
|
|
36081
36256
|
*/
|
|
36082
36257
|
GetPartyAsync(this: SocialService, partyId: string): Array<unknown>;
|
|
36258
|
+
/**
|
|
36259
|
+
* - **ThreadSafety**: Unsafe
|
|
36260
|
+
* - **Tags**: Yields
|
|
36261
|
+
*
|
|
36262
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#PromptRsvpToEventAsync)
|
|
36263
|
+
*/
|
|
36264
|
+
PromptRsvpToEventAsync(this: SocialService, eventId: string): Enum.RsvpStatus;
|
|
36083
36265
|
/**
|
|
36084
36266
|
* Fires when a player's call invite state changes.
|
|
36085
36267
|
*
|
|
@@ -40240,6 +40422,8 @@ interface TextFilterResult extends Instance {
|
|
|
40240
40422
|
*/
|
|
40241
40423
|
readonly _nominal_TextFilterResult: unique symbol;
|
|
40242
40424
|
/**
|
|
40425
|
+
* **Deprecated:** This method is deprecated and returns an empty string. Text filtering pertaining to chat should be done through `TextChatService`, and experiences that do not properly filter player-generated chat text may be subject to moderation.
|
|
40426
|
+
*
|
|
40243
40427
|
* Returns the text in a properly filtered manner for the specified `Player.UserId`.
|
|
40244
40428
|
*
|
|
40245
40429
|
* - **ThreadSafety**: Unsafe
|
|
@@ -44411,6 +44595,8 @@ interface MLSession extends RBXObject {
|
|
|
44411
44595
|
* - **Tags**: Yields
|
|
44412
44596
|
*
|
|
44413
44597
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MLSession#ForwardAsync)
|
|
44598
|
+
* @param this
|
|
44599
|
+
* @param data
|
|
44414
44600
|
*/
|
|
44415
44601
|
ForwardAsync(this: MLSession, data: object): object;
|
|
44416
44602
|
}
|
|
@@ -44432,6 +44618,8 @@ interface TerrainIterateOperation extends RBXObject {
|
|
|
44432
44618
|
* - **ThreadSafety**: Unsafe
|
|
44433
44619
|
*
|
|
44434
44620
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainIterateOperation#CommitBlock)
|
|
44621
|
+
* @param this
|
|
44622
|
+
* @param block
|
|
44435
44623
|
*/
|
|
44436
44624
|
CommitBlock(this: TerrainIterateOperation, block: object): RBXScriptSignal;
|
|
44437
44625
|
/**
|
|
@@ -44459,6 +44647,8 @@ interface TerrainModifyOperation extends RBXObject {
|
|
|
44459
44647
|
* - **ThreadSafety**: Unsafe
|
|
44460
44648
|
*
|
|
44461
44649
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainModifyOperation#CommitBlock)
|
|
44650
|
+
* @param this
|
|
44651
|
+
* @param block
|
|
44462
44652
|
*/
|
|
44463
44653
|
CommitBlock(this: TerrainModifyOperation, block: object): RBXScriptSignal;
|
|
44464
44654
|
/**
|
|
@@ -44507,6 +44697,8 @@ interface TerrainWriteOperation extends RBXObject {
|
|
|
44507
44697
|
* - **ThreadSafety**: Unsafe
|
|
44508
44698
|
*
|
|
44509
44699
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainWriteOperation#CommitBlock)
|
|
44700
|
+
* @param this
|
|
44701
|
+
* @param block
|
|
44510
44702
|
*/
|
|
44511
44703
|
CommitBlock(this: TerrainWriteOperation, block: object): RBXScriptSignal;
|
|
44512
44704
|
/**
|
|
@@ -44514,6 +44706,7 @@ interface TerrainWriteOperation extends RBXObject {
|
|
|
44514
44706
|
* - **Tags**: CustomLuaState
|
|
44515
44707
|
*
|
|
44516
44708
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainWriteOperation#GetBlock)
|
|
44709
|
+
* @param this
|
|
44517
44710
|
*/
|
|
44518
44711
|
GetBlock(this: TerrainWriteOperation): object;
|
|
44519
44712
|
}
|
|
@@ -116,6 +116,7 @@ interface Services {
|
|
|
116
116
|
MetaBreakpointManager: MetaBreakpointManager;
|
|
117
117
|
MLModelDeliveryService: MLModelDeliveryService;
|
|
118
118
|
MLService: MLService;
|
|
119
|
+
Moderation: Moderation;
|
|
119
120
|
NetworkClient: NetworkClient;
|
|
120
121
|
NetworkServer: NetworkServer;
|
|
121
122
|
NetworkSettings: NetworkSettings;
|
|
@@ -278,6 +279,7 @@ interface CreatableInstances {
|
|
|
278
279
|
AudioRecorder: AudioRecorder;
|
|
279
280
|
AudioReverb: AudioReverb;
|
|
280
281
|
AudioSearchParams: AudioSearchParams;
|
|
282
|
+
AudioSpeechToText: AudioSpeechToText;
|
|
281
283
|
AudioTextToSpeech: AudioTextToSpeech;
|
|
282
284
|
AuroraScript: AuroraScript;
|
|
283
285
|
AvatarAccessoryRules: AvatarAccessoryRules;
|
|
@@ -1822,6 +1824,21 @@ interface AudioSearchParams extends Instance {
|
|
|
1822
1824
|
*/
|
|
1823
1825
|
readonly _nominal_AudioSearchParams: unique symbol;
|
|
1824
1826
|
}
|
|
1827
|
+
/**
|
|
1828
|
+
* - **Tags**: NotBrowsable
|
|
1829
|
+
*
|
|
1830
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText)
|
|
1831
|
+
*/
|
|
1832
|
+
interface AudioSpeechToText extends Instance {
|
|
1833
|
+
/**
|
|
1834
|
+
* **DO NOT USE!**
|
|
1835
|
+
*
|
|
1836
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1837
|
+
* @hidden
|
|
1838
|
+
* @deprecated
|
|
1839
|
+
*/
|
|
1840
|
+
readonly _nominal_AudioSpeechToText: unique symbol;
|
|
1841
|
+
}
|
|
1825
1842
|
/**
|
|
1826
1843
|
* Plays text as speech audio.
|
|
1827
1844
|
*
|
|
@@ -8118,6 +8135,21 @@ interface MetaBreakpointManager extends Instance {
|
|
|
8118
8135
|
*/
|
|
8119
8136
|
readonly _nominal_MetaBreakpointManager: unique symbol;
|
|
8120
8137
|
}
|
|
8138
|
+
/**
|
|
8139
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
8140
|
+
*
|
|
8141
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Moderation)
|
|
8142
|
+
*/
|
|
8143
|
+
interface Moderation extends Instance {
|
|
8144
|
+
/**
|
|
8145
|
+
* **DO NOT USE!**
|
|
8146
|
+
*
|
|
8147
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
8148
|
+
* @hidden
|
|
8149
|
+
* @deprecated
|
|
8150
|
+
*/
|
|
8151
|
+
readonly _nominal_Moderation: unique symbol;
|
|
8152
|
+
}
|
|
8121
8153
|
/**
|
|
8122
8154
|
* Legacy object that contains members useful for pointer input.
|
|
8123
8155
|
*
|
|
@@ -15151,11 +15151,20 @@ declare namespace Enum {
|
|
|
15151
15151
|
EnumType: typeof globalThis.Enum.InputActionType;
|
|
15152
15152
|
}
|
|
15153
15153
|
export const Direction2D: Direction2D;
|
|
15154
|
+
/**
|
|
15155
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputActionType#Direction3D)
|
|
15156
|
+
*/
|
|
15157
|
+
export interface Direction3D extends globalThis.EnumItem {
|
|
15158
|
+
Name: "Direction3D";
|
|
15159
|
+
Value: 3;
|
|
15160
|
+
EnumType: typeof globalThis.Enum.InputActionType;
|
|
15161
|
+
}
|
|
15162
|
+
export const Direction3D: Direction3D;
|
|
15154
15163
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.InputActionType>;
|
|
15155
15164
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.InputActionType | undefined;
|
|
15156
15165
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.InputActionType | undefined;
|
|
15157
15166
|
}
|
|
15158
|
-
export type InputActionType = InputActionType.Bool | InputActionType.Direction1D | InputActionType.Direction2D;
|
|
15167
|
+
export type InputActionType = InputActionType.Bool | InputActionType.Direction1D | InputActionType.Direction2D | InputActionType.Direction3D;
|
|
15159
15168
|
/**
|
|
15160
15169
|
* The InputType Enum controls the SurfaceInputs of `Part`.
|
|
15161
15170
|
*
|
|
@@ -25057,6 +25066,42 @@ declare namespace Enum {
|
|
|
25057
25066
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RotationType | undefined;
|
|
25058
25067
|
}
|
|
25059
25068
|
export type RotationType = RotationType.MovementRelative | RotationType.CameraRelative;
|
|
25069
|
+
/**
|
|
25070
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RsvpStatus)
|
|
25071
|
+
*/
|
|
25072
|
+
export namespace RsvpStatus {
|
|
25073
|
+
/**
|
|
25074
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RsvpStatus#None)
|
|
25075
|
+
*/
|
|
25076
|
+
export interface None extends globalThis.EnumItem {
|
|
25077
|
+
Name: "None";
|
|
25078
|
+
Value: 0;
|
|
25079
|
+
EnumType: typeof globalThis.Enum.RsvpStatus;
|
|
25080
|
+
}
|
|
25081
|
+
export const None: None;
|
|
25082
|
+
/**
|
|
25083
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RsvpStatus#Going)
|
|
25084
|
+
*/
|
|
25085
|
+
export interface Going extends globalThis.EnumItem {
|
|
25086
|
+
Name: "Going";
|
|
25087
|
+
Value: 1;
|
|
25088
|
+
EnumType: typeof globalThis.Enum.RsvpStatus;
|
|
25089
|
+
}
|
|
25090
|
+
export const Going: Going;
|
|
25091
|
+
/**
|
|
25092
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RsvpStatus#NotGoing)
|
|
25093
|
+
*/
|
|
25094
|
+
export interface NotGoing extends globalThis.EnumItem {
|
|
25095
|
+
Name: "NotGoing";
|
|
25096
|
+
Value: 2;
|
|
25097
|
+
EnumType: typeof globalThis.Enum.RsvpStatus;
|
|
25098
|
+
}
|
|
25099
|
+
export const NotGoing: NotGoing;
|
|
25100
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RsvpStatus>;
|
|
25101
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RsvpStatus | undefined;
|
|
25102
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RsvpStatus | undefined;
|
|
25103
|
+
}
|
|
25104
|
+
export type RsvpStatus = RsvpStatus.None | RsvpStatus.Going | RsvpStatus.NotGoing;
|
|
25060
25105
|
/**
|
|
25061
25106
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RtlTextSupport)
|
|
25062
25107
|
*/
|