@rbxts/types 1.0.765 → 1.0.767
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;
|
|
@@ -1438,6 +1439,7 @@ interface AnalyticsService extends Instance {
|
|
|
1438
1439
|
* * [AnalyticsService:FirePlayerProgressionEvent](https://developer.roblox.com/en-us/api-reference/function/AnalyticsService/FirePlayerProgressionEvent), triggers an event used to track player progression through the game
|
|
1439
1440
|
* * [AnalyticsService:FireInGameEconomyEvent](https://developer.roblox.com/en-us/api-reference/function/AnalyticsService/FireInGameEconomyEvent), triggers an event used to track player actions pertaining to the in-game economy
|
|
1440
1441
|
* * [AnalyticsService:FireLogEvent](https://developer.roblox.com/en-us/api-reference/function/AnalyticsService/FireLogEvent), triggers an event used to track errors and warnings experienced by players
|
|
1442
|
+
* @deprecated
|
|
1441
1443
|
*/
|
|
1442
1444
|
FireCustomEvent(
|
|
1443
1445
|
this: AnalyticsService,
|
|
@@ -1497,6 +1499,7 @@ interface AnalyticsService extends Instance {
|
|
|
1497
1499
|
* * [AnalyticsService:FirePlayerProgressionEvent](https://developer.roblox.com/en-us/api-reference/function/AnalyticsService/FirePlayerProgressionEvent), triggers an event used to track player progression through the game
|
|
1498
1500
|
* * [AnalyticsService:FireLogEvent](https://developer.roblox.com/en-us/api-reference/function/AnalyticsService/FireLogEvent), triggers an event used to track errors and warnings experienced by players
|
|
1499
1501
|
* * [AnalyticsService:FireCustomEvent](https://developer.roblox.com/en-us/api-reference/function/AnalyticsService/FireCustomEvent), triggers an event used to emit a custom event
|
|
1502
|
+
* @deprecated
|
|
1500
1503
|
*/
|
|
1501
1504
|
FireInGameEconomyEvent(
|
|
1502
1505
|
this: AnalyticsService,
|
|
@@ -1554,6 +1557,7 @@ interface AnalyticsService extends Instance {
|
|
|
1554
1557
|
* * [AnalyticsService:FireInGameEconomyEvent](https://developer.roblox.com/en-us/api-reference/function/AnalyticsService/FireInGameEconomyEvent), triggers an event used to track player actions pertaining to the in-game economy
|
|
1555
1558
|
* * [AnalyticsService:FirePlayerProgressionEvent](https://developer.roblox.com/en-us/api-reference/function/AnalyticsService/FirePlayerProgressionEvent), triggers an event used to track player progression through the game
|
|
1556
1559
|
* * [AnalyticsService:FireCustomEvent](https://developer.roblox.com/en-us/api-reference/function/AnalyticsService/FireCustomEvent), triggers an event used to emit a custom event
|
|
1560
|
+
* @deprecated
|
|
1557
1561
|
*/
|
|
1558
1562
|
FireLogEvent(
|
|
1559
1563
|
this: AnalyticsService,
|
|
@@ -1611,6 +1615,7 @@ interface AnalyticsService extends Instance {
|
|
|
1611
1615
|
* * [AnalyticsService:FireInGameEconomyEvent](https://developer.roblox.com/en-us/api-reference/function/AnalyticsService/FireInGameEconomyEvent), triggers an event used to track player actions pertaining to the in-game economy
|
|
1612
1616
|
* * [AnalyticsService:FireLogEvent](https://developer.roblox.com/en-us/api-reference/function/AnalyticsService/FireLogEvent), triggers an event used to track errors and warnings experienced by players
|
|
1613
1617
|
* * [AnalyticsService:FireCustomEvent](https://developer.roblox.com/en-us/api-reference/function/AnalyticsService/FireCustomEvent), triggers an event used to emit a custom event
|
|
1618
|
+
* @deprecated
|
|
1614
1619
|
*/
|
|
1615
1620
|
FirePlayerProgressionEvent(
|
|
1616
1621
|
this: AnalyticsService,
|
|
@@ -1621,6 +1626,13 @@ interface AnalyticsService extends Instance {
|
|
|
1621
1626
|
statistics?: { [index: string]: number },
|
|
1622
1627
|
customData?: unknown,
|
|
1623
1628
|
): void;
|
|
1629
|
+
LogEconomyEvent(this: AnalyticsService, player: Player, flowType: CastsToEnum<Enum.AnalyticsEconomyFlowType>, currencyType: string, endingBalance: number, amount: number, transactionType: string, itemSku: string, customFields: Array<any>): void;
|
|
1630
|
+
LogFunnelStepEvent(this: AnalyticsService, player: Player, funnelName: string, step: number, customFields: Array<any>): void;
|
|
1631
|
+
LogOnboardingFunnelStepEvent(this: AnalyticsService, player: Player, step: number, customFields: Array<any>): void;
|
|
1632
|
+
LogProgressionCompleteEvent(this: AnalyticsService, player: Player, level: number, levelName: string, customFields: Array<any>): void;
|
|
1633
|
+
LogProgressionEvent(this: AnalyticsService, player: Player, status: CastsToEnum<Enum.AnalyticsProgressionType>, level: number, levelName: string, customFields: Array<any>): void;
|
|
1634
|
+
LogProgressionFailEvent(this: AnalyticsService, player: Player, level: number, levelName: string, customFields: Array<any>): void;
|
|
1635
|
+
LogProgressionStartEvent(this: AnalyticsService, player: Player, level: number, levelName: string, customFields: Array<any>): void;
|
|
1624
1636
|
}
|
|
1625
1637
|
|
|
1626
1638
|
/** An object that references an animation asset (AnimationId) which can be loaded by a [Humanoid](https://developer.roblox.com/en-us/api-reference/class/Humanoid) or [AnimationController](https://developer.roblox.com/en-us/api-reference/class/AnimationController)
|
|
@@ -2771,6 +2783,7 @@ interface AudioAnalyzer extends Instance {
|
|
|
2771
2783
|
* Tags: NotReplicated
|
|
2772
2784
|
*/
|
|
2773
2785
|
readonly RmsLevel: number;
|
|
2786
|
+
GetConnectedWires(this: AudioAnalyzer, pin: string): unknown;
|
|
2774
2787
|
/**
|
|
2775
2788
|
* Tags: CustomLuaState
|
|
2776
2789
|
*/
|
|
@@ -2789,6 +2802,7 @@ interface AudioChorus extends Instance {
|
|
|
2789
2802
|
Depth: number;
|
|
2790
2803
|
Mix: number;
|
|
2791
2804
|
Rate: number;
|
|
2805
|
+
GetConnectedWires(this: AudioChorus, pin: string): unknown;
|
|
2792
2806
|
}
|
|
2793
2807
|
|
|
2794
2808
|
interface AudioCompressor extends Instance {
|
|
@@ -2805,6 +2819,7 @@ interface AudioCompressor extends Instance {
|
|
|
2805
2819
|
Ratio: number;
|
|
2806
2820
|
Release: number;
|
|
2807
2821
|
Threshold: number;
|
|
2822
|
+
GetConnectedWires(this: AudioCompressor, pin: string): unknown;
|
|
2808
2823
|
}
|
|
2809
2824
|
|
|
2810
2825
|
interface AudioDeviceInput extends Instance {
|
|
@@ -2820,6 +2835,7 @@ interface AudioDeviceInput extends Instance {
|
|
|
2820
2835
|
readonly Active: boolean;
|
|
2821
2836
|
Muted: boolean;
|
|
2822
2837
|
Player: Player | undefined;
|
|
2838
|
+
GetConnectedWires(this: AudioDeviceInput, pin: string): unknown;
|
|
2823
2839
|
GetUserIdAccessList(this: AudioDeviceInput): unknown;
|
|
2824
2840
|
SetUserIdAccessList(this: AudioDeviceInput, userIds: Array<any>): void;
|
|
2825
2841
|
}
|
|
@@ -2834,6 +2850,7 @@ interface AudioDeviceOutput extends Instance {
|
|
|
2834
2850
|
*/
|
|
2835
2851
|
readonly _nominal_AudioDeviceOutput: unique symbol;
|
|
2836
2852
|
Player: Player | undefined;
|
|
2853
|
+
GetConnectedWires(this: AudioDeviceOutput, pin: string): unknown;
|
|
2837
2854
|
}
|
|
2838
2855
|
|
|
2839
2856
|
interface AudioDistortion extends Instance {
|
|
@@ -2846,6 +2863,7 @@ interface AudioDistortion extends Instance {
|
|
|
2846
2863
|
*/
|
|
2847
2864
|
readonly _nominal_AudioDistortion: unique symbol;
|
|
2848
2865
|
Level: number;
|
|
2866
|
+
GetConnectedWires(this: AudioDistortion, pin: string): unknown;
|
|
2849
2867
|
}
|
|
2850
2868
|
|
|
2851
2869
|
interface AudioEcho extends Instance {
|
|
@@ -2861,6 +2879,7 @@ interface AudioEcho extends Instance {
|
|
|
2861
2879
|
DryLevel: number;
|
|
2862
2880
|
Feedback: number;
|
|
2863
2881
|
WetLevel: number;
|
|
2882
|
+
GetConnectedWires(this: AudioEcho, pin: string): unknown;
|
|
2864
2883
|
}
|
|
2865
2884
|
|
|
2866
2885
|
interface AudioEmitter extends Instance {
|
|
@@ -2873,6 +2892,7 @@ interface AudioEmitter extends Instance {
|
|
|
2873
2892
|
*/
|
|
2874
2893
|
readonly _nominal_AudioEmitter: unique symbol;
|
|
2875
2894
|
AudioInteractionGroup: string;
|
|
2895
|
+
GetConnectedWires(this: AudioEmitter, pin: string): unknown;
|
|
2876
2896
|
}
|
|
2877
2897
|
|
|
2878
2898
|
interface AudioEqualizer extends Instance {
|
|
@@ -2888,6 +2908,7 @@ interface AudioEqualizer extends Instance {
|
|
|
2888
2908
|
LowGain: number;
|
|
2889
2909
|
MidGain: number;
|
|
2890
2910
|
MidRange: NumberRange;
|
|
2911
|
+
GetConnectedWires(this: AudioEqualizer, pin: string): unknown;
|
|
2891
2912
|
}
|
|
2892
2913
|
|
|
2893
2914
|
interface AudioFader extends Instance {
|
|
@@ -2900,6 +2921,7 @@ interface AudioFader extends Instance {
|
|
|
2900
2921
|
*/
|
|
2901
2922
|
readonly _nominal_AudioFader: unique symbol;
|
|
2902
2923
|
Volume: number;
|
|
2924
|
+
GetConnectedWires(this: AudioFader, pin: string): unknown;
|
|
2903
2925
|
}
|
|
2904
2926
|
|
|
2905
2927
|
interface AudioFlanger extends Instance {
|
|
@@ -2914,6 +2936,7 @@ interface AudioFlanger extends Instance {
|
|
|
2914
2936
|
Depth: number;
|
|
2915
2937
|
Mix: number;
|
|
2916
2938
|
Rate: number;
|
|
2939
|
+
GetConnectedWires(this: AudioFlanger, pin: string): unknown;
|
|
2917
2940
|
}
|
|
2918
2941
|
|
|
2919
2942
|
interface AudioListener extends Instance {
|
|
@@ -2926,6 +2949,7 @@ interface AudioListener extends Instance {
|
|
|
2926
2949
|
*/
|
|
2927
2950
|
readonly _nominal_AudioListener: unique symbol;
|
|
2928
2951
|
AudioInteractionGroup: string;
|
|
2952
|
+
GetConnectedWires(this: AudioListener, pin: string): unknown;
|
|
2929
2953
|
}
|
|
2930
2954
|
|
|
2931
2955
|
interface AudioPitchShifter extends Instance {
|
|
@@ -2938,6 +2962,7 @@ interface AudioPitchShifter extends Instance {
|
|
|
2938
2962
|
*/
|
|
2939
2963
|
readonly _nominal_AudioPitchShifter: unique symbol;
|
|
2940
2964
|
Pitch: number;
|
|
2965
|
+
GetConnectedWires(this: AudioPitchShifter, pin: string): unknown;
|
|
2941
2966
|
}
|
|
2942
2967
|
|
|
2943
2968
|
interface AudioPlayer extends Instance {
|
|
@@ -2965,6 +2990,7 @@ interface AudioPlayer extends Instance {
|
|
|
2965
2990
|
*/
|
|
2966
2991
|
readonly TimeLength: number;
|
|
2967
2992
|
TimePosition: number;
|
|
2993
|
+
GetConnectedWires(this: AudioPlayer, pin: string): unknown;
|
|
2968
2994
|
Play(this: AudioPlayer): void;
|
|
2969
2995
|
Stop(this: AudioPlayer): void;
|
|
2970
2996
|
readonly Ended: RBXScriptSignal<() => void>;
|
|
@@ -2992,6 +3018,7 @@ interface AudioReverb extends Instance {
|
|
|
2992
3018
|
LowShelfGain: number;
|
|
2993
3019
|
ReferenceFrequency: number;
|
|
2994
3020
|
WetLevel: number;
|
|
3021
|
+
GetConnectedWires(this: AudioReverb, pin: string): unknown;
|
|
2995
3022
|
}
|
|
2996
3023
|
|
|
2997
3024
|
interface AudioSearchParams extends Instance {
|
|
@@ -9727,7 +9754,7 @@ interface EditableMesh extends DataModelMesh {
|
|
|
9727
9754
|
/**
|
|
9728
9755
|
* Tags: Yields
|
|
9729
9756
|
*/
|
|
9730
|
-
CreateMeshPartAsync(this: EditableMesh,
|
|
9757
|
+
CreateMeshPartAsync(this: EditableMesh, options?: object): MeshPart;
|
|
9731
9758
|
}
|
|
9732
9759
|
|
|
9733
9760
|
interface RobloxEditableMesh extends EditableMesh {
|
|
@@ -10730,6 +10757,17 @@ interface EventIngestService extends Instance {
|
|
|
10730
10757
|
readonly _nominal_EventIngestService: unique symbol;
|
|
10731
10758
|
}
|
|
10732
10759
|
|
|
10760
|
+
interface ExampleService extends Instance {
|
|
10761
|
+
/**
|
|
10762
|
+
* **DO NOT USE!**
|
|
10763
|
+
*
|
|
10764
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
10765
|
+
* @hidden
|
|
10766
|
+
* @deprecated
|
|
10767
|
+
*/
|
|
10768
|
+
readonly _nominal_ExampleService: unique symbol;
|
|
10769
|
+
}
|
|
10770
|
+
|
|
10733
10771
|
interface ExperienceAuthService extends Instance {
|
|
10734
10772
|
/**
|
|
10735
10773
|
* **DO NOT USE!**
|
|
@@ -154,7 +154,7 @@ interface Animator extends Instance {
|
|
|
154
154
|
StepAnimations(this: Animator, deltaTime: number): void;
|
|
155
155
|
}
|
|
156
156
|
|
|
157
|
-
interface
|
|
157
|
+
interface AssetService extends Instance {
|
|
158
158
|
/**
|
|
159
159
|
* **DO NOT USE!**
|
|
160
160
|
*
|
|
@@ -162,176 +162,11 @@ interface AudioAnalyzer extends Instance {
|
|
|
162
162
|
* @hidden
|
|
163
163
|
* @deprecated
|
|
164
164
|
*/
|
|
165
|
-
readonly
|
|
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 {
|
|
165
|
+
readonly _nominal_AssetService: unique symbol;
|
|
206
166
|
/**
|
|
207
|
-
*
|
|
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
|
|
167
|
+
* Tags: Yields
|
|
332
168
|
*/
|
|
333
|
-
|
|
334
|
-
GetConnectedWires(this: AudioReverb, pin: string): unknown;
|
|
169
|
+
CreateMeshPartAsync(this: AssetService, meshId: string, options?: object): MeshPart;
|
|
335
170
|
}
|
|
336
171
|
|
|
337
172
|
/** 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.
|
|
@@ -560,6 +560,80 @@ declare namespace Enum {
|
|
|
560
560
|
}
|
|
561
561
|
export type AnalyticsEconomyAction = AnalyticsEconomyAction.Default | AnalyticsEconomyAction.Acquire | AnalyticsEconomyAction.Spend;
|
|
562
562
|
|
|
563
|
+
export namespace AnalyticsEconomyFlowType {
|
|
564
|
+
export interface Sink extends globalThis.EnumItem {
|
|
565
|
+
Name: "Sink";
|
|
566
|
+
Value: 0;
|
|
567
|
+
EnumType: typeof globalThis.Enum.AnalyticsEconomyFlowType;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
export const Sink: Sink;
|
|
571
|
+
|
|
572
|
+
export interface Source extends globalThis.EnumItem {
|
|
573
|
+
Name: "Source";
|
|
574
|
+
Value: 1;
|
|
575
|
+
EnumType: typeof globalThis.Enum.AnalyticsEconomyFlowType;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
export const Source: Source;
|
|
579
|
+
|
|
580
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnalyticsEconomyFlowType>;
|
|
581
|
+
}
|
|
582
|
+
export type AnalyticsEconomyFlowType = AnalyticsEconomyFlowType.Sink | AnalyticsEconomyFlowType.Source;
|
|
583
|
+
|
|
584
|
+
export namespace AnalyticsEconomyTransactionType {
|
|
585
|
+
export interface IAP extends globalThis.EnumItem {
|
|
586
|
+
Name: "IAP";
|
|
587
|
+
Value: 0;
|
|
588
|
+
EnumType: typeof globalThis.Enum.AnalyticsEconomyTransactionType;
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
export const IAP: IAP;
|
|
592
|
+
|
|
593
|
+
export interface Shop extends globalThis.EnumItem {
|
|
594
|
+
Name: "Shop";
|
|
595
|
+
Value: 1;
|
|
596
|
+
EnumType: typeof globalThis.Enum.AnalyticsEconomyTransactionType;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
export const Shop: Shop;
|
|
600
|
+
|
|
601
|
+
export interface Gameplay extends globalThis.EnumItem {
|
|
602
|
+
Name: "Gameplay";
|
|
603
|
+
Value: 2;
|
|
604
|
+
EnumType: typeof globalThis.Enum.AnalyticsEconomyTransactionType;
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
export const Gameplay: Gameplay;
|
|
608
|
+
|
|
609
|
+
export interface ContextualPurchase extends globalThis.EnumItem {
|
|
610
|
+
Name: "ContextualPurchase";
|
|
611
|
+
Value: 3;
|
|
612
|
+
EnumType: typeof globalThis.Enum.AnalyticsEconomyTransactionType;
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
export const ContextualPurchase: ContextualPurchase;
|
|
616
|
+
|
|
617
|
+
export interface TimedReward extends globalThis.EnumItem {
|
|
618
|
+
Name: "TimedReward";
|
|
619
|
+
Value: 4;
|
|
620
|
+
EnumType: typeof globalThis.Enum.AnalyticsEconomyTransactionType;
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
export const TimedReward: TimedReward;
|
|
624
|
+
|
|
625
|
+
export interface Onboarding extends globalThis.EnumItem {
|
|
626
|
+
Name: "Onboarding";
|
|
627
|
+
Value: 5;
|
|
628
|
+
EnumType: typeof globalThis.Enum.AnalyticsEconomyTransactionType;
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
export const Onboarding: Onboarding;
|
|
632
|
+
|
|
633
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnalyticsEconomyTransactionType>;
|
|
634
|
+
}
|
|
635
|
+
export type AnalyticsEconomyTransactionType = AnalyticsEconomyTransactionType.IAP | AnalyticsEconomyTransactionType.Shop | AnalyticsEconomyTransactionType.Gameplay | AnalyticsEconomyTransactionType.ContextualPurchase | AnalyticsEconomyTransactionType.TimedReward | AnalyticsEconomyTransactionType.Onboarding;
|
|
636
|
+
|
|
563
637
|
export namespace AnalyticsLogLevel {
|
|
564
638
|
export interface Trace extends globalThis.EnumItem {
|
|
565
639
|
Name: "Trace";
|
|
@@ -658,6 +732,43 @@ declare namespace Enum {
|
|
|
658
732
|
}
|
|
659
733
|
export type AnalyticsProgressionStatus = AnalyticsProgressionStatus.Default | AnalyticsProgressionStatus.Begin | AnalyticsProgressionStatus.Complete | AnalyticsProgressionStatus.Abandon | AnalyticsProgressionStatus.Fail;
|
|
660
734
|
|
|
735
|
+
export namespace AnalyticsProgressionType {
|
|
736
|
+
export interface Custom extends globalThis.EnumItem {
|
|
737
|
+
Name: "Custom";
|
|
738
|
+
Value: 0;
|
|
739
|
+
EnumType: typeof globalThis.Enum.AnalyticsProgressionType;
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
export const Custom: Custom;
|
|
743
|
+
|
|
744
|
+
export interface Start extends globalThis.EnumItem {
|
|
745
|
+
Name: "Start";
|
|
746
|
+
Value: 1;
|
|
747
|
+
EnumType: typeof globalThis.Enum.AnalyticsProgressionType;
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
export const Start: Start;
|
|
751
|
+
|
|
752
|
+
export interface Fail extends globalThis.EnumItem {
|
|
753
|
+
Name: "Fail";
|
|
754
|
+
Value: 2;
|
|
755
|
+
EnumType: typeof globalThis.Enum.AnalyticsProgressionType;
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
export const Fail: Fail;
|
|
759
|
+
|
|
760
|
+
export interface Complete extends globalThis.EnumItem {
|
|
761
|
+
Name: "Complete";
|
|
762
|
+
Value: 3;
|
|
763
|
+
EnumType: typeof globalThis.Enum.AnalyticsProgressionType;
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
export const Complete: Complete;
|
|
767
|
+
|
|
768
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnalyticsProgressionType>;
|
|
769
|
+
}
|
|
770
|
+
export type AnalyticsProgressionType = AnalyticsProgressionType.Custom | AnalyticsProgressionType.Start | AnalyticsProgressionType.Fail | AnalyticsProgressionType.Complete;
|
|
771
|
+
|
|
661
772
|
export namespace AnimationClipFromVideoStatus {
|
|
662
773
|
export interface Initializing extends globalThis.EnumItem {
|
|
663
774
|
Name: "Initializing";
|
|
@@ -4791,6 +4902,14 @@ declare namespace Enum {
|
|
|
4791
4902
|
|
|
4792
4903
|
export const PlacelaunchUserPrivacyUnauthorized: PlacelaunchUserPrivacyUnauthorized;
|
|
4793
4904
|
|
|
4905
|
+
export interface PlacelaunchCreatorBan extends globalThis.EnumItem {
|
|
4906
|
+
Name: "PlacelaunchCreatorBan";
|
|
4907
|
+
Value: 600;
|
|
4908
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
4909
|
+
}
|
|
4910
|
+
|
|
4911
|
+
export const PlacelaunchCreatorBan: PlacelaunchCreatorBan;
|
|
4912
|
+
|
|
4794
4913
|
export interface PlacelaunchCustomMessage extends globalThis.EnumItem {
|
|
4795
4914
|
Name: "PlacelaunchCustomMessage";
|
|
4796
4915
|
Value: 610;
|
|
@@ -4873,7 +4992,7 @@ declare namespace Enum {
|
|
|
4873
4992
|
|
|
4874
4993
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ConnectionError>;
|
|
4875
4994
|
}
|
|
4876
|
-
export type ConnectionError = ConnectionError.OK | ConnectionError.Unknown | ConnectionError.DisconnectErrors | ConnectionError.DisconnectBadhash | ConnectionError.DisconnectSecurityKeyMismatch | ConnectionError.DisconnectProtocolMismatch | ConnectionError.DisconnectReceivePacketError | ConnectionError.DisconnectReceivePacketStreamError | ConnectionError.DisconnectSendPacketError | ConnectionError.DisconnectIllegalTeleport | ConnectionError.DisconnectDuplicatePlayer | ConnectionError.DisconnectDuplicateTicket | ConnectionError.DisconnectTimeout | ConnectionError.DisconnectLuaKick | ConnectionError.DisconnectOnRemoteSysStats | ConnectionError.DisconnectHashTimeout | ConnectionError.DisconnectCloudEditKick | ConnectionError.DisconnectPlayerless | ConnectionError.DisconnectNewSecurityKeyMismatch | ConnectionError.DisconnectEvicted | ConnectionError.DisconnectDevMaintenance | ConnectionError.DisconnectRobloxMaintenance | ConnectionError.DisconnectRejoin | ConnectionError.DisconnectConnectionLost | ConnectionError.DisconnectIdle | ConnectionError.DisconnectRaknetErrors | ConnectionError.DisconnectWrongVersion | ConnectionError.DisconnectBySecurityPolicy | ConnectionError.DisconnectBlockedIP | ConnectionError.DisconnectClientFailure | ConnectionError.DisconnectClientRequest | ConnectionError.DisconnectPrivateServerKickout | ConnectionError.DisconnectModeratedGame | ConnectionError.ServerShutdown | ConnectionError.ReplicatorTimeout | ConnectionError.PlayerRemoved | ConnectionError.DisconnectOutOfMemoryKeepPlayingLeave | ConnectionError.DisconnectRomarkEndOfTest | ConnectionError.DisconnectCollaboratorPermissionRevoked | ConnectionError.DisconnectCollaboratorUnderage | ConnectionError.NetworkInternal | ConnectionError.NetworkSend | ConnectionError.NetworkTimeout | ConnectionError.NetworkMisbehavior | ConnectionError.NetworkSecurity | ConnectionError.ReplacementReady | ConnectionError.PlacelaunchErrors | ConnectionError.PlacelaunchDisabled | ConnectionError.PlacelaunchError | ConnectionError.PlacelaunchGameEnded | ConnectionError.PlacelaunchGameFull | ConnectionError.PlacelaunchUserLeft | ConnectionError.PlacelaunchRestricted | ConnectionError.PlacelaunchUnauthorized | ConnectionError.PlacelaunchFlooded | ConnectionError.PlacelaunchHashExpired | ConnectionError.PlacelaunchHashException | ConnectionError.PlacelaunchPartyCannotFit | ConnectionError.PlacelaunchHttpError | ConnectionError.PlacelaunchUserPrivacyUnauthorized | ConnectionError.PlacelaunchCustomMessage | ConnectionError.PlacelaunchOtherError | ConnectionError.TeleportErrors | ConnectionError.TeleportFailure | ConnectionError.TeleportGameNotFound | ConnectionError.TeleportGameEnded | ConnectionError.TeleportGameFull | ConnectionError.TeleportUnauthorized | ConnectionError.TeleportFlooded | ConnectionError.TeleportIsTeleporting;
|
|
4995
|
+
export type ConnectionError = ConnectionError.OK | ConnectionError.Unknown | ConnectionError.DisconnectErrors | ConnectionError.DisconnectBadhash | ConnectionError.DisconnectSecurityKeyMismatch | ConnectionError.DisconnectProtocolMismatch | ConnectionError.DisconnectReceivePacketError | ConnectionError.DisconnectReceivePacketStreamError | ConnectionError.DisconnectSendPacketError | ConnectionError.DisconnectIllegalTeleport | ConnectionError.DisconnectDuplicatePlayer | ConnectionError.DisconnectDuplicateTicket | ConnectionError.DisconnectTimeout | ConnectionError.DisconnectLuaKick | ConnectionError.DisconnectOnRemoteSysStats | ConnectionError.DisconnectHashTimeout | ConnectionError.DisconnectCloudEditKick | ConnectionError.DisconnectPlayerless | ConnectionError.DisconnectNewSecurityKeyMismatch | ConnectionError.DisconnectEvicted | ConnectionError.DisconnectDevMaintenance | ConnectionError.DisconnectRobloxMaintenance | ConnectionError.DisconnectRejoin | ConnectionError.DisconnectConnectionLost | ConnectionError.DisconnectIdle | ConnectionError.DisconnectRaknetErrors | ConnectionError.DisconnectWrongVersion | ConnectionError.DisconnectBySecurityPolicy | ConnectionError.DisconnectBlockedIP | ConnectionError.DisconnectClientFailure | ConnectionError.DisconnectClientRequest | ConnectionError.DisconnectPrivateServerKickout | ConnectionError.DisconnectModeratedGame | ConnectionError.ServerShutdown | ConnectionError.ReplicatorTimeout | ConnectionError.PlayerRemoved | ConnectionError.DisconnectOutOfMemoryKeepPlayingLeave | ConnectionError.DisconnectRomarkEndOfTest | ConnectionError.DisconnectCollaboratorPermissionRevoked | ConnectionError.DisconnectCollaboratorUnderage | ConnectionError.NetworkInternal | ConnectionError.NetworkSend | ConnectionError.NetworkTimeout | ConnectionError.NetworkMisbehavior | ConnectionError.NetworkSecurity | ConnectionError.ReplacementReady | ConnectionError.PlacelaunchErrors | ConnectionError.PlacelaunchDisabled | ConnectionError.PlacelaunchError | ConnectionError.PlacelaunchGameEnded | ConnectionError.PlacelaunchGameFull | ConnectionError.PlacelaunchUserLeft | ConnectionError.PlacelaunchRestricted | ConnectionError.PlacelaunchUnauthorized | ConnectionError.PlacelaunchFlooded | ConnectionError.PlacelaunchHashExpired | ConnectionError.PlacelaunchHashException | ConnectionError.PlacelaunchPartyCannotFit | ConnectionError.PlacelaunchHttpError | ConnectionError.PlacelaunchUserPrivacyUnauthorized | ConnectionError.PlacelaunchCreatorBan | ConnectionError.PlacelaunchCustomMessage | ConnectionError.PlacelaunchOtherError | ConnectionError.TeleportErrors | ConnectionError.TeleportFailure | ConnectionError.TeleportGameNotFound | ConnectionError.TeleportGameEnded | ConnectionError.TeleportGameFull | ConnectionError.TeleportUnauthorized | ConnectionError.TeleportFlooded | ConnectionError.TeleportIsTeleporting;
|
|
4877
4996
|
|
|
4878
4997
|
export namespace ConnectionState {
|
|
4879
4998
|
export interface Connected extends globalThis.EnumItem {
|
|
@@ -7228,6 +7347,22 @@ declare namespace Enum {
|
|
|
7228
7347
|
|
|
7229
7348
|
export const BuilderSansExtraBold: BuilderSansExtraBold;
|
|
7230
7349
|
|
|
7350
|
+
export interface Arimo extends globalThis.EnumItem {
|
|
7351
|
+
Name: "Arimo";
|
|
7352
|
+
Value: 50;
|
|
7353
|
+
EnumType: typeof globalThis.Enum.Font;
|
|
7354
|
+
}
|
|
7355
|
+
|
|
7356
|
+
export const Arimo: Arimo;
|
|
7357
|
+
|
|
7358
|
+
export interface ArimoBold extends globalThis.EnumItem {
|
|
7359
|
+
Name: "ArimoBold";
|
|
7360
|
+
Value: 51;
|
|
7361
|
+
EnumType: typeof globalThis.Enum.Font;
|
|
7362
|
+
}
|
|
7363
|
+
|
|
7364
|
+
export const ArimoBold: ArimoBold;
|
|
7365
|
+
|
|
7231
7366
|
export interface Unknown extends globalThis.EnumItem {
|
|
7232
7367
|
Name: "Unknown";
|
|
7233
7368
|
Value: 100;
|
|
@@ -7238,7 +7373,7 @@ declare namespace Enum {
|
|
|
7238
7373
|
|
|
7239
7374
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.Font>;
|
|
7240
7375
|
}
|
|
7241
|
-
export type Font = Font.Legacy | Font.Arial | Font.ArialBold | Font.SourceSans | Font.SourceSansBold | Font.SourceSansLight | Font.SourceSansItalic | Font.Bodoni | Font.Garamond | Font.Cartoon | Font.Code | Font.Highway | Font.SciFi | Font.Arcade | Font.Fantasy | Font.Antique | Font.SourceSansSemibold | Font.Gotham | Font.GothamMedium | Font.GothamBold | Font.GothamBlack | Font.AmaticSC | Font.Bangers | Font.Creepster | Font.DenkOne | Font.Fondamento | Font.FredokaOne | Font.GrenzeGotisch | Font.IndieFlower | Font.JosefinSans | Font.Jura | Font.Kalam | Font.LuckiestGuy | Font.Merriweather | Font.Michroma | Font.Nunito | Font.Oswald | Font.PatrickHand | Font.PermanentMarker | Font.Roboto | Font.RobotoCondensed | Font.RobotoMono | Font.Sarpanch | Font.SpecialElite | Font.TitilliumWeb | Font.Ubuntu | Font.BuilderSans | Font.BuilderSansMedium | Font.BuilderSansBold | Font.BuilderSansExtraBold | Font.Unknown;
|
|
7376
|
+
export type Font = Font.Legacy | Font.Arial | Font.ArialBold | Font.SourceSans | Font.SourceSansBold | Font.SourceSansLight | Font.SourceSansItalic | Font.Bodoni | Font.Garamond | Font.Cartoon | Font.Code | Font.Highway | Font.SciFi | Font.Arcade | Font.Fantasy | Font.Antique | Font.SourceSansSemibold | Font.Gotham | Font.GothamMedium | Font.GothamBold | Font.GothamBlack | Font.AmaticSC | Font.Bangers | Font.Creepster | Font.DenkOne | Font.Fondamento | Font.FredokaOne | Font.GrenzeGotisch | Font.IndieFlower | Font.JosefinSans | Font.Jura | Font.Kalam | Font.LuckiestGuy | Font.Merriweather | Font.Michroma | Font.Nunito | Font.Oswald | Font.PatrickHand | Font.PermanentMarker | Font.Roboto | Font.RobotoCondensed | Font.RobotoMono | Font.Sarpanch | Font.SpecialElite | Font.TitilliumWeb | Font.Ubuntu | Font.BuilderSans | Font.BuilderSansMedium | Font.BuilderSansBold | Font.BuilderSansExtraBold | Font.Arimo | Font.ArimoBold | Font.Unknown;
|
|
7242
7377
|
|
|
7243
7378
|
export namespace FontSize {
|
|
7244
7379
|
export interface Size8 extends globalThis.EnumItem {
|