@rbxts/types 1.0.906 → 1.0.907
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.
|
@@ -137,6 +137,7 @@ interface Services {
|
|
|
137
137
|
PlaceStatsService: PlaceStatsService;
|
|
138
138
|
PlatformCloudStorageService: PlatformCloudStorageService;
|
|
139
139
|
PlatformFriendsService: PlatformFriendsService;
|
|
140
|
+
PlatformLibraries: PlatformLibraries;
|
|
140
141
|
PlayerDataService: PlayerDataService;
|
|
141
142
|
PlayerHydrationService: PlayerHydrationService;
|
|
142
143
|
Players: Players;
|
|
@@ -681,6 +682,7 @@ interface Instances extends Services, CreatableInstances {
|
|
|
681
682
|
PVInstance: PVInstance;
|
|
682
683
|
RecommendationPages: RecommendationPages;
|
|
683
684
|
RobloxSerializableInstance: RobloxSerializableInstance;
|
|
685
|
+
RolloutValidation: RolloutValidation;
|
|
684
686
|
RootImportData: RootImportData;
|
|
685
687
|
ScreenshotHud: ScreenshotHud;
|
|
686
688
|
ScriptBuilder: ScriptBuilder;
|
|
@@ -4886,21 +4888,28 @@ interface AudioAnalyzer extends Instance {
|
|
|
4886
4888
|
*
|
|
4887
4889
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioAnalyzer#GetConnectedWires)
|
|
4888
4890
|
* @param this Takes measurements from audio streams that are connected to it via one or more `Wires`.
|
|
4889
|
-
* @param pin
|
|
4891
|
+
* @param pin An input or output pin on this instance
|
|
4892
|
+
* @returns An array of `Wires`
|
|
4890
4893
|
*/
|
|
4891
4894
|
GetConnectedWires(this: AudioAnalyzer, pin: string): Array<Instance>;
|
|
4892
4895
|
/**
|
|
4896
|
+
* Gets the list of pins that `Wire` can use in `Wire.TargetName` to connect to this instance via its `Wire.TargetInstance` property.
|
|
4897
|
+
*
|
|
4893
4898
|
* - **ThreadSafety**: Unsafe
|
|
4894
4899
|
*
|
|
4895
4900
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioAnalyzer#GetInputPins)
|
|
4896
4901
|
* @param this Takes measurements from audio streams that are connected to it via one or more `Wires`.
|
|
4902
|
+
* @returns An array of strings representing valid pin names.
|
|
4897
4903
|
*/
|
|
4898
4904
|
GetInputPins(this: AudioAnalyzer): Array<unknown>;
|
|
4899
4905
|
/**
|
|
4906
|
+
* Gets the list of pins that `Wire` can use in `Wire.SourceName` to connect to this instance via its `Wire.SourceInstance` property.
|
|
4907
|
+
*
|
|
4900
4908
|
* - **ThreadSafety**: Unsafe
|
|
4901
4909
|
*
|
|
4902
4910
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioAnalyzer#GetOutputPins)
|
|
4903
4911
|
* @param this Takes measurements from audio streams that are connected to it via one or more `Wires`.
|
|
4912
|
+
* @returns An array of strings representing valid pin names.
|
|
4904
4913
|
*/
|
|
4905
4914
|
GetOutputPins(this: AudioAnalyzer): Array<unknown>;
|
|
4906
4915
|
/**
|
|
@@ -4951,25 +4960,28 @@ interface AudioChannelMixer extends Instance {
|
|
|
4951
4960
|
*
|
|
4952
4961
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioChannelMixer#GetConnectedWires)
|
|
4953
4962
|
* @param this Combines multiple audio streams into a single, multichannel audio stream.
|
|
4954
|
-
* @param pin
|
|
4963
|
+
* @param pin An input or output pin on this instance
|
|
4964
|
+
* @returns An array of `Wires`
|
|
4955
4965
|
*/
|
|
4956
4966
|
GetConnectedWires(this: AudioChannelMixer, pin: string): Array<Instance>;
|
|
4957
4967
|
/**
|
|
4958
|
-
*
|
|
4968
|
+
* Gets the list of pins that `Wire` can use in `Wire.TargetName` to connect to this instance via its `Wire.TargetInstance` property.
|
|
4959
4969
|
*
|
|
4960
4970
|
* - **ThreadSafety**: Unsafe
|
|
4961
4971
|
*
|
|
4962
4972
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioChannelMixer#GetInputPins)
|
|
4963
4973
|
* @param this Combines multiple audio streams into a single, multichannel audio stream.
|
|
4974
|
+
* @returns An array of strings representing valid pin names.
|
|
4964
4975
|
*/
|
|
4965
4976
|
GetInputPins(this: AudioChannelMixer): Array<unknown>;
|
|
4966
4977
|
/**
|
|
4967
|
-
*
|
|
4978
|
+
* Gets the list of pins that `Wire` can use in `Wire.SourceName` to connect to this instance via its `Wire.SourceInstance` property.
|
|
4968
4979
|
*
|
|
4969
4980
|
* - **ThreadSafety**: Unsafe
|
|
4970
4981
|
*
|
|
4971
4982
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioChannelMixer#GetOutputPins)
|
|
4972
4983
|
* @param this Combines multiple audio streams into a single, multichannel audio stream.
|
|
4984
|
+
* @returns An array of strings representing valid pin names.
|
|
4973
4985
|
*/
|
|
4974
4986
|
GetOutputPins(this: AudioChannelMixer): Array<unknown>;
|
|
4975
4987
|
/**
|
|
@@ -5010,25 +5022,28 @@ interface AudioChannelSplitter extends Instance {
|
|
|
5010
5022
|
*
|
|
5011
5023
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioChannelSplitter#GetConnectedWires)
|
|
5012
5024
|
* @param this Splits an audio stream into component channels so that each can be processed independently.
|
|
5013
|
-
* @param pin
|
|
5025
|
+
* @param pin An input or output pin on this instance
|
|
5026
|
+
* @returns An array of `Wires`
|
|
5014
5027
|
*/
|
|
5015
5028
|
GetConnectedWires(this: AudioChannelSplitter, pin: string): Array<Instance>;
|
|
5016
5029
|
/**
|
|
5017
|
-
*
|
|
5030
|
+
* Gets the list of pins that `Wire` can use in `Wire.TargetName` to connect to this instance via its `Wire.TargetInstance` property.
|
|
5018
5031
|
*
|
|
5019
5032
|
* - **ThreadSafety**: Unsafe
|
|
5020
5033
|
*
|
|
5021
5034
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioChannelSplitter#GetInputPins)
|
|
5022
5035
|
* @param this Splits an audio stream into component channels so that each can be processed independently.
|
|
5036
|
+
* @returns An array of strings representing valid pin names.
|
|
5023
5037
|
*/
|
|
5024
5038
|
GetInputPins(this: AudioChannelSplitter): Array<unknown>;
|
|
5025
5039
|
/**
|
|
5026
|
-
*
|
|
5040
|
+
* Gets the list of pins that `Wire` can use in `Wire.SourceName` to connect to this instance via its `Wire.SourceInstance` property.
|
|
5027
5041
|
*
|
|
5028
5042
|
* - **ThreadSafety**: Unsafe
|
|
5029
5043
|
*
|
|
5030
5044
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioChannelSplitter#GetOutputPins)
|
|
5031
5045
|
* @param this Splits an audio stream into component channels so that each can be processed independently.
|
|
5046
|
+
* @returns An array of strings representing valid pin names.
|
|
5032
5047
|
*/
|
|
5033
5048
|
GetOutputPins(this: AudioChannelSplitter): Array<unknown>;
|
|
5034
5049
|
/**
|
|
@@ -5093,21 +5108,28 @@ interface AudioChorus extends Instance {
|
|
|
5093
5108
|
*
|
|
5094
5109
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioChorus#GetConnectedWires)
|
|
5095
5110
|
* @param this Makes an audio stream sound more voluminous. If applied to a single voice, it may sound like multiple voices.
|
|
5096
|
-
* @param pin
|
|
5111
|
+
* @param pin An input or output pin on this instance
|
|
5112
|
+
* @returns An array of `Wires`
|
|
5097
5113
|
*/
|
|
5098
5114
|
GetConnectedWires(this: AudioChorus, pin: string): Array<Instance>;
|
|
5099
5115
|
/**
|
|
5116
|
+
* Gets the list of pins that `Wire` can use in `Wire.TargetName` to connect to this instance via its `Wire.TargetInstance` property.
|
|
5117
|
+
*
|
|
5100
5118
|
* - **ThreadSafety**: Unsafe
|
|
5101
5119
|
*
|
|
5102
5120
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioChorus#GetInputPins)
|
|
5103
5121
|
* @param this Makes an audio stream sound more voluminous. If applied to a single voice, it may sound like multiple voices.
|
|
5122
|
+
* @returns An array of strings representing valid pin names.
|
|
5104
5123
|
*/
|
|
5105
5124
|
GetInputPins(this: AudioChorus): Array<unknown>;
|
|
5106
5125
|
/**
|
|
5126
|
+
* Gets the list of pins that `Wire` can use in `Wire.SourceName` to connect to this instance via its `Wire.SourceInstance` property.
|
|
5127
|
+
*
|
|
5107
5128
|
* - **ThreadSafety**: Unsafe
|
|
5108
5129
|
*
|
|
5109
5130
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioChorus#GetOutputPins)
|
|
5110
5131
|
* @param this Makes an audio stream sound more voluminous. If applied to a single voice, it may sound like multiple voices.
|
|
5132
|
+
* @returns An array of strings representing valid pin names.
|
|
5111
5133
|
*/
|
|
5112
5134
|
GetOutputPins(this: AudioChorus): Array<unknown>;
|
|
5113
5135
|
/**
|
|
@@ -5188,21 +5210,28 @@ interface AudioCompressor extends Instance {
|
|
|
5188
5210
|
*
|
|
5189
5211
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioCompressor#GetConnectedWires)
|
|
5190
5212
|
* @param this Adjusts the dynamic range of input streams.
|
|
5191
|
-
* @param pin
|
|
5213
|
+
* @param pin An input or output pin on this instance
|
|
5214
|
+
* @returns An array of `Wires`
|
|
5192
5215
|
*/
|
|
5193
5216
|
GetConnectedWires(this: AudioCompressor, pin: string): Array<Instance>;
|
|
5194
5217
|
/**
|
|
5218
|
+
* Gets the list of pins that `Wire` can use in `Wire.TargetName` to connect to this instance via its `Wire.TargetInstance` property.
|
|
5219
|
+
*
|
|
5195
5220
|
* - **ThreadSafety**: Unsafe
|
|
5196
5221
|
*
|
|
5197
5222
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioCompressor#GetInputPins)
|
|
5198
5223
|
* @param this Adjusts the dynamic range of input streams.
|
|
5224
|
+
* @returns An array of strings representing valid pin names.
|
|
5199
5225
|
*/
|
|
5200
5226
|
GetInputPins(this: AudioCompressor): Array<unknown>;
|
|
5201
5227
|
/**
|
|
5228
|
+
* Gets the list of pins that `Wire` can use in `Wire.SourceName` to connect to this instance via its `Wire.SourceInstance` property.
|
|
5229
|
+
*
|
|
5202
5230
|
* - **ThreadSafety**: Unsafe
|
|
5203
5231
|
*
|
|
5204
5232
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioCompressor#GetOutputPins)
|
|
5205
5233
|
* @param this Adjusts the dynamic range of input streams.
|
|
5234
|
+
* @returns An array of strings representing valid pin names.
|
|
5206
5235
|
*/
|
|
5207
5236
|
GetOutputPins(this: AudioCompressor): Array<unknown>;
|
|
5208
5237
|
/**
|
|
@@ -5275,21 +5304,28 @@ interface AudioDeviceInput extends Instance {
|
|
|
5275
5304
|
*
|
|
5276
5305
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioDeviceInput#GetConnectedWires)
|
|
5277
5306
|
* @param this Produces audio streams from physical devices, such as microphones.
|
|
5278
|
-
* @param pin
|
|
5307
|
+
* @param pin An input or output pin on this instance
|
|
5308
|
+
* @returns An array of `Wires`
|
|
5279
5309
|
*/
|
|
5280
5310
|
GetConnectedWires(this: AudioDeviceInput, pin: string): Array<Instance>;
|
|
5281
5311
|
/**
|
|
5312
|
+
* Gets the list of pins that `Wire` can use in `Wire.TargetName` to connect to this instance via its `Wire.TargetInstance` property.
|
|
5313
|
+
*
|
|
5282
5314
|
* - **ThreadSafety**: Unsafe
|
|
5283
5315
|
*
|
|
5284
5316
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioDeviceInput#GetInputPins)
|
|
5285
5317
|
* @param this Produces audio streams from physical devices, such as microphones.
|
|
5318
|
+
* @returns An array of strings representing valid pin names.
|
|
5286
5319
|
*/
|
|
5287
5320
|
GetInputPins(this: AudioDeviceInput): Array<unknown>;
|
|
5288
5321
|
/**
|
|
5322
|
+
* Gets the list of pins that `Wire` can use in `Wire.SourceName` to connect to this instance via its `Wire.SourceInstance` property.
|
|
5323
|
+
*
|
|
5289
5324
|
* - **ThreadSafety**: Unsafe
|
|
5290
5325
|
*
|
|
5291
5326
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioDeviceInput#GetOutputPins)
|
|
5292
5327
|
* @param this Produces audio streams from physical devices, such as microphones.
|
|
5328
|
+
* @returns An array of strings representing valid pin names.
|
|
5293
5329
|
*/
|
|
5294
5330
|
GetOutputPins(this: AudioDeviceInput): Array<unknown>;
|
|
5295
5331
|
/**
|
|
@@ -5349,21 +5385,28 @@ interface AudioDeviceOutput extends Instance {
|
|
|
5349
5385
|
*
|
|
5350
5386
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioDeviceOutput#GetConnectedWires)
|
|
5351
5387
|
* @param this Accepts audio streams to be rendered out to physical hardware devices such as speakers or headphones.
|
|
5352
|
-
* @param pin
|
|
5388
|
+
* @param pin An input or output pin on this instance
|
|
5389
|
+
* @returns An array of `Wires`
|
|
5353
5390
|
*/
|
|
5354
5391
|
GetConnectedWires(this: AudioDeviceOutput, pin: string): Array<Instance>;
|
|
5355
5392
|
/**
|
|
5393
|
+
* Gets the list of pins that `Wire` can use in `Wire.TargetName` to connect to this instance via its `Wire.TargetInstance` property.
|
|
5394
|
+
*
|
|
5356
5395
|
* - **ThreadSafety**: Unsafe
|
|
5357
5396
|
*
|
|
5358
5397
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioDeviceOutput#GetInputPins)
|
|
5359
5398
|
* @param this Accepts audio streams to be rendered out to physical hardware devices such as speakers or headphones.
|
|
5399
|
+
* @returns An array of strings representing valid pin names.
|
|
5360
5400
|
*/
|
|
5361
5401
|
GetInputPins(this: AudioDeviceOutput): Array<unknown>;
|
|
5362
5402
|
/**
|
|
5403
|
+
* Gets the list of pins that `Wire` can use in `Wire.SourceName` to connect to this instance via its `Wire.SourceInstance` property.
|
|
5404
|
+
*
|
|
5363
5405
|
* - **ThreadSafety**: Unsafe
|
|
5364
5406
|
*
|
|
5365
5407
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioDeviceOutput#GetOutputPins)
|
|
5366
5408
|
* @param this Accepts audio streams to be rendered out to physical hardware devices such as speakers or headphones.
|
|
5409
|
+
* @returns An array of strings representing valid pin names.
|
|
5367
5410
|
*/
|
|
5368
5411
|
GetOutputPins(this: AudioDeviceOutput): Array<unknown>;
|
|
5369
5412
|
/**
|
|
@@ -5412,21 +5455,28 @@ interface AudioDistortion extends Instance {
|
|
|
5412
5455
|
*
|
|
5413
5456
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioDistortion#GetConnectedWires)
|
|
5414
5457
|
* @param this Distorts audio streams, making them sound fuzzier, grittier, and louder.
|
|
5415
|
-
* @param pin
|
|
5458
|
+
* @param pin An input or output pin on this instance
|
|
5459
|
+
* @returns An array of `Wires`
|
|
5416
5460
|
*/
|
|
5417
5461
|
GetConnectedWires(this: AudioDistortion, pin: string): Array<Instance>;
|
|
5418
5462
|
/**
|
|
5463
|
+
* Gets the list of pins that `Wire` can use in `Wire.TargetName` to connect to this instance via its `Wire.TargetInstance` property.
|
|
5464
|
+
*
|
|
5419
5465
|
* - **ThreadSafety**: Unsafe
|
|
5420
5466
|
*
|
|
5421
5467
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioDistortion#GetInputPins)
|
|
5422
5468
|
* @param this Distorts audio streams, making them sound fuzzier, grittier, and louder.
|
|
5469
|
+
* @returns An array of strings representing valid pin names.
|
|
5423
5470
|
*/
|
|
5424
5471
|
GetInputPins(this: AudioDistortion): Array<unknown>;
|
|
5425
5472
|
/**
|
|
5473
|
+
* Gets the list of pins that `Wire` can use in `Wire.SourceName` to connect to this instance via its `Wire.SourceInstance` property.
|
|
5474
|
+
*
|
|
5426
5475
|
* - **ThreadSafety**: Unsafe
|
|
5427
5476
|
*
|
|
5428
5477
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioDistortion#GetOutputPins)
|
|
5429
5478
|
* @param this Distorts audio streams, making them sound fuzzier, grittier, and louder.
|
|
5479
|
+
* @returns An array of strings representing valid pin names.
|
|
5430
5480
|
*/
|
|
5431
5481
|
GetOutputPins(this: AudioDistortion): Array<unknown>;
|
|
5432
5482
|
/**
|
|
@@ -5505,21 +5555,28 @@ interface AudioEcho extends Instance {
|
|
|
5505
5555
|
*
|
|
5506
5556
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEcho#GetConnectedWires)
|
|
5507
5557
|
* @param this Overlays delayed copies of audio streams.
|
|
5508
|
-
* @param pin
|
|
5558
|
+
* @param pin An input or output pin on this instance
|
|
5559
|
+
* @returns An array of `Wires`
|
|
5509
5560
|
*/
|
|
5510
5561
|
GetConnectedWires(this: AudioEcho, pin: string): Array<Instance>;
|
|
5511
5562
|
/**
|
|
5563
|
+
* Gets the list of pins that `Wire` can use in `Wire.TargetName` to connect to this instance via its `Wire.TargetInstance` property.
|
|
5564
|
+
*
|
|
5512
5565
|
* - **ThreadSafety**: Unsafe
|
|
5513
5566
|
*
|
|
5514
5567
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEcho#GetInputPins)
|
|
5515
5568
|
* @param this Overlays delayed copies of audio streams.
|
|
5569
|
+
* @returns An array of strings representing valid pin names.
|
|
5516
5570
|
*/
|
|
5517
5571
|
GetInputPins(this: AudioEcho): Array<unknown>;
|
|
5518
5572
|
/**
|
|
5573
|
+
* Gets the list of pins that `Wire` can use in `Wire.SourceName` to connect to this instance via its `Wire.SourceInstance` property.
|
|
5574
|
+
*
|
|
5519
5575
|
* - **ThreadSafety**: Unsafe
|
|
5520
5576
|
*
|
|
5521
5577
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEcho#GetOutputPins)
|
|
5522
5578
|
* @param this Overlays delayed copies of audio streams.
|
|
5579
|
+
* @returns An array of strings representing valid pin names.
|
|
5523
5580
|
*/
|
|
5524
5581
|
GetOutputPins(this: AudioEcho): Array<unknown>;
|
|
5525
5582
|
/**
|
|
@@ -5600,7 +5657,8 @@ interface AudioEmitter extends Instance {
|
|
|
5600
5657
|
*
|
|
5601
5658
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEmitter#GetConnectedWires)
|
|
5602
5659
|
* @param this Emits audio streams into the world.
|
|
5603
|
-
* @param pin
|
|
5660
|
+
* @param pin An input or output pin on this instance
|
|
5661
|
+
* @returns An array of `Wires`
|
|
5604
5662
|
*/
|
|
5605
5663
|
GetConnectedWires(this: AudioEmitter, pin: string): Array<Instance>;
|
|
5606
5664
|
/**
|
|
@@ -5614,10 +5672,13 @@ interface AudioEmitter extends Instance {
|
|
|
5614
5672
|
*/
|
|
5615
5673
|
GetDistanceAttenuation(this: AudioEmitter): object;
|
|
5616
5674
|
/**
|
|
5675
|
+
* Gets the list of pins that `Wire` can use in `Wire.TargetName` to connect to this instance via its `Wire.TargetInstance` property.
|
|
5676
|
+
*
|
|
5617
5677
|
* - **ThreadSafety**: Unsafe
|
|
5618
5678
|
*
|
|
5619
5679
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEmitter#GetInputPins)
|
|
5620
5680
|
* @param this Emits audio streams into the world.
|
|
5681
|
+
* @returns An array of strings representing valid pin names.
|
|
5621
5682
|
*/
|
|
5622
5683
|
GetInputPins(this: AudioEmitter): Array<unknown>;
|
|
5623
5684
|
/**
|
|
@@ -5630,10 +5691,13 @@ interface AudioEmitter extends Instance {
|
|
|
5630
5691
|
*/
|
|
5631
5692
|
GetInteractingListeners(this: AudioEmitter): Array<Instance>;
|
|
5632
5693
|
/**
|
|
5694
|
+
* Gets the list of pins that `Wire` can use in `Wire.SourceName` to connect to this instance via its `Wire.SourceInstance` property.
|
|
5695
|
+
*
|
|
5633
5696
|
* - **ThreadSafety**: Unsafe
|
|
5634
5697
|
*
|
|
5635
5698
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEmitter#GetOutputPins)
|
|
5636
5699
|
* @param this Emits audio streams into the world.
|
|
5700
|
+
* @returns An array of strings representing valid pin names.
|
|
5637
5701
|
*/
|
|
5638
5702
|
GetOutputPins(this: AudioEmitter): Array<unknown>;
|
|
5639
5703
|
/**
|
|
@@ -5728,21 +5792,28 @@ interface AudioEqualizer extends Instance {
|
|
|
5728
5792
|
*
|
|
5729
5793
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEqualizer#GetConnectedWires)
|
|
5730
5794
|
* @param this Adjusts the frequency content of audio streams.
|
|
5731
|
-
* @param pin
|
|
5795
|
+
* @param pin An input or output pin on this instance
|
|
5796
|
+
* @returns An array of `Wires`
|
|
5732
5797
|
*/
|
|
5733
5798
|
GetConnectedWires(this: AudioEqualizer, pin: string): Array<Instance>;
|
|
5734
5799
|
/**
|
|
5800
|
+
* Gets the list of pins that `Wire` can use in `Wire.TargetName` to connect to this instance via its `Wire.TargetInstance` property.
|
|
5801
|
+
*
|
|
5735
5802
|
* - **ThreadSafety**: Unsafe
|
|
5736
5803
|
*
|
|
5737
5804
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEqualizer#GetInputPins)
|
|
5738
5805
|
* @param this Adjusts the frequency content of audio streams.
|
|
5806
|
+
* @returns An array of strings representing valid pin names.
|
|
5739
5807
|
*/
|
|
5740
5808
|
GetInputPins(this: AudioEqualizer): Array<unknown>;
|
|
5741
5809
|
/**
|
|
5810
|
+
* Gets the list of pins that `Wire` can use in `Wire.SourceName` to connect to this instance via its `Wire.SourceInstance` property.
|
|
5811
|
+
*
|
|
5742
5812
|
* - **ThreadSafety**: Unsafe
|
|
5743
5813
|
*
|
|
5744
5814
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEqualizer#GetOutputPins)
|
|
5745
5815
|
* @param this Adjusts the frequency content of audio streams.
|
|
5816
|
+
* @returns An array of strings representing valid pin names.
|
|
5746
5817
|
*/
|
|
5747
5818
|
GetOutputPins(this: AudioEqualizer): Array<unknown>;
|
|
5748
5819
|
/**
|
|
@@ -5791,21 +5862,28 @@ interface AudioFader extends Instance {
|
|
|
5791
5862
|
*
|
|
5792
5863
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioFader#GetConnectedWires)
|
|
5793
5864
|
* @param this Adjusts the volume of audio streams.
|
|
5794
|
-
* @param pin
|
|
5865
|
+
* @param pin An input or output pin on this instance
|
|
5866
|
+
* @returns An array of `Wires`
|
|
5795
5867
|
*/
|
|
5796
5868
|
GetConnectedWires(this: AudioFader, pin: string): Array<Instance>;
|
|
5797
5869
|
/**
|
|
5870
|
+
* Gets the list of pins that `Wire` can use in `Wire.TargetName` to connect to this instance via its `Wire.TargetInstance` property.
|
|
5871
|
+
*
|
|
5798
5872
|
* - **ThreadSafety**: Unsafe
|
|
5799
5873
|
*
|
|
5800
5874
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioFader#GetInputPins)
|
|
5801
5875
|
* @param this Adjusts the volume of audio streams.
|
|
5876
|
+
* @returns An array of strings representing valid pin names.
|
|
5802
5877
|
*/
|
|
5803
5878
|
GetInputPins(this: AudioFader): Array<unknown>;
|
|
5804
5879
|
/**
|
|
5880
|
+
* Gets the list of pins that `Wire` can use in `Wire.SourceName` to connect to this instance via its `Wire.SourceInstance` property.
|
|
5881
|
+
*
|
|
5805
5882
|
* - **ThreadSafety**: Unsafe
|
|
5806
5883
|
*
|
|
5807
5884
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioFader#GetOutputPins)
|
|
5808
5885
|
* @param this Adjusts the volume of audio streams.
|
|
5886
|
+
* @returns An array of strings representing valid pin names.
|
|
5809
5887
|
*/
|
|
5810
5888
|
GetOutputPins(this: AudioFader): Array<unknown>;
|
|
5811
5889
|
/**
|
|
@@ -5878,7 +5956,8 @@ interface AudioFilter extends Instance {
|
|
|
5878
5956
|
*
|
|
5879
5957
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioFilter#GetConnectedWires)
|
|
5880
5958
|
* @param this Adjusts the frequency content of audio streams.
|
|
5881
|
-
* @param pin
|
|
5959
|
+
* @param pin An input or output pin on this instance
|
|
5960
|
+
* @returns An array of `Wires`
|
|
5882
5961
|
*/
|
|
5883
5962
|
GetConnectedWires(this: AudioFilter, pin: string): Array<Instance>;
|
|
5884
5963
|
/**
|
|
@@ -5893,17 +5972,23 @@ interface AudioFilter extends Instance {
|
|
|
5893
5972
|
*/
|
|
5894
5973
|
GetGainAt(this: AudioFilter, frequency: number): number;
|
|
5895
5974
|
/**
|
|
5975
|
+
* Gets the list of pins that `Wire` can use in `Wire.TargetName` to connect to this instance via its `Wire.TargetInstance` property.
|
|
5976
|
+
*
|
|
5896
5977
|
* - **ThreadSafety**: Unsafe
|
|
5897
5978
|
*
|
|
5898
5979
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioFilter#GetInputPins)
|
|
5899
5980
|
* @param this Adjusts the frequency content of audio streams.
|
|
5981
|
+
* @returns An array of strings representing valid pin names.
|
|
5900
5982
|
*/
|
|
5901
5983
|
GetInputPins(this: AudioFilter): Array<unknown>;
|
|
5902
5984
|
/**
|
|
5985
|
+
* Gets the list of pins that `Wire` can use in `Wire.SourceName` to connect to this instance via its `Wire.SourceInstance` property.
|
|
5986
|
+
*
|
|
5903
5987
|
* - **ThreadSafety**: Unsafe
|
|
5904
5988
|
*
|
|
5905
5989
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioFilter#GetOutputPins)
|
|
5906
5990
|
* @param this Adjusts the frequency content of audio streams.
|
|
5991
|
+
* @returns An array of strings representing valid pin names.
|
|
5907
5992
|
*/
|
|
5908
5993
|
GetOutputPins(this: AudioFilter): Array<unknown>;
|
|
5909
5994
|
/**
|
|
@@ -5968,21 +6053,28 @@ interface AudioFlanger extends Instance {
|
|
|
5968
6053
|
*
|
|
5969
6054
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioFlanger#GetConnectedWires)
|
|
5970
6055
|
* @param this Imparts a whooshing or sweeping sound on audio streams.
|
|
5971
|
-
* @param pin
|
|
6056
|
+
* @param pin An input or output pin on this instance
|
|
6057
|
+
* @returns An array of `Wires`
|
|
5972
6058
|
*/
|
|
5973
6059
|
GetConnectedWires(this: AudioFlanger, pin: string): Array<Instance>;
|
|
5974
6060
|
/**
|
|
6061
|
+
* Gets the list of pins that `Wire` can use in `Wire.TargetName` to connect to this instance via its `Wire.TargetInstance` property.
|
|
6062
|
+
*
|
|
5975
6063
|
* - **ThreadSafety**: Unsafe
|
|
5976
6064
|
*
|
|
5977
6065
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioFlanger#GetInputPins)
|
|
5978
6066
|
* @param this Imparts a whooshing or sweeping sound on audio streams.
|
|
6067
|
+
* @returns An array of strings representing valid pin names.
|
|
5979
6068
|
*/
|
|
5980
6069
|
GetInputPins(this: AudioFlanger): Array<unknown>;
|
|
5981
6070
|
/**
|
|
6071
|
+
* Gets the list of pins that `Wire` can use in `Wire.SourceName` to connect to this instance via its `Wire.SourceInstance` property.
|
|
6072
|
+
*
|
|
5982
6073
|
* - **ThreadSafety**: Unsafe
|
|
5983
6074
|
*
|
|
5984
6075
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioFlanger#GetOutputPins)
|
|
5985
6076
|
* @param this Imparts a whooshing or sweeping sound on audio streams.
|
|
6077
|
+
* @returns An array of strings representing valid pin names.
|
|
5986
6078
|
*/
|
|
5987
6079
|
GetOutputPins(this: AudioFlanger): Array<unknown>;
|
|
5988
6080
|
/**
|
|
@@ -6046,28 +6138,39 @@ interface AudioGate extends Instance {
|
|
|
6046
6138
|
*/
|
|
6047
6139
|
Threshold: NumberRange;
|
|
6048
6140
|
/**
|
|
6141
|
+
* Returns an array of `Wires` that are connected to the specified pin.
|
|
6142
|
+
*
|
|
6049
6143
|
* - **ThreadSafety**: Unsafe
|
|
6050
6144
|
*
|
|
6051
6145
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate#GetConnectedWires)
|
|
6052
6146
|
* @param this
|
|
6053
|
-
* @param pin
|
|
6147
|
+
* @param pin An input or output pin on this instance
|
|
6148
|
+
* @returns An array of `Wires`
|
|
6054
6149
|
*/
|
|
6055
6150
|
GetConnectedWires(this: AudioGate, pin: string): Array<Instance>;
|
|
6056
6151
|
/**
|
|
6152
|
+
* Gets the list of pins that `Wire` can use in `Wire.TargetName` to connect to this instance via its `Wire.TargetInstance` property.
|
|
6153
|
+
*
|
|
6057
6154
|
* - **ThreadSafety**: Unsafe
|
|
6058
6155
|
*
|
|
6059
6156
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate#GetInputPins)
|
|
6060
6157
|
* @param this
|
|
6158
|
+
* @returns An array of strings representing valid pin names.
|
|
6061
6159
|
*/
|
|
6062
6160
|
GetInputPins(this: AudioGate): Array<unknown>;
|
|
6063
6161
|
/**
|
|
6162
|
+
* Gets the list of pins that `Wire` can use in `Wire.SourceName` to connect to this instance via its `Wire.SourceInstance` property.
|
|
6163
|
+
*
|
|
6064
6164
|
* - **ThreadSafety**: Unsafe
|
|
6065
6165
|
*
|
|
6066
6166
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate#GetOutputPins)
|
|
6067
6167
|
* @param this
|
|
6168
|
+
* @returns An array of strings representing valid pin names.
|
|
6068
6169
|
*/
|
|
6069
6170
|
GetOutputPins(this: AudioGate): Array<unknown>;
|
|
6070
6171
|
/**
|
|
6172
|
+
* Fires when another instance is connected to or disconnected from the `AudioAnalyzer` via a `Wire`.
|
|
6173
|
+
*
|
|
6071
6174
|
* - **ThreadSafety**: Unsafe
|
|
6072
6175
|
*
|
|
6073
6176
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate#WiringChanged)
|
|
@@ -6119,21 +6222,28 @@ interface AudioLimiter extends Instance {
|
|
|
6119
6222
|
*
|
|
6120
6223
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioLimiter#GetConnectedWires)
|
|
6121
6224
|
* @param this Limits how loud audio streams are allowed to be.
|
|
6122
|
-
* @param pin
|
|
6225
|
+
* @param pin An input or output pin on this instance
|
|
6226
|
+
* @returns An array of `Wires`
|
|
6123
6227
|
*/
|
|
6124
6228
|
GetConnectedWires(this: AudioLimiter, pin: string): Array<Instance>;
|
|
6125
6229
|
/**
|
|
6230
|
+
* Gets the list of pins that `Wire` can use in `Wire.TargetName` to connect to this instance via its `Wire.TargetInstance` property.
|
|
6231
|
+
*
|
|
6126
6232
|
* - **ThreadSafety**: Unsafe
|
|
6127
6233
|
*
|
|
6128
6234
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioLimiter#GetInputPins)
|
|
6129
6235
|
* @param this Limits how loud audio streams are allowed to be.
|
|
6236
|
+
* @returns An array of strings representing valid pin names.
|
|
6130
6237
|
*/
|
|
6131
6238
|
GetInputPins(this: AudioLimiter): Array<unknown>;
|
|
6132
6239
|
/**
|
|
6240
|
+
* Gets the list of pins that `Wire` can use in `Wire.SourceName` to connect to this instance via its `Wire.SourceInstance` property.
|
|
6241
|
+
*
|
|
6133
6242
|
* - **ThreadSafety**: Unsafe
|
|
6134
6243
|
*
|
|
6135
6244
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioLimiter#GetOutputPins)
|
|
6136
6245
|
* @param this Limits how loud audio streams are allowed to be.
|
|
6246
|
+
* @returns An array of strings representing valid pin names.
|
|
6137
6247
|
*/
|
|
6138
6248
|
GetOutputPins(this: AudioLimiter): Array<unknown>;
|
|
6139
6249
|
/**
|
|
@@ -6214,7 +6324,8 @@ interface AudioListener extends Instance {
|
|
|
6214
6324
|
*
|
|
6215
6325
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioListener#GetConnectedWires)
|
|
6216
6326
|
* @param this Records an audio stream from its surrounding `AudioEmitters` in the 3D world.
|
|
6217
|
-
* @param pin
|
|
6327
|
+
* @param pin An input or output pin on this instance
|
|
6328
|
+
* @returns An array of `Wires`
|
|
6218
6329
|
*/
|
|
6219
6330
|
GetConnectedWires(this: AudioListener, pin: string): Array<Instance>;
|
|
6220
6331
|
/**
|
|
@@ -6228,10 +6339,13 @@ interface AudioListener extends Instance {
|
|
|
6228
6339
|
*/
|
|
6229
6340
|
GetDistanceAttenuation(this: AudioListener): object;
|
|
6230
6341
|
/**
|
|
6342
|
+
* Gets the list of pins that `Wire` can use in `Wire.TargetName` to connect to this instance via its `Wire.TargetInstance` property.
|
|
6343
|
+
*
|
|
6231
6344
|
* - **ThreadSafety**: Unsafe
|
|
6232
6345
|
*
|
|
6233
6346
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioListener#GetInputPins)
|
|
6234
6347
|
* @param this Records an audio stream from its surrounding `AudioEmitters` in the 3D world.
|
|
6348
|
+
* @returns An array of strings representing valid pin names.
|
|
6235
6349
|
*/
|
|
6236
6350
|
GetInputPins(this: AudioListener): Array<unknown>;
|
|
6237
6351
|
/**
|
|
@@ -6244,10 +6358,13 @@ interface AudioListener extends Instance {
|
|
|
6244
6358
|
*/
|
|
6245
6359
|
GetInteractingEmitters(this: AudioListener): Array<Instance>;
|
|
6246
6360
|
/**
|
|
6361
|
+
* Gets the list of pins that `Wire` can use in `Wire.SourceName` to connect to this instance via its `Wire.SourceInstance` property.
|
|
6362
|
+
*
|
|
6247
6363
|
* - **ThreadSafety**: Unsafe
|
|
6248
6364
|
*
|
|
6249
6365
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioListener#GetOutputPins)
|
|
6250
6366
|
* @param this Records an audio stream from its surrounding `AudioEmitters` in the 3D world.
|
|
6367
|
+
* @returns An array of strings representing valid pin names.
|
|
6251
6368
|
*/
|
|
6252
6369
|
GetOutputPins(this: AudioListener): Array<unknown>;
|
|
6253
6370
|
/**
|
|
@@ -6324,21 +6441,28 @@ interface AudioPitchShifter extends Instance {
|
|
|
6324
6441
|
*
|
|
6325
6442
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPitchShifter#GetConnectedWires)
|
|
6326
6443
|
* @param this Adjusts the perceived pitch of audio streams.
|
|
6327
|
-
* @param pin
|
|
6444
|
+
* @param pin An input or output pin on this instance
|
|
6445
|
+
* @returns An array of `Wires`
|
|
6328
6446
|
*/
|
|
6329
6447
|
GetConnectedWires(this: AudioPitchShifter, pin: string): Array<Instance>;
|
|
6330
6448
|
/**
|
|
6449
|
+
* Gets the list of pins that `Wire` can use in `Wire.TargetName` to connect to this instance via its `Wire.TargetInstance` property.
|
|
6450
|
+
*
|
|
6331
6451
|
* - **ThreadSafety**: Unsafe
|
|
6332
6452
|
*
|
|
6333
6453
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPitchShifter#GetInputPins)
|
|
6334
6454
|
* @param this Adjusts the perceived pitch of audio streams.
|
|
6455
|
+
* @returns An array of strings representing valid pin names.
|
|
6335
6456
|
*/
|
|
6336
6457
|
GetInputPins(this: AudioPitchShifter): Array<unknown>;
|
|
6337
6458
|
/**
|
|
6459
|
+
* Gets the list of pins that `Wire` can use in `Wire.SourceName` to connect to this instance via its `Wire.SourceInstance` property.
|
|
6460
|
+
*
|
|
6338
6461
|
* - **ThreadSafety**: Unsafe
|
|
6339
6462
|
*
|
|
6340
6463
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPitchShifter#GetOutputPins)
|
|
6341
6464
|
* @param this Adjusts the perceived pitch of audio streams.
|
|
6465
|
+
* @returns An array of strings representing valid pin names.
|
|
6342
6466
|
*/
|
|
6343
6467
|
GetOutputPins(this: AudioPitchShifter): Array<unknown>;
|
|
6344
6468
|
/**
|
|
@@ -6488,21 +6612,28 @@ interface AudioPlayer extends Instance {
|
|
|
6488
6612
|
*
|
|
6489
6613
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#GetConnectedWires)
|
|
6490
6614
|
* @param this Used to play audio assets.
|
|
6491
|
-
* @param pin
|
|
6615
|
+
* @param pin An input or output pin on this instance
|
|
6616
|
+
* @returns An array of `Wires`
|
|
6492
6617
|
*/
|
|
6493
6618
|
GetConnectedWires(this: AudioPlayer, pin: string): Array<Instance>;
|
|
6494
6619
|
/**
|
|
6620
|
+
* Gets the list of pins that `Wire` can use in `Wire.TargetName` to connect to this instance via its `Wire.TargetInstance` property.
|
|
6621
|
+
*
|
|
6495
6622
|
* - **ThreadSafety**: Unsafe
|
|
6496
6623
|
*
|
|
6497
6624
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#GetInputPins)
|
|
6498
6625
|
* @param this Used to play audio assets.
|
|
6626
|
+
* @returns An array of strings representing valid pin names.
|
|
6499
6627
|
*/
|
|
6500
6628
|
GetInputPins(this: AudioPlayer): Array<unknown>;
|
|
6501
6629
|
/**
|
|
6630
|
+
* Gets the list of pins that `Wire` can use in `Wire.SourceName` to connect to this instance via its `Wire.SourceInstance` property.
|
|
6631
|
+
*
|
|
6502
6632
|
* - **ThreadSafety**: Unsafe
|
|
6503
6633
|
*
|
|
6504
6634
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#GetOutputPins)
|
|
6505
6635
|
* @param this Used to play audio assets.
|
|
6636
|
+
* @returns An array of strings representing valid pin names.
|
|
6506
6637
|
*/
|
|
6507
6638
|
GetOutputPins(this: AudioPlayer): Array<unknown>;
|
|
6508
6639
|
/**
|
|
@@ -6595,25 +6726,34 @@ interface AudioRecorder extends Instance {
|
|
|
6595
6726
|
*/
|
|
6596
6727
|
Clear(this: AudioRecorder): void;
|
|
6597
6728
|
/**
|
|
6729
|
+
* Returns an array of `Wires` that are connected to the specified pin.
|
|
6730
|
+
*
|
|
6598
6731
|
* - **ThreadSafety**: Unsafe
|
|
6599
6732
|
*
|
|
6600
6733
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetConnectedWires)
|
|
6601
6734
|
* @param this Records audio streams in-experience.
|
|
6602
|
-
* @param pin
|
|
6735
|
+
* @param pin An input or output pin on this instance
|
|
6736
|
+
* @returns An array of `Wires`
|
|
6603
6737
|
*/
|
|
6604
6738
|
GetConnectedWires(this: AudioRecorder, pin: string): Array<Instance>;
|
|
6605
6739
|
/**
|
|
6740
|
+
* Gets the list of pins that `Wire` can use in `Wire.TargetName` to connect to this instance via its `Wire.TargetInstance` property.
|
|
6741
|
+
*
|
|
6606
6742
|
* - **ThreadSafety**: Unsafe
|
|
6607
6743
|
*
|
|
6608
6744
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetInputPins)
|
|
6609
6745
|
* @param this Records audio streams in-experience.
|
|
6746
|
+
* @returns An array of strings representing valid pin names.
|
|
6610
6747
|
*/
|
|
6611
6748
|
GetInputPins(this: AudioRecorder): Array<unknown>;
|
|
6612
6749
|
/**
|
|
6750
|
+
* Gets the list of pins that `Wire` can use in `Wire.SourceName` to connect to this instance via its `Wire.SourceInstance` property.
|
|
6751
|
+
*
|
|
6613
6752
|
* - **ThreadSafety**: Unsafe
|
|
6614
6753
|
*
|
|
6615
6754
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetOutputPins)
|
|
6616
6755
|
* @param this Records audio streams in-experience.
|
|
6756
|
+
* @returns An array of strings representing valid pin names.
|
|
6617
6757
|
*/
|
|
6618
6758
|
GetOutputPins(this: AudioRecorder): Array<unknown>;
|
|
6619
6759
|
/**
|
|
@@ -6655,6 +6795,8 @@ interface AudioRecorder extends Instance {
|
|
|
6655
6795
|
*/
|
|
6656
6796
|
RecordAsync(this: AudioRecorder): void;
|
|
6657
6797
|
/**
|
|
6798
|
+
* Fires when another instance is connected to or disconnected from the `AudioAnalyzer` via a `Wire`.
|
|
6799
|
+
*
|
|
6658
6800
|
* - **ThreadSafety**: Unsafe
|
|
6659
6801
|
*
|
|
6660
6802
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#WiringChanged)
|
|
@@ -6786,21 +6928,28 @@ interface AudioReverb extends Instance {
|
|
|
6786
6928
|
*
|
|
6787
6929
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioReverb#GetConnectedWires)
|
|
6788
6930
|
* @param this Reverberates audio streams.
|
|
6789
|
-
* @param pin
|
|
6931
|
+
* @param pin An input or output pin on this instance
|
|
6932
|
+
* @returns An array of `Wires`
|
|
6790
6933
|
*/
|
|
6791
6934
|
GetConnectedWires(this: AudioReverb, pin: string): Array<Instance>;
|
|
6792
6935
|
/**
|
|
6936
|
+
* Gets the list of pins that `Wire` can use in `Wire.TargetName` to connect to this instance via its `Wire.TargetInstance` property.
|
|
6937
|
+
*
|
|
6793
6938
|
* - **ThreadSafety**: Unsafe
|
|
6794
6939
|
*
|
|
6795
6940
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioReverb#GetInputPins)
|
|
6796
6941
|
* @param this Reverberates audio streams.
|
|
6942
|
+
* @returns An array of strings representing valid pin names.
|
|
6797
6943
|
*/
|
|
6798
6944
|
GetInputPins(this: AudioReverb): Array<unknown>;
|
|
6799
6945
|
/**
|
|
6946
|
+
* Gets the list of pins that `Wire` can use in `Wire.SourceName` to connect to this instance via its `Wire.SourceInstance` property.
|
|
6947
|
+
*
|
|
6800
6948
|
* - **ThreadSafety**: Unsafe
|
|
6801
6949
|
*
|
|
6802
6950
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioReverb#GetOutputPins)
|
|
6803
6951
|
* @param this Reverberates audio streams.
|
|
6952
|
+
* @returns An array of strings representing valid pin names.
|
|
6804
6953
|
*/
|
|
6805
6954
|
GetOutputPins(this: AudioReverb): Array<unknown>;
|
|
6806
6955
|
/**
|
|
@@ -6950,7 +7099,8 @@ interface AudioSpeechToText extends Instance {
|
|
|
6950
7099
|
*
|
|
6951
7100
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText#GetConnectedWires)
|
|
6952
7101
|
* @param this Converts spoken audio into text.
|
|
6953
|
-
* @param pin
|
|
7102
|
+
* @param pin An input or output pin on this instance
|
|
7103
|
+
* @returns An array of `Wires`
|
|
6954
7104
|
*/
|
|
6955
7105
|
GetConnectedWires(this: AudioSpeechToText, pin: string): Array<Instance>;
|
|
6956
7106
|
/**
|
|
@@ -7073,7 +7223,8 @@ interface AudioTextToSpeech extends Instance {
|
|
|
7073
7223
|
*
|
|
7074
7224
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#GetConnectedWires)
|
|
7075
7225
|
* @param this Plays text as speech audio.
|
|
7076
|
-
* @param pin
|
|
7226
|
+
* @param pin An input or output pin on this instance
|
|
7227
|
+
* @returns An array of `Wires`
|
|
7077
7228
|
*/
|
|
7078
7229
|
GetConnectedWires(this: AudioTextToSpeech, pin: string): Array<Instance>;
|
|
7079
7230
|
/**
|
|
@@ -7217,28 +7368,39 @@ interface AudioTremolo extends Instance {
|
|
|
7217
7368
|
*/
|
|
7218
7369
|
Square: number;
|
|
7219
7370
|
/**
|
|
7371
|
+
* Returns an array of `Wires` that are connected to the specified pin.
|
|
7372
|
+
*
|
|
7220
7373
|
* - **ThreadSafety**: Unsafe
|
|
7221
7374
|
*
|
|
7222
7375
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTremolo#GetConnectedWires)
|
|
7223
7376
|
* @param this Creates a trembling effect on a sound by varying the volume of the sound up and down.
|
|
7224
|
-
* @param pin
|
|
7377
|
+
* @param pin An input or output pin on this instance
|
|
7378
|
+
* @returns An array of `Wires`
|
|
7225
7379
|
*/
|
|
7226
7380
|
GetConnectedWires(this: AudioTremolo, pin: string): Array<Instance>;
|
|
7227
7381
|
/**
|
|
7382
|
+
* Gets the list of pins that `Wire` can use in `Wire.TargetName` to connect to this instance via its `Wire.TargetInstance` property.
|
|
7383
|
+
*
|
|
7228
7384
|
* - **ThreadSafety**: Unsafe
|
|
7229
7385
|
*
|
|
7230
7386
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTremolo#GetInputPins)
|
|
7231
7387
|
* @param this Creates a trembling effect on a sound by varying the volume of the sound up and down.
|
|
7388
|
+
* @returns An array of strings representing valid pin names.
|
|
7232
7389
|
*/
|
|
7233
7390
|
GetInputPins(this: AudioTremolo): Array<unknown>;
|
|
7234
7391
|
/**
|
|
7392
|
+
* Gets the list of pins that `Wire` can use in `Wire.SourceName` to connect to this instance via its `Wire.SourceInstance` property.
|
|
7393
|
+
*
|
|
7235
7394
|
* - **ThreadSafety**: Unsafe
|
|
7236
7395
|
*
|
|
7237
7396
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTremolo#GetOutputPins)
|
|
7238
7397
|
* @param this Creates a trembling effect on a sound by varying the volume of the sound up and down.
|
|
7398
|
+
* @returns An array of strings representing valid pin names.
|
|
7239
7399
|
*/
|
|
7240
7400
|
GetOutputPins(this: AudioTremolo): Array<unknown>;
|
|
7241
7401
|
/**
|
|
7402
|
+
* Fires when another instance is connected to or disconnected from the `AudioAnalyzer` via a `Wire`.
|
|
7403
|
+
*
|
|
7242
7404
|
* - **ThreadSafety**: Unsafe
|
|
7243
7405
|
*
|
|
7244
7406
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTremolo#WiringChanged)
|
|
@@ -7598,7 +7760,7 @@ interface AvatarCreationService extends Instance {
|
|
|
7598
7760
|
*/
|
|
7599
7761
|
GetValidationRules(this: AvatarCreationService): object;
|
|
7600
7762
|
/**
|
|
7601
|
-
* Automatically sets up a custom `Model`
|
|
7763
|
+
* Automatically sets up a custom `Model` and/or avatar accessories.
|
|
7602
7764
|
*
|
|
7603
7765
|
* - **ThreadSafety**: Unsafe
|
|
7604
7766
|
* - **Tags**: Yields
|
|
@@ -7606,7 +7768,7 @@ interface AvatarCreationService extends Instance {
|
|
|
7606
7768
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#AutoSetupAvatarAsync)
|
|
7607
7769
|
* @param this A service to support developer avatar creators.
|
|
7608
7770
|
* @param player The `Player` that the avatar is being set up for.
|
|
7609
|
-
* @param
|
|
7771
|
+
* @param autoSetupParams A table containing the arguments. Type: `type AutoSetupAccessory = { AccessoryType: Enum.AccessoryType, IsLayered: bool, Instance: Model, } type AutoSetupParams = { Body: Model?, Accessories: {AutoSetupAccessory}, }`
|
|
7610
7772
|
* @param progressCallback Optional callback function that will be invoked periodically with a progressInfo table with the overall progress (from 0 to 1). Type: `(progressInfo: { Progress: number }) -> ()`
|
|
7611
7773
|
* @returns A unique identifier for the generated avatar.
|
|
7612
7774
|
*/
|
|
@@ -7987,10 +8149,7 @@ interface AvatarEditorService extends Instance {
|
|
|
7987
8149
|
* @param this A service to support developer Avatar Editors.
|
|
7988
8150
|
* @param itemIds The list of item ids to get details of.
|
|
7989
8151
|
* @param itemType The type of the item ids provided.
|
|
7990
|
-
* @returns Returns an array of item details
|
|
7991
|
-
* ```lua
|
|
7992
|
-
* { "AssetType" = "string", "CreatorName" = "string", "CreatorTargetId" = 0, "CreatorType" = "string", "Description" = "string", "FavoriteCount" = 0, "Genres" = [ "All" ], "Id" = 0, "ItemRestrictions" = [ "Limited" ], "ItemStatus": [ "New" ], "ItemType" = "string", "LowestPrice" = 0, "Name" = "string", "Price" = 0, "ProductId" = 0 }
|
|
7993
|
-
* ``` .
|
|
8152
|
+
* @returns Returns an array of item details. See `AvatarEditorService:GetBatchItemDetailsAsync()` for the response format.
|
|
7994
8153
|
*
|
|
7995
8154
|
* @deprecated GetBatchItemDetailsAsync
|
|
7996
8155
|
*/
|
|
@@ -8007,10 +8166,7 @@ interface AvatarEditorService extends Instance {
|
|
|
8007
8166
|
* @param this A service to support developer Avatar Editors.
|
|
8008
8167
|
* @param itemIds The list of item ids to get details of.
|
|
8009
8168
|
* @param itemType The type of the item ids provided.
|
|
8010
|
-
* @returns Returns an array of item details
|
|
8011
|
-
* ```lua
|
|
8012
|
-
* { "AssetType" = "string", "CreatorName" = "string", "CreatorTargetId" = 0, "CreatorType" = "string", "Description" = "string", "FavoriteCount" = 0, "Genres" = [ "All" ], "Id" = 0, "ItemRestrictions" = [ "Limited" ], "ItemStatus": [ "New" ], "ItemType" = "string", "LowestPrice" = 0, "Name" = "string", "Price" = 0, "ProductId" = 0 }
|
|
8013
|
-
* ``` .
|
|
8169
|
+
* @returns Returns an array of item details.
|
|
8014
8170
|
*/
|
|
8015
8171
|
GetBatchItemDetailsAsync(this: AvatarEditorService, itemIds: Array<unknown>, itemType: CastsToEnum<Enum.AvatarItemType>): Array<unknown>;
|
|
8016
8172
|
/**
|
|
@@ -8110,7 +8266,7 @@ interface AvatarEditorService extends Instance {
|
|
|
8110
8266
|
* @param this A service to support developer Avatar Editors.
|
|
8111
8267
|
* @param itemId The ID of the item whose details are being retrieved.
|
|
8112
8268
|
* @param itemType An enum value indicating the type of item whose details are being retrieved.
|
|
8113
|
-
* @returns A table containing the item info for the retrieved item.
|
|
8269
|
+
* @returns A table containing the item info for the retrieved item.
|
|
8114
8270
|
*/
|
|
8115
8271
|
GetItemDetailsAsync(this: AvatarEditorService, itemId: number, itemType: CastsToEnum<Enum.AvatarItemType>): object;
|
|
8116
8272
|
/**
|
|
@@ -8251,6 +8407,7 @@ interface AvatarEditorService extends Instance {
|
|
|
8251
8407
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#SearchCatalogAsync)
|
|
8252
8408
|
* @param this A service to support developer Avatar Editors.
|
|
8253
8409
|
* @param searchParameters An object containing the parameters used for the search.
|
|
8410
|
+
* @returns A `CatalogPages` object containing the search results.
|
|
8254
8411
|
*/
|
|
8255
8412
|
SearchCatalogAsync(this: AvatarEditorService, searchParameters: CatalogSearchParams): CatalogPages;
|
|
8256
8413
|
/**
|
|
@@ -10390,6 +10547,8 @@ interface BodyPartDescription extends Instance {
|
|
|
10390
10547
|
*/
|
|
10391
10548
|
Color: Color3;
|
|
10392
10549
|
/**
|
|
10550
|
+
* Specifies the head shape identifier to apply to a Dynamic Head when this `BodyPartDescription` is applied.
|
|
10551
|
+
*
|
|
10393
10552
|
* - **ThreadSafety**: ReadSafe
|
|
10394
10553
|
*
|
|
10395
10554
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyPartDescription#HeadShape)
|
|
@@ -10603,6 +10762,7 @@ interface CaptureService extends Instance {
|
|
|
10603
10762
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#ReadCapturesFromGalleryAsync)
|
|
10604
10763
|
* @param this A service which provides control over screenshot and video capture features.
|
|
10605
10764
|
* @param captureTypeFilters An array of `CaptureType`.
|
|
10765
|
+
* @param readFromAllEligibleExperiences A boolean; default is `false`.
|
|
10606
10766
|
* @returns Tuple of (result: `ReadCapturesFromGalleryResult`, capturesPages: `CapturesPages`)
|
|
10607
10767
|
*/
|
|
10608
10768
|
ReadCapturesFromGalleryAsync(this: CaptureService, captureTypeFilters?: Array<unknown>, readFromAllEligibleExperiences?: boolean): unknown;
|
|
@@ -17040,20 +17200,29 @@ interface GenerationService extends Instance {
|
|
|
17040
17200
|
* @param this Service that allows developers to generate 3D objects from text prompts.
|
|
17041
17201
|
* @param inputs A dictionary containing the mesh generation prompts. Currently, the only supported key is the `Prompt` (string) that describes the mesh to generate.
|
|
17042
17202
|
* @param player The `Player` requesting the generation.
|
|
17043
|
-
* @param options A dictionary for additional generation options to influence the result. The
|
|
17203
|
+
* @param options A dictionary for additional generation options to influence the result. The optional `SuggestedSize` key (`Vector3`) represents a size guide for the generated asset, meaning `GenerationService` will attempt to create a model with a size and proportion similar to the provided `Vector3`, although there is no guarantee on the final output size.
|
|
17044
17204
|
* @param intermediateResultCallback A callback function triggered with intermediate generation results. Useful for retrieving early mesh versions before textures are applied.
|
|
17045
17205
|
* @returns A tuple of the generation ID (a unique ID returned for each invocation of `GenerateMeshAsync()`) and context ID (not currently used).
|
|
17046
17206
|
*/
|
|
17047
17207
|
GenerateMeshAsync(this: GenerationService, inputs: object, player: Player, options: object, intermediateResultCallback?: Callback): unknown;
|
|
17048
17208
|
/**
|
|
17209
|
+
* Enables generation of multi-mesh geometries according to provided `inputs` and a `schema`.
|
|
17210
|
+
*
|
|
17049
17211
|
* - **ThreadSafety**: Unsafe
|
|
17050
17212
|
* - **Tags**: Yields
|
|
17051
17213
|
*
|
|
17052
17214
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GenerationService#GenerateModelAsync)
|
|
17053
17215
|
* @param this Service that allows developers to generate 3D objects from text prompts.
|
|
17054
|
-
* @param inputs
|
|
17055
|
-
*
|
|
17056
|
-
*
|
|
17216
|
+
* @param inputs A table representing conditioning inputs with the following keys: - `TextPrompt` — String description of the object to generate.
|
|
17217
|
+
* - `Size` — Optional `Vector3` describing the object size to generate. This is only approximate; scale the model extents post‑generation if you need a specific size.
|
|
17218
|
+
* - `MaxTriangles` — Optional integer describing the maximum number of triangles that the returned model will contain. Lower values result in more faceted and low-poly generations.
|
|
17219
|
+
* - `GenerateTextures` — `true` (default) textures the resulting generation, while `false` will not generate textures.
|
|
17220
|
+
*
|
|
17221
|
+
*
|
|
17222
|
+
* @param schema Table representing the generation schema. Must contain a `PredefinedSchema` key with a string value; current valid options are `Car5` for a basic vehicle chassis consisting of five `Models`, or `Body1` which results in a single mesh output.
|
|
17223
|
+
* @param options Currently not used; reserved for future customization options.
|
|
17224
|
+
* @returns Tuple with the following elements: - A standard `Model` container instance that is compliant with the specified `schema`.
|
|
17225
|
+
* - A table containing a UUID and other metadata about the generation.
|
|
17057
17226
|
*/
|
|
17058
17227
|
GenerateModelAsync(this: GenerationService, inputs: object, schema: object, options?: object): unknown;
|
|
17059
17228
|
/**
|
|
@@ -19738,21 +19907,28 @@ interface VideoDisplay extends GuiObject {
|
|
|
19738
19907
|
*
|
|
19739
19908
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#GetConnectedWires)
|
|
19740
19909
|
* @param this A GUI object that displays video content from a connected `VideoPlayer`.
|
|
19741
|
-
* @param pin
|
|
19910
|
+
* @param pin An input or output pin on this instance
|
|
19911
|
+
* @returns An array of `Wires`
|
|
19742
19912
|
*/
|
|
19743
19913
|
GetConnectedWires(this: VideoDisplay, pin: string): Array<Instance>;
|
|
19744
19914
|
/**
|
|
19915
|
+
* Gets the list of pins that `Wire` can use in `Wire.TargetName` to connect to this instance via its `Wire.TargetInstance` property.
|
|
19916
|
+
*
|
|
19745
19917
|
* - **ThreadSafety**: Unsafe
|
|
19746
19918
|
*
|
|
19747
19919
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#GetInputPins)
|
|
19748
19920
|
* @param this A GUI object that displays video content from a connected `VideoPlayer`.
|
|
19921
|
+
* @returns An array of strings representing valid pin names.
|
|
19749
19922
|
*/
|
|
19750
19923
|
GetInputPins(this: VideoDisplay): Array<unknown>;
|
|
19751
19924
|
/**
|
|
19925
|
+
* Gets the list of pins that `Wire` can use in `Wire.SourceName` to connect to this instance via its `Wire.SourceInstance` property.
|
|
19926
|
+
*
|
|
19752
19927
|
* - **ThreadSafety**: Unsafe
|
|
19753
19928
|
*
|
|
19754
19929
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#GetOutputPins)
|
|
19755
19930
|
* @param this A GUI object that displays video content from a connected `VideoPlayer`.
|
|
19931
|
+
* @returns An array of strings representing valid pin names.
|
|
19756
19932
|
*/
|
|
19757
19933
|
GetOutputPins(this: VideoDisplay): Array<unknown>;
|
|
19758
19934
|
/**
|
|
@@ -34310,6 +34486,21 @@ interface PlatformFriendsService extends Instance {
|
|
|
34310
34486
|
*/
|
|
34311
34487
|
readonly _nominal_PlatformFriendsService: unique symbol;
|
|
34312
34488
|
}
|
|
34489
|
+
/**
|
|
34490
|
+
* - **Tags**: NotCreatable, Service
|
|
34491
|
+
*
|
|
34492
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlatformLibraries)
|
|
34493
|
+
*/
|
|
34494
|
+
interface PlatformLibraries extends Instance {
|
|
34495
|
+
/**
|
|
34496
|
+
* **DO NOT USE!**
|
|
34497
|
+
*
|
|
34498
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
34499
|
+
* @hidden
|
|
34500
|
+
* @deprecated
|
|
34501
|
+
*/
|
|
34502
|
+
readonly _nominal_PlatformLibraries: unique symbol;
|
|
34503
|
+
}
|
|
34313
34504
|
/**
|
|
34314
34505
|
* An object that represents a presently connected client to the experience.
|
|
34315
34506
|
*
|
|
@@ -34858,7 +35049,7 @@ interface Player extends Instance {
|
|
|
34858
35049
|
*/
|
|
34859
35050
|
SaveString(this: Player, key: string, value: string): void;
|
|
34860
35051
|
/**
|
|
34861
|
-
* **Deprecated:** This method has been superseded by `
|
|
35052
|
+
* **Deprecated:** This method has been superseded by `GetFriendsOnlineAsync()`.
|
|
34862
35053
|
*
|
|
34863
35054
|
* Returns a dictionary of online connections. Returns the product information of an asset using its asset ID.
|
|
34864
35055
|
*
|
|
@@ -37204,6 +37395,21 @@ interface RobloxServerStorage extends Instance {
|
|
|
37204
37395
|
*/
|
|
37205
37396
|
readonly _nominal_RobloxServerStorage: unique symbol;
|
|
37206
37397
|
}
|
|
37398
|
+
/**
|
|
37399
|
+
* - **Tags**: NotCreatable
|
|
37400
|
+
*
|
|
37401
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RolloutValidation)
|
|
37402
|
+
*/
|
|
37403
|
+
interface RolloutValidation extends Instance {
|
|
37404
|
+
/**
|
|
37405
|
+
* **DO NOT USE!**
|
|
37406
|
+
*
|
|
37407
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
37408
|
+
* @hidden
|
|
37409
|
+
* @deprecated
|
|
37410
|
+
*/
|
|
37411
|
+
readonly _nominal_RolloutValidation: unique symbol;
|
|
37412
|
+
}
|
|
37207
37413
|
/**
|
|
37208
37414
|
* - **Tags**: NotCreatable, Service
|
|
37209
37415
|
*
|
|
@@ -42420,8 +42626,9 @@ interface TestService extends Instance {
|
|
|
42420
42626
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestService#TakeSnapshot)
|
|
42421
42627
|
* @param this A service used by Roblox to run controlled tests of the engine. It is available for developers to use, to a limited degree.
|
|
42422
42628
|
* @param snapshotname
|
|
42629
|
+
* @param source
|
|
42423
42630
|
*/
|
|
42424
|
-
TakeSnapshot(this: TestService, snapshotname: string): void;
|
|
42631
|
+
TakeSnapshot(this: TestService, snapshotname: string, source?: Instance): void;
|
|
42425
42632
|
/**
|
|
42426
42633
|
* Prints if a condition is `true`, otherwise prints a warning.
|
|
42427
42634
|
*
|
|
@@ -43543,8 +43750,8 @@ interface TextChatService extends Instance {
|
|
|
43543
43750
|
*
|
|
43544
43751
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TextChatService#CanUsersChatAsync)
|
|
43545
43752
|
* @param this A service handling in-experience text chat.
|
|
43546
|
-
* @param userIdFrom
|
|
43547
|
-
* @param userIdTo
|
|
43753
|
+
* @param userIdFrom The user must be in the current server, otherwise an error will occur.
|
|
43754
|
+
* @param userIdTo The user must be in the current server, otherwise an error will occur.
|
|
43548
43755
|
*/
|
|
43549
43756
|
CanUsersChatAsync(this: TextChatService, userIdFrom: number, userIdTo: number): boolean;
|
|
43550
43757
|
/**
|
|
@@ -43561,10 +43768,15 @@ interface TextChatService extends Instance {
|
|
|
43561
43768
|
*/
|
|
43562
43769
|
CanUsersDirectChatAsync(this: TextChatService, requesterUserId: number, userIds: Array<unknown>): Array<unknown>;
|
|
43563
43770
|
/**
|
|
43771
|
+
* Returns chat group IDs that indicate which players can synchronously text chat together.
|
|
43772
|
+
*
|
|
43564
43773
|
* - **ThreadSafety**: Unsafe
|
|
43565
43774
|
* - **Tags**: Yields
|
|
43566
43775
|
*
|
|
43567
43776
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TextChatService#GetChatGroupsAsync)
|
|
43777
|
+
* @param this A service handling in-experience text chat.
|
|
43778
|
+
* @param players A list of `Players` currently in the experience to evaluate for text chat compatibility.
|
|
43779
|
+
* @returns A sorted array of arrays of chat group ID strings. Players who share a matching chat group ID are eligible to synchronously text chat with each other.
|
|
43568
43780
|
*/
|
|
43569
43781
|
GetChatGroupsAsync(this: TextChatService, players: Array<Instance>): Array<unknown>;
|
|
43570
43782
|
/**
|
|
@@ -47522,21 +47734,28 @@ interface VideoPlayer extends Instance {
|
|
|
47522
47734
|
*
|
|
47523
47735
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#GetConnectedWires)
|
|
47524
47736
|
* @param this Used to play video assets.
|
|
47525
|
-
* @param pin
|
|
47737
|
+
* @param pin An input or output pin on this instance
|
|
47738
|
+
* @returns An array of `Wires`
|
|
47526
47739
|
*/
|
|
47527
47740
|
GetConnectedWires(this: VideoPlayer, pin: string): Array<Instance>;
|
|
47528
47741
|
/**
|
|
47742
|
+
* Gets the list of pins that `Wire` can use in `Wire.TargetName` to connect to this instance via its `Wire.TargetInstance` property.
|
|
47743
|
+
*
|
|
47529
47744
|
* - **ThreadSafety**: Unsafe
|
|
47530
47745
|
*
|
|
47531
47746
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#GetInputPins)
|
|
47532
47747
|
* @param this Used to play video assets.
|
|
47748
|
+
* @returns An array of strings representing valid pin names.
|
|
47533
47749
|
*/
|
|
47534
47750
|
GetInputPins(this: VideoPlayer): Array<unknown>;
|
|
47535
47751
|
/**
|
|
47752
|
+
* Gets the list of pins that `Wire` can use in `Wire.SourceName` to connect to this instance via its `Wire.SourceInstance` property.
|
|
47753
|
+
*
|
|
47536
47754
|
* - **ThreadSafety**: Unsafe
|
|
47537
47755
|
*
|
|
47538
47756
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#GetOutputPins)
|
|
47539
47757
|
* @param this Used to play video assets.
|
|
47758
|
+
* @returns An array of strings representing valid pin names.
|
|
47540
47759
|
*/
|
|
47541
47760
|
GetOutputPins(this: VideoPlayer): Array<unknown>;
|
|
47542
47761
|
/**
|
|
@@ -47911,10 +48130,15 @@ interface VoiceChatService extends Instance {
|
|
|
47911
48130
|
*/
|
|
47912
48131
|
readonly _nominal_VoiceChatService: unique symbol;
|
|
47913
48132
|
/**
|
|
48133
|
+
* Returns chat group IDs that indicate which players can voice chat together.
|
|
48134
|
+
*
|
|
47914
48135
|
* - **ThreadSafety**: Unsafe
|
|
47915
48136
|
* - **Tags**: Yields
|
|
47916
48137
|
*
|
|
47917
48138
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VoiceChatService#GetChatGroupsAsync)
|
|
48139
|
+
* @param this **VoiceChatService** is responsible for voice chat's high-level functionality.
|
|
48140
|
+
* @param players A list of `Players` currently in the experience to evaluate for voice chat compatibility.
|
|
48141
|
+
* @returns A sorted array of arrays of chat group ID strings. Players who share a matching chat group ID are eligible to voice chat with each other.
|
|
47918
48142
|
*/
|
|
47919
48143
|
GetChatGroupsAsync(this: VoiceChatService, players: Array<Instance>): Array<unknown>;
|
|
47920
48144
|
/**
|
|
@@ -148,6 +148,7 @@ interface Services {
|
|
|
148
148
|
PlaceStatsService: PlaceStatsService;
|
|
149
149
|
PlatformCloudStorageService: PlatformCloudStorageService;
|
|
150
150
|
PlatformFriendsService: PlatformFriendsService;
|
|
151
|
+
PlatformLibraries: PlatformLibraries;
|
|
151
152
|
PlayerDataService: PlayerDataService;
|
|
152
153
|
PlayerHydrationService: PlayerHydrationService;
|
|
153
154
|
Players: Players;
|
|
@@ -724,6 +725,7 @@ interface Instances extends Services, CreatableInstances {
|
|
|
724
725
|
QWidgetPluginGui: QWidgetPluginGui;
|
|
725
726
|
RecommendationPages: RecommendationPages;
|
|
726
727
|
RobloxSerializableInstance: RobloxSerializableInstance;
|
|
728
|
+
RolloutValidation: RolloutValidation;
|
|
727
729
|
RootImportData: RootImportData;
|
|
728
730
|
RunningAverageItemDouble: RunningAverageItemDouble;
|
|
729
731
|
RunningAverageItemInt: RunningAverageItemInt;
|
|
@@ -10435,6 +10437,21 @@ interface PlatformFriendsService extends Instance {
|
|
|
10435
10437
|
*/
|
|
10436
10438
|
readonly _nominal_PlatformFriendsService: unique symbol;
|
|
10437
10439
|
}
|
|
10440
|
+
/**
|
|
10441
|
+
* - **Tags**: NotCreatable, Service
|
|
10442
|
+
*
|
|
10443
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlatformLibraries)
|
|
10444
|
+
*/
|
|
10445
|
+
interface PlatformLibraries extends Instance {
|
|
10446
|
+
/**
|
|
10447
|
+
* **DO NOT USE!**
|
|
10448
|
+
*
|
|
10449
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
10450
|
+
* @hidden
|
|
10451
|
+
* @deprecated
|
|
10452
|
+
*/
|
|
10453
|
+
readonly _nominal_PlatformLibraries: unique symbol;
|
|
10454
|
+
}
|
|
10438
10455
|
/**
|
|
10439
10456
|
* An object that represents a presently connected client to the experience.
|
|
10440
10457
|
*
|
|
@@ -11782,6 +11799,21 @@ interface RobloxServerStorage extends Instance {
|
|
|
11782
11799
|
*/
|
|
11783
11800
|
readonly _nominal_RobloxServerStorage: unique symbol;
|
|
11784
11801
|
}
|
|
11802
|
+
/**
|
|
11803
|
+
* - **Tags**: NotCreatable
|
|
11804
|
+
*
|
|
11805
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RolloutValidation)
|
|
11806
|
+
*/
|
|
11807
|
+
interface RolloutValidation extends Instance {
|
|
11808
|
+
/**
|
|
11809
|
+
* **DO NOT USE!**
|
|
11810
|
+
*
|
|
11811
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
11812
|
+
* @hidden
|
|
11813
|
+
* @deprecated
|
|
11814
|
+
*/
|
|
11815
|
+
readonly _nominal_RolloutValidation: unique symbol;
|
|
11816
|
+
}
|
|
11785
11817
|
/**
|
|
11786
11818
|
* - **Tags**: NotCreatable, Service
|
|
11787
11819
|
*
|
|
@@ -13890,10 +13922,6 @@ interface StudioService extends Instance {
|
|
|
13890
13922
|
* - **ThreadSafety**: Unsafe
|
|
13891
13923
|
*
|
|
13892
13924
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioService#GizmoRaycast)
|
|
13893
|
-
* @param this Provides access to configuration of Roblox Studio and allows importing files from the user's file system.
|
|
13894
|
-
* @param origin
|
|
13895
|
-
* @param direction
|
|
13896
|
-
* @param raycastParams
|
|
13897
13925
|
*/
|
|
13898
13926
|
GizmoRaycast(this: StudioService, origin: Vector3, direction: Vector3, raycastParams?: RaycastParams): RaycastResult | undefined;
|
|
13899
13927
|
/**
|
|
@@ -16938,11 +16938,22 @@ declare namespace Enum {
|
|
|
16938
16938
|
EnumType: typeof globalThis.Enum.InstanceFileSyncStatus;
|
|
16939
16939
|
}
|
|
16940
16940
|
export const SyncedAsDescendant: SyncedAsDescendant;
|
|
16941
|
+
/**
|
|
16942
|
+
* The `Instance` is not currently being synced because the root of its sync tree is `Errored`.
|
|
16943
|
+
*
|
|
16944
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InstanceFileSyncStatus#AncestorErrored)
|
|
16945
|
+
*/
|
|
16946
|
+
export interface AncestorErrored extends globalThis.EnumItem {
|
|
16947
|
+
Name: "AncestorErrored";
|
|
16948
|
+
Value: 4;
|
|
16949
|
+
EnumType: typeof globalThis.Enum.InstanceFileSyncStatus;
|
|
16950
|
+
}
|
|
16951
|
+
export const AncestorErrored: AncestorErrored;
|
|
16941
16952
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.InstanceFileSyncStatus>;
|
|
16942
16953
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.InstanceFileSyncStatus | undefined;
|
|
16943
16954
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.InstanceFileSyncStatus | undefined;
|
|
16944
16955
|
}
|
|
16945
|
-
export type InstanceFileSyncStatus = InstanceFileSyncStatus.NotSynced | InstanceFileSyncStatus.Errored | InstanceFileSyncStatus.SyncedAsRoot | InstanceFileSyncStatus.SyncedAsDescendant;
|
|
16956
|
+
export type InstanceFileSyncStatus = InstanceFileSyncStatus.NotSynced | InstanceFileSyncStatus.Errored | InstanceFileSyncStatus.SyncedAsRoot | InstanceFileSyncStatus.SyncedAsDescendant | InstanceFileSyncStatus.AncestorErrored;
|
|
16946
16957
|
/**
|
|
16947
16958
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/IntermediateMeshGenerationResult)
|
|
16948
16959
|
*/
|
|
@@ -19088,6 +19099,15 @@ declare namespace Enum {
|
|
|
19088
19099
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
19089
19100
|
}
|
|
19090
19101
|
export const TrackpadPinch: TrackpadPinch;
|
|
19102
|
+
/**
|
|
19103
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseDelta)
|
|
19104
|
+
*/
|
|
19105
|
+
export interface MouseDelta extends globalThis.EnumItem {
|
|
19106
|
+
Name: "MouseDelta";
|
|
19107
|
+
Value: 1048;
|
|
19108
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
19109
|
+
}
|
|
19110
|
+
export const MouseDelta: MouseDelta;
|
|
19091
19111
|
/**
|
|
19092
19112
|
* **Deprecated:**
|
|
19093
19113
|
*
|
|
@@ -20192,7 +20212,7 @@ declare namespace Enum {
|
|
|
20192
20212
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.KeyCode | undefined;
|
|
20193
20213
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.KeyCode | undefined;
|
|
20194
20214
|
}
|
|
20195
|
-
export type KeyCode = KeyCode.Unknown | KeyCode.Backspace | KeyCode.Tab | KeyCode.Clear | KeyCode.Return | KeyCode.Pause | KeyCode.Escape | KeyCode.Space | KeyCode.QuotedDouble | KeyCode.Hash | KeyCode.Dollar | KeyCode.Percent | KeyCode.Ampersand | KeyCode.Quote | KeyCode.LeftParenthesis | KeyCode.RightParenthesis | KeyCode.Asterisk | KeyCode.Plus | KeyCode.Comma | KeyCode.Minus | KeyCode.Period | KeyCode.Slash | KeyCode.Zero | KeyCode.One | KeyCode.Two | KeyCode.Three | KeyCode.Four | KeyCode.Five | KeyCode.Six | KeyCode.Seven | KeyCode.Eight | KeyCode.Nine | KeyCode.Colon | KeyCode.Semicolon | KeyCode.LessThan | KeyCode.Equals | KeyCode.GreaterThan | KeyCode.Question | KeyCode.At | KeyCode.LeftBracket | KeyCode.BackSlash | KeyCode.RightBracket | KeyCode.Caret | KeyCode.Underscore | KeyCode.Backquote | KeyCode.A | KeyCode.B | KeyCode.C | KeyCode.D | KeyCode.E | KeyCode.F | KeyCode.G | KeyCode.H | KeyCode.I | KeyCode.J | KeyCode.K | KeyCode.L | KeyCode.M | KeyCode.N | KeyCode.O | KeyCode.P | KeyCode.Q | KeyCode.R | KeyCode.S | KeyCode.T | KeyCode.U | KeyCode.V | KeyCode.W | KeyCode.X | KeyCode.Y | KeyCode.Z | KeyCode.LeftCurly | KeyCode.Pipe | KeyCode.RightCurly | KeyCode.Tilde | KeyCode.Delete | KeyCode.KeypadZero | KeyCode.KeypadOne | KeyCode.KeypadTwo | KeyCode.KeypadThree | KeyCode.KeypadFour | KeyCode.KeypadFive | KeyCode.KeypadSix | KeyCode.KeypadSeven | KeyCode.KeypadEight | KeyCode.KeypadNine | KeyCode.KeypadPeriod | KeyCode.KeypadDivide | KeyCode.KeypadMultiply | KeyCode.KeypadMinus | KeyCode.KeypadPlus | KeyCode.KeypadEnter | KeyCode.KeypadEquals | KeyCode.Up | KeyCode.Down | KeyCode.Right | KeyCode.Left | KeyCode.Insert | KeyCode.Home | KeyCode.End | KeyCode.PageUp | KeyCode.PageDown | KeyCode.F1 | KeyCode.F2 | KeyCode.F3 | KeyCode.F4 | KeyCode.F5 | KeyCode.F6 | KeyCode.F7 | KeyCode.F8 | KeyCode.F9 | KeyCode.F10 | KeyCode.F11 | KeyCode.F12 | KeyCode.F13 | KeyCode.F14 | KeyCode.F15 | KeyCode.NumLock | KeyCode.CapsLock | KeyCode.ScrollLock | KeyCode.RightShift | KeyCode.LeftShift | KeyCode.RightControl | KeyCode.LeftControl | KeyCode.RightAlt | KeyCode.LeftAlt | KeyCode.RightMeta | KeyCode.LeftMeta | KeyCode.LeftSuper | KeyCode.RightSuper | KeyCode.Mode | KeyCode.Compose | KeyCode.Help | KeyCode.Print | KeyCode.SysReq | KeyCode.Break | KeyCode.Menu | KeyCode.Power | KeyCode.Euro | KeyCode.Undo | KeyCode.ButtonX | KeyCode.ButtonY | KeyCode.ButtonA | KeyCode.ButtonB | KeyCode.ButtonR1 | KeyCode.ButtonL1 | KeyCode.ButtonR2 | KeyCode.ButtonL2 | KeyCode.ButtonR3 | KeyCode.ButtonL3 | KeyCode.ButtonStart | KeyCode.ButtonSelect | KeyCode.DPadLeft | KeyCode.DPadRight | KeyCode.DPadUp | KeyCode.DPadDown | KeyCode.Thumbstick1 | KeyCode.Thumbstick2 | KeyCode.Thumbstick1Up | KeyCode.Thumbstick1Down | KeyCode.Thumbstick1Left | KeyCode.Thumbstick1Right | KeyCode.Thumbstick2Up | KeyCode.Thumbstick2Down | KeyCode.Thumbstick2Left | KeyCode.Thumbstick2Right | KeyCode.MouseLeftButton | KeyCode.MouseRightButton | KeyCode.MouseMiddleButton | KeyCode.MousePosition | KeyCode.Touch | KeyCode.MouseWheel | KeyCode.TrackpadPan | KeyCode.TrackpadPinch | KeyCode.World0 | KeyCode.World1 | KeyCode.World2 | KeyCode.World3 | KeyCode.World4 | KeyCode.World5 | KeyCode.World6 | KeyCode.World7 | KeyCode.World8 | KeyCode.World9 | KeyCode.World10 | KeyCode.World11 | KeyCode.World12 | KeyCode.World13 | KeyCode.World14 | KeyCode.World15 | KeyCode.World16 | KeyCode.World17 | KeyCode.World18 | KeyCode.World19 | KeyCode.World20 | KeyCode.World21 | KeyCode.World22 | KeyCode.World23 | KeyCode.World24 | KeyCode.World25 | KeyCode.World26 | KeyCode.World27 | KeyCode.World28 | KeyCode.World29 | KeyCode.World30 | KeyCode.World31 | KeyCode.World32 | KeyCode.World33 | KeyCode.World34 | KeyCode.World35 | KeyCode.World36 | KeyCode.World37 | KeyCode.World38 | KeyCode.World39 | KeyCode.World40 | KeyCode.World41 | KeyCode.World42 | KeyCode.World43 | KeyCode.World44 | KeyCode.World45 | KeyCode.World46 | KeyCode.World47 | KeyCode.World48 | KeyCode.World49 | KeyCode.World50 | KeyCode.World51 | KeyCode.World52 | KeyCode.World53 | KeyCode.World54 | KeyCode.World55 | KeyCode.World56 | KeyCode.World57 | KeyCode.World58 | KeyCode.World59 | KeyCode.World60 | KeyCode.World61 | KeyCode.World62 | KeyCode.World63 | KeyCode.World64 | KeyCode.World65 | KeyCode.World66 | KeyCode.World67 | KeyCode.World68 | KeyCode.World69 | KeyCode.World70 | KeyCode.World71 | KeyCode.World72 | KeyCode.World73 | KeyCode.World74 | KeyCode.World75 | KeyCode.World76 | KeyCode.World77 | KeyCode.World78 | KeyCode.World79 | KeyCode.World80 | KeyCode.World81 | KeyCode.World82 | KeyCode.World83 | KeyCode.World84 | KeyCode.World85 | KeyCode.World86 | KeyCode.World87 | KeyCode.World88 | KeyCode.World89 | KeyCode.World90 | KeyCode.World91 | KeyCode.World92 | KeyCode.World93 | KeyCode.World94 | KeyCode.World95 | KeyCode.MouseBackButton | KeyCode.MouseNoButton | KeyCode.MouseX | KeyCode.MouseY;
|
|
20215
|
+
export type KeyCode = KeyCode.Unknown | KeyCode.Backspace | KeyCode.Tab | KeyCode.Clear | KeyCode.Return | KeyCode.Pause | KeyCode.Escape | KeyCode.Space | KeyCode.QuotedDouble | KeyCode.Hash | KeyCode.Dollar | KeyCode.Percent | KeyCode.Ampersand | KeyCode.Quote | KeyCode.LeftParenthesis | KeyCode.RightParenthesis | KeyCode.Asterisk | KeyCode.Plus | KeyCode.Comma | KeyCode.Minus | KeyCode.Period | KeyCode.Slash | KeyCode.Zero | KeyCode.One | KeyCode.Two | KeyCode.Three | KeyCode.Four | KeyCode.Five | KeyCode.Six | KeyCode.Seven | KeyCode.Eight | KeyCode.Nine | KeyCode.Colon | KeyCode.Semicolon | KeyCode.LessThan | KeyCode.Equals | KeyCode.GreaterThan | KeyCode.Question | KeyCode.At | KeyCode.LeftBracket | KeyCode.BackSlash | KeyCode.RightBracket | KeyCode.Caret | KeyCode.Underscore | KeyCode.Backquote | KeyCode.A | KeyCode.B | KeyCode.C | KeyCode.D | KeyCode.E | KeyCode.F | KeyCode.G | KeyCode.H | KeyCode.I | KeyCode.J | KeyCode.K | KeyCode.L | KeyCode.M | KeyCode.N | KeyCode.O | KeyCode.P | KeyCode.Q | KeyCode.R | KeyCode.S | KeyCode.T | KeyCode.U | KeyCode.V | KeyCode.W | KeyCode.X | KeyCode.Y | KeyCode.Z | KeyCode.LeftCurly | KeyCode.Pipe | KeyCode.RightCurly | KeyCode.Tilde | KeyCode.Delete | KeyCode.KeypadZero | KeyCode.KeypadOne | KeyCode.KeypadTwo | KeyCode.KeypadThree | KeyCode.KeypadFour | KeyCode.KeypadFive | KeyCode.KeypadSix | KeyCode.KeypadSeven | KeyCode.KeypadEight | KeyCode.KeypadNine | KeyCode.KeypadPeriod | KeyCode.KeypadDivide | KeyCode.KeypadMultiply | KeyCode.KeypadMinus | KeyCode.KeypadPlus | KeyCode.KeypadEnter | KeyCode.KeypadEquals | KeyCode.Up | KeyCode.Down | KeyCode.Right | KeyCode.Left | KeyCode.Insert | KeyCode.Home | KeyCode.End | KeyCode.PageUp | KeyCode.PageDown | KeyCode.F1 | KeyCode.F2 | KeyCode.F3 | KeyCode.F4 | KeyCode.F5 | KeyCode.F6 | KeyCode.F7 | KeyCode.F8 | KeyCode.F9 | KeyCode.F10 | KeyCode.F11 | KeyCode.F12 | KeyCode.F13 | KeyCode.F14 | KeyCode.F15 | KeyCode.NumLock | KeyCode.CapsLock | KeyCode.ScrollLock | KeyCode.RightShift | KeyCode.LeftShift | KeyCode.RightControl | KeyCode.LeftControl | KeyCode.RightAlt | KeyCode.LeftAlt | KeyCode.RightMeta | KeyCode.LeftMeta | KeyCode.LeftSuper | KeyCode.RightSuper | KeyCode.Mode | KeyCode.Compose | KeyCode.Help | KeyCode.Print | KeyCode.SysReq | KeyCode.Break | KeyCode.Menu | KeyCode.Power | KeyCode.Euro | KeyCode.Undo | KeyCode.ButtonX | KeyCode.ButtonY | KeyCode.ButtonA | KeyCode.ButtonB | KeyCode.ButtonR1 | KeyCode.ButtonL1 | KeyCode.ButtonR2 | KeyCode.ButtonL2 | KeyCode.ButtonR3 | KeyCode.ButtonL3 | KeyCode.ButtonStart | KeyCode.ButtonSelect | KeyCode.DPadLeft | KeyCode.DPadRight | KeyCode.DPadUp | KeyCode.DPadDown | KeyCode.Thumbstick1 | KeyCode.Thumbstick2 | KeyCode.Thumbstick1Up | KeyCode.Thumbstick1Down | KeyCode.Thumbstick1Left | KeyCode.Thumbstick1Right | KeyCode.Thumbstick2Up | KeyCode.Thumbstick2Down | KeyCode.Thumbstick2Left | KeyCode.Thumbstick2Right | KeyCode.MouseLeftButton | KeyCode.MouseRightButton | KeyCode.MouseMiddleButton | KeyCode.MousePosition | KeyCode.Touch | KeyCode.MouseWheel | KeyCode.TrackpadPan | KeyCode.TrackpadPinch | KeyCode.MouseDelta | KeyCode.World0 | KeyCode.World1 | KeyCode.World2 | KeyCode.World3 | KeyCode.World4 | KeyCode.World5 | KeyCode.World6 | KeyCode.World7 | KeyCode.World8 | KeyCode.World9 | KeyCode.World10 | KeyCode.World11 | KeyCode.World12 | KeyCode.World13 | KeyCode.World14 | KeyCode.World15 | KeyCode.World16 | KeyCode.World17 | KeyCode.World18 | KeyCode.World19 | KeyCode.World20 | KeyCode.World21 | KeyCode.World22 | KeyCode.World23 | KeyCode.World24 | KeyCode.World25 | KeyCode.World26 | KeyCode.World27 | KeyCode.World28 | KeyCode.World29 | KeyCode.World30 | KeyCode.World31 | KeyCode.World32 | KeyCode.World33 | KeyCode.World34 | KeyCode.World35 | KeyCode.World36 | KeyCode.World37 | KeyCode.World38 | KeyCode.World39 | KeyCode.World40 | KeyCode.World41 | KeyCode.World42 | KeyCode.World43 | KeyCode.World44 | KeyCode.World45 | KeyCode.World46 | KeyCode.World47 | KeyCode.World48 | KeyCode.World49 | KeyCode.World50 | KeyCode.World51 | KeyCode.World52 | KeyCode.World53 | KeyCode.World54 | KeyCode.World55 | KeyCode.World56 | KeyCode.World57 | KeyCode.World58 | KeyCode.World59 | KeyCode.World60 | KeyCode.World61 | KeyCode.World62 | KeyCode.World63 | KeyCode.World64 | KeyCode.World65 | KeyCode.World66 | KeyCode.World67 | KeyCode.World68 | KeyCode.World69 | KeyCode.World70 | KeyCode.World71 | KeyCode.World72 | KeyCode.World73 | KeyCode.World74 | KeyCode.World75 | KeyCode.World76 | KeyCode.World77 | KeyCode.World78 | KeyCode.World79 | KeyCode.World80 | KeyCode.World81 | KeyCode.World82 | KeyCode.World83 | KeyCode.World84 | KeyCode.World85 | KeyCode.World86 | KeyCode.World87 | KeyCode.World88 | KeyCode.World89 | KeyCode.World90 | KeyCode.World91 | KeyCode.World92 | KeyCode.World93 | KeyCode.World94 | KeyCode.World95 | KeyCode.MouseBackButton | KeyCode.MouseNoButton | KeyCode.MouseX | KeyCode.MouseY;
|
|
20196
20216
|
/**
|
|
20197
20217
|
* Describes the interpolation method between two keys.
|
|
20198
20218
|
*
|