@rbxts/types 1.0.765 → 1.0.766
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.
|
@@ -49,6 +49,7 @@ interface Services {
|
|
|
49
49
|
DraggerService: DraggerService;
|
|
50
50
|
EngineAPICloudProcessingService: EngineAPICloudProcessingService;
|
|
51
51
|
EventIngestService: EventIngestService;
|
|
52
|
+
ExampleService: ExampleService;
|
|
52
53
|
ExperienceAuthService: ExperienceAuthService;
|
|
53
54
|
ExperienceNotificationService: ExperienceNotificationService;
|
|
54
55
|
ExperienceService: ExperienceService;
|
|
@@ -2771,6 +2772,7 @@ interface AudioAnalyzer extends Instance {
|
|
|
2771
2772
|
* Tags: NotReplicated
|
|
2772
2773
|
*/
|
|
2773
2774
|
readonly RmsLevel: number;
|
|
2775
|
+
GetConnectedWires(this: AudioAnalyzer, pin: string): unknown;
|
|
2774
2776
|
/**
|
|
2775
2777
|
* Tags: CustomLuaState
|
|
2776
2778
|
*/
|
|
@@ -2789,6 +2791,7 @@ interface AudioChorus extends Instance {
|
|
|
2789
2791
|
Depth: number;
|
|
2790
2792
|
Mix: number;
|
|
2791
2793
|
Rate: number;
|
|
2794
|
+
GetConnectedWires(this: AudioChorus, pin: string): unknown;
|
|
2792
2795
|
}
|
|
2793
2796
|
|
|
2794
2797
|
interface AudioCompressor extends Instance {
|
|
@@ -2805,6 +2808,7 @@ interface AudioCompressor extends Instance {
|
|
|
2805
2808
|
Ratio: number;
|
|
2806
2809
|
Release: number;
|
|
2807
2810
|
Threshold: number;
|
|
2811
|
+
GetConnectedWires(this: AudioCompressor, pin: string): unknown;
|
|
2808
2812
|
}
|
|
2809
2813
|
|
|
2810
2814
|
interface AudioDeviceInput extends Instance {
|
|
@@ -2820,6 +2824,7 @@ interface AudioDeviceInput extends Instance {
|
|
|
2820
2824
|
readonly Active: boolean;
|
|
2821
2825
|
Muted: boolean;
|
|
2822
2826
|
Player: Player | undefined;
|
|
2827
|
+
GetConnectedWires(this: AudioDeviceInput, pin: string): unknown;
|
|
2823
2828
|
GetUserIdAccessList(this: AudioDeviceInput): unknown;
|
|
2824
2829
|
SetUserIdAccessList(this: AudioDeviceInput, userIds: Array<any>): void;
|
|
2825
2830
|
}
|
|
@@ -2834,6 +2839,7 @@ interface AudioDeviceOutput extends Instance {
|
|
|
2834
2839
|
*/
|
|
2835
2840
|
readonly _nominal_AudioDeviceOutput: unique symbol;
|
|
2836
2841
|
Player: Player | undefined;
|
|
2842
|
+
GetConnectedWires(this: AudioDeviceOutput, pin: string): unknown;
|
|
2837
2843
|
}
|
|
2838
2844
|
|
|
2839
2845
|
interface AudioDistortion extends Instance {
|
|
@@ -2846,6 +2852,7 @@ interface AudioDistortion extends Instance {
|
|
|
2846
2852
|
*/
|
|
2847
2853
|
readonly _nominal_AudioDistortion: unique symbol;
|
|
2848
2854
|
Level: number;
|
|
2855
|
+
GetConnectedWires(this: AudioDistortion, pin: string): unknown;
|
|
2849
2856
|
}
|
|
2850
2857
|
|
|
2851
2858
|
interface AudioEcho extends Instance {
|
|
@@ -2861,6 +2868,7 @@ interface AudioEcho extends Instance {
|
|
|
2861
2868
|
DryLevel: number;
|
|
2862
2869
|
Feedback: number;
|
|
2863
2870
|
WetLevel: number;
|
|
2871
|
+
GetConnectedWires(this: AudioEcho, pin: string): unknown;
|
|
2864
2872
|
}
|
|
2865
2873
|
|
|
2866
2874
|
interface AudioEmitter extends Instance {
|
|
@@ -2873,6 +2881,7 @@ interface AudioEmitter extends Instance {
|
|
|
2873
2881
|
*/
|
|
2874
2882
|
readonly _nominal_AudioEmitter: unique symbol;
|
|
2875
2883
|
AudioInteractionGroup: string;
|
|
2884
|
+
GetConnectedWires(this: AudioEmitter, pin: string): unknown;
|
|
2876
2885
|
}
|
|
2877
2886
|
|
|
2878
2887
|
interface AudioEqualizer extends Instance {
|
|
@@ -2888,6 +2897,7 @@ interface AudioEqualizer extends Instance {
|
|
|
2888
2897
|
LowGain: number;
|
|
2889
2898
|
MidGain: number;
|
|
2890
2899
|
MidRange: NumberRange;
|
|
2900
|
+
GetConnectedWires(this: AudioEqualizer, pin: string): unknown;
|
|
2891
2901
|
}
|
|
2892
2902
|
|
|
2893
2903
|
interface AudioFader extends Instance {
|
|
@@ -2900,6 +2910,7 @@ interface AudioFader extends Instance {
|
|
|
2900
2910
|
*/
|
|
2901
2911
|
readonly _nominal_AudioFader: unique symbol;
|
|
2902
2912
|
Volume: number;
|
|
2913
|
+
GetConnectedWires(this: AudioFader, pin: string): unknown;
|
|
2903
2914
|
}
|
|
2904
2915
|
|
|
2905
2916
|
interface AudioFlanger extends Instance {
|
|
@@ -2914,6 +2925,7 @@ interface AudioFlanger extends Instance {
|
|
|
2914
2925
|
Depth: number;
|
|
2915
2926
|
Mix: number;
|
|
2916
2927
|
Rate: number;
|
|
2928
|
+
GetConnectedWires(this: AudioFlanger, pin: string): unknown;
|
|
2917
2929
|
}
|
|
2918
2930
|
|
|
2919
2931
|
interface AudioListener extends Instance {
|
|
@@ -2926,6 +2938,7 @@ interface AudioListener extends Instance {
|
|
|
2926
2938
|
*/
|
|
2927
2939
|
readonly _nominal_AudioListener: unique symbol;
|
|
2928
2940
|
AudioInteractionGroup: string;
|
|
2941
|
+
GetConnectedWires(this: AudioListener, pin: string): unknown;
|
|
2929
2942
|
}
|
|
2930
2943
|
|
|
2931
2944
|
interface AudioPitchShifter extends Instance {
|
|
@@ -2938,6 +2951,7 @@ interface AudioPitchShifter extends Instance {
|
|
|
2938
2951
|
*/
|
|
2939
2952
|
readonly _nominal_AudioPitchShifter: unique symbol;
|
|
2940
2953
|
Pitch: number;
|
|
2954
|
+
GetConnectedWires(this: AudioPitchShifter, pin: string): unknown;
|
|
2941
2955
|
}
|
|
2942
2956
|
|
|
2943
2957
|
interface AudioPlayer extends Instance {
|
|
@@ -2965,6 +2979,7 @@ interface AudioPlayer extends Instance {
|
|
|
2965
2979
|
*/
|
|
2966
2980
|
readonly TimeLength: number;
|
|
2967
2981
|
TimePosition: number;
|
|
2982
|
+
GetConnectedWires(this: AudioPlayer, pin: string): unknown;
|
|
2968
2983
|
Play(this: AudioPlayer): void;
|
|
2969
2984
|
Stop(this: AudioPlayer): void;
|
|
2970
2985
|
readonly Ended: RBXScriptSignal<() => void>;
|
|
@@ -2992,6 +3007,7 @@ interface AudioReverb extends Instance {
|
|
|
2992
3007
|
LowShelfGain: number;
|
|
2993
3008
|
ReferenceFrequency: number;
|
|
2994
3009
|
WetLevel: number;
|
|
3010
|
+
GetConnectedWires(this: AudioReverb, pin: string): unknown;
|
|
2995
3011
|
}
|
|
2996
3012
|
|
|
2997
3013
|
interface AudioSearchParams extends Instance {
|
|
@@ -10730,6 +10746,17 @@ interface EventIngestService extends Instance {
|
|
|
10730
10746
|
readonly _nominal_EventIngestService: unique symbol;
|
|
10731
10747
|
}
|
|
10732
10748
|
|
|
10749
|
+
interface ExampleService extends Instance {
|
|
10750
|
+
/**
|
|
10751
|
+
* **DO NOT USE!**
|
|
10752
|
+
*
|
|
10753
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
10754
|
+
* @hidden
|
|
10755
|
+
* @deprecated
|
|
10756
|
+
*/
|
|
10757
|
+
readonly _nominal_ExampleService: unique symbol;
|
|
10758
|
+
}
|
|
10759
|
+
|
|
10733
10760
|
interface ExperienceAuthService extends Instance {
|
|
10734
10761
|
/**
|
|
10735
10762
|
* **DO NOT USE!**
|
|
@@ -154,186 +154,6 @@ interface Animator extends Instance {
|
|
|
154
154
|
StepAnimations(this: Animator, deltaTime: number): void;
|
|
155
155
|
}
|
|
156
156
|
|
|
157
|
-
interface AudioAnalyzer extends Instance {
|
|
158
|
-
/**
|
|
159
|
-
* **DO NOT USE!**
|
|
160
|
-
*
|
|
161
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
162
|
-
* @hidden
|
|
163
|
-
* @deprecated
|
|
164
|
-
*/
|
|
165
|
-
readonly _nominal_AudioAnalyzer: unique symbol;
|
|
166
|
-
GetConnectedWires(this: AudioAnalyzer, pin: string): unknown;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
interface AudioChorus extends Instance {
|
|
170
|
-
/**
|
|
171
|
-
* **DO NOT USE!**
|
|
172
|
-
*
|
|
173
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
174
|
-
* @hidden
|
|
175
|
-
* @deprecated
|
|
176
|
-
*/
|
|
177
|
-
readonly _nominal_AudioChorus: unique symbol;
|
|
178
|
-
GetConnectedWires(this: AudioChorus, pin: string): unknown;
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
interface AudioCompressor extends Instance {
|
|
182
|
-
/**
|
|
183
|
-
* **DO NOT USE!**
|
|
184
|
-
*
|
|
185
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
186
|
-
* @hidden
|
|
187
|
-
* @deprecated
|
|
188
|
-
*/
|
|
189
|
-
readonly _nominal_AudioCompressor: unique symbol;
|
|
190
|
-
GetConnectedWires(this: AudioCompressor, pin: string): unknown;
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
interface AudioDeviceInput extends Instance {
|
|
194
|
-
/**
|
|
195
|
-
* **DO NOT USE!**
|
|
196
|
-
*
|
|
197
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
198
|
-
* @hidden
|
|
199
|
-
* @deprecated
|
|
200
|
-
*/
|
|
201
|
-
readonly _nominal_AudioDeviceInput: unique symbol;
|
|
202
|
-
GetConnectedWires(this: AudioDeviceInput, pin: string): unknown;
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
interface AudioDeviceOutput extends Instance {
|
|
206
|
-
/**
|
|
207
|
-
* **DO NOT USE!**
|
|
208
|
-
*
|
|
209
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
210
|
-
* @hidden
|
|
211
|
-
* @deprecated
|
|
212
|
-
*/
|
|
213
|
-
readonly _nominal_AudioDeviceOutput: unique symbol;
|
|
214
|
-
GetConnectedWires(this: AudioDeviceOutput, pin: string): unknown;
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
interface AudioDistortion extends Instance {
|
|
218
|
-
/**
|
|
219
|
-
* **DO NOT USE!**
|
|
220
|
-
*
|
|
221
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
222
|
-
* @hidden
|
|
223
|
-
* @deprecated
|
|
224
|
-
*/
|
|
225
|
-
readonly _nominal_AudioDistortion: unique symbol;
|
|
226
|
-
GetConnectedWires(this: AudioDistortion, pin: string): unknown;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
interface AudioEcho extends Instance {
|
|
230
|
-
/**
|
|
231
|
-
* **DO NOT USE!**
|
|
232
|
-
*
|
|
233
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
234
|
-
* @hidden
|
|
235
|
-
* @deprecated
|
|
236
|
-
*/
|
|
237
|
-
readonly _nominal_AudioEcho: unique symbol;
|
|
238
|
-
GetConnectedWires(this: AudioEcho, pin: string): unknown;
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
interface AudioEmitter extends Instance {
|
|
242
|
-
/**
|
|
243
|
-
* **DO NOT USE!**
|
|
244
|
-
*
|
|
245
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
246
|
-
* @hidden
|
|
247
|
-
* @deprecated
|
|
248
|
-
*/
|
|
249
|
-
readonly _nominal_AudioEmitter: unique symbol;
|
|
250
|
-
GetConnectedWires(this: AudioEmitter, pin: string): unknown;
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
interface AudioEqualizer extends Instance {
|
|
254
|
-
/**
|
|
255
|
-
* **DO NOT USE!**
|
|
256
|
-
*
|
|
257
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
258
|
-
* @hidden
|
|
259
|
-
* @deprecated
|
|
260
|
-
*/
|
|
261
|
-
readonly _nominal_AudioEqualizer: unique symbol;
|
|
262
|
-
GetConnectedWires(this: AudioEqualizer, pin: string): unknown;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
interface AudioFader extends Instance {
|
|
266
|
-
/**
|
|
267
|
-
* **DO NOT USE!**
|
|
268
|
-
*
|
|
269
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
270
|
-
* @hidden
|
|
271
|
-
* @deprecated
|
|
272
|
-
*/
|
|
273
|
-
readonly _nominal_AudioFader: unique symbol;
|
|
274
|
-
GetConnectedWires(this: AudioFader, pin: string): unknown;
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
interface AudioFlanger extends Instance {
|
|
278
|
-
/**
|
|
279
|
-
* **DO NOT USE!**
|
|
280
|
-
*
|
|
281
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
282
|
-
* @hidden
|
|
283
|
-
* @deprecated
|
|
284
|
-
*/
|
|
285
|
-
readonly _nominal_AudioFlanger: unique symbol;
|
|
286
|
-
GetConnectedWires(this: AudioFlanger, pin: string): unknown;
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
interface AudioListener extends Instance {
|
|
290
|
-
/**
|
|
291
|
-
* **DO NOT USE!**
|
|
292
|
-
*
|
|
293
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
294
|
-
* @hidden
|
|
295
|
-
* @deprecated
|
|
296
|
-
*/
|
|
297
|
-
readonly _nominal_AudioListener: unique symbol;
|
|
298
|
-
GetConnectedWires(this: AudioListener, pin: string): unknown;
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
interface AudioPitchShifter extends Instance {
|
|
302
|
-
/**
|
|
303
|
-
* **DO NOT USE!**
|
|
304
|
-
*
|
|
305
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
306
|
-
* @hidden
|
|
307
|
-
* @deprecated
|
|
308
|
-
*/
|
|
309
|
-
readonly _nominal_AudioPitchShifter: unique symbol;
|
|
310
|
-
GetConnectedWires(this: AudioPitchShifter, pin: string): unknown;
|
|
311
|
-
}
|
|
312
|
-
|
|
313
|
-
interface AudioPlayer extends Instance {
|
|
314
|
-
/**
|
|
315
|
-
* **DO NOT USE!**
|
|
316
|
-
*
|
|
317
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
318
|
-
* @hidden
|
|
319
|
-
* @deprecated
|
|
320
|
-
*/
|
|
321
|
-
readonly _nominal_AudioPlayer: unique symbol;
|
|
322
|
-
GetConnectedWires(this: AudioPlayer, pin: string): unknown;
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
interface AudioReverb extends Instance {
|
|
326
|
-
/**
|
|
327
|
-
* **DO NOT USE!**
|
|
328
|
-
*
|
|
329
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
330
|
-
* @hidden
|
|
331
|
-
* @deprecated
|
|
332
|
-
*/
|
|
333
|
-
readonly _nominal_AudioReverb: unique symbol;
|
|
334
|
-
GetConnectedWires(this: AudioReverb, pin: string): unknown;
|
|
335
|
-
}
|
|
336
|
-
|
|
337
157
|
/** The CoreGui is a service used to store Guis created in-game by Roblox for the core user interface found in every game (such as the game menu, the playerlist, the backpack, etc.). It can also be used by [Plugins](https://developer.roblox.com/en-us/api-reference/class/Plugin) in Roblox Studio.
|
|
338
158
|
*
|
|
339
159
|
* You can use the [StarterGui:SetCoreGuiEnabled](https://developer.roblox.com/en-us/api-reference/function/StarterGui/SetCoreGuiEnabled) and [StarterGui:GetCoreGuiEnabled](https://developer.roblox.com/en-us/api-reference/function/StarterGui/GetCoreGuiEnabled) methods in a [LocalScript](https://developer.roblox.com/en-us/api-reference/class/LocalScript) to enable and disable most elements of the CoreGui. You can also use [PlayerGui:SetTopbarTransparency](https://developer.roblox.com/en-us/api-reference/function/PlayerGui/SetTopbarTransparency) to set the transparency of the top bar.
|