@rbxts/types 1.0.912 → 1.0.913
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/include/generated/None.d.ts +147 -46
- package/include/generated/PluginSecurity.d.ts +162 -17
- package/include/generated/enums.d.ts +212 -34
- package/package.json +1 -1
|
@@ -48,7 +48,6 @@ interface Services {
|
|
|
48
48
|
ContentProvider: ContentProvider;
|
|
49
49
|
ContextActionService: ContextActionService;
|
|
50
50
|
ControllerService: ControllerService;
|
|
51
|
-
ConversationalAIAcceptanceService: ConversationalAIAcceptanceService;
|
|
52
51
|
CoreGuiConfiguration: CoreGuiConfiguration;
|
|
53
52
|
CoreScriptDebuggingManagerHelper: CoreScriptDebuggingManagerHelper;
|
|
54
53
|
CreationDBService: CreationDBService;
|
|
@@ -60,6 +59,7 @@ interface Services {
|
|
|
60
59
|
DebuggablePluginWatcher: DebuggablePluginWatcher;
|
|
61
60
|
DebuggerConnectionManager: DebuggerConnectionManager;
|
|
62
61
|
DebuggerUIService: DebuggerUIService;
|
|
62
|
+
DeferredAssetManagerService: DeferredAssetManagerService;
|
|
63
63
|
DeviceIdService: DeviceIdService;
|
|
64
64
|
DraggerService: DraggerService;
|
|
65
65
|
EditableService: EditableService;
|
|
@@ -93,10 +93,12 @@ interface Services {
|
|
|
93
93
|
HeightmapImporterService: HeightmapImporterService;
|
|
94
94
|
HttpService: HttpService;
|
|
95
95
|
ILegacyStudioBridge: ILegacyStudioBridge;
|
|
96
|
+
ImageScreenCaptureService: ImageScreenCaptureService;
|
|
96
97
|
IncrementalPatchBuilder: IncrementalPatchBuilder;
|
|
97
98
|
InsertService: InsertService;
|
|
98
99
|
InstanceExtensionsService: InstanceExtensionsService;
|
|
99
100
|
InstanceFileSyncService: InstanceFileSyncService;
|
|
101
|
+
InternalMessagingService: InternalMessagingService;
|
|
100
102
|
InternalSyncService: InternalSyncService;
|
|
101
103
|
IXPService: IXPService;
|
|
102
104
|
JointsService: JointsService;
|
|
@@ -197,6 +199,7 @@ interface Services {
|
|
|
197
199
|
Stats: Stats;
|
|
198
200
|
StudioAssetService: StudioAssetService;
|
|
199
201
|
StudioCameraService: StudioCameraService;
|
|
202
|
+
StudioCaptureService: StudioCaptureService;
|
|
200
203
|
StudioDeviceEmulatorService: StudioDeviceEmulatorService;
|
|
201
204
|
StudioPublishService: StudioPublishService;
|
|
202
205
|
StudioScriptDebugEventListener: StudioScriptDebugEventListener;
|
|
@@ -702,6 +705,7 @@ interface Instances extends Services, CreatableInstances {
|
|
|
702
705
|
StarterCharacterScripts: StarterCharacterScripts;
|
|
703
706
|
StarterPlayerScripts: StarterPlayerScripts;
|
|
704
707
|
StudioObjectBase: StudioObjectBase;
|
|
708
|
+
StudioScreenshotCapture: StudioScreenshotCapture;
|
|
705
709
|
StudioWidget: StudioWidget;
|
|
706
710
|
StyleBase: StyleBase;
|
|
707
711
|
SurfaceGuiBase: SurfaceGuiBase;
|
|
@@ -3242,10 +3246,15 @@ interface AnalyticsService extends Instance {
|
|
|
3242
3246
|
*/
|
|
3243
3247
|
LogProgressionStartEvent(this: AnalyticsService, player: Player, progressionPathName: string, level: number, levelName?: string, customFields?: object): void;
|
|
3244
3248
|
/**
|
|
3249
|
+
* Returns coarse player segment buckets for the current experience.
|
|
3250
|
+
*
|
|
3245
3251
|
* - **ThreadSafety**: Unsafe
|
|
3246
3252
|
* - **Tags**: Yields
|
|
3247
3253
|
*
|
|
3248
3254
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#GetPlayerSegmentsAsync)
|
|
3255
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3256
|
+
* @param player The player whose segment buckets should be returned.
|
|
3257
|
+
* @returns A dictionary containing coarse player segment buckets for the current experience.
|
|
3249
3258
|
*/
|
|
3250
3259
|
GetPlayerSegmentsAsync(this: AnalyticsService, player: Player): object;
|
|
3251
3260
|
}
|
|
@@ -6669,6 +6678,12 @@ interface AudioPlayer extends Instance {
|
|
|
6669
6678
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#Volume)
|
|
6670
6679
|
*/
|
|
6671
6680
|
Volume: number;
|
|
6681
|
+
/**
|
|
6682
|
+
* - **ThreadSafety**: Unsafe
|
|
6683
|
+
*
|
|
6684
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#Cancel)
|
|
6685
|
+
*/
|
|
6686
|
+
Cancel(this: AudioPlayer, actionId?: number): boolean;
|
|
6672
6687
|
/**
|
|
6673
6688
|
* Returns an array of `Wires` that are connected to the specified pin.
|
|
6674
6689
|
*
|
|
@@ -6708,7 +6723,7 @@ interface AudioPlayer extends Instance {
|
|
|
6708
6723
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#Play)
|
|
6709
6724
|
* @param this Used to play audio assets.
|
|
6710
6725
|
*/
|
|
6711
|
-
Play(this: AudioPlayer):
|
|
6726
|
+
Play(this: AudioPlayer, atTime?: number): number | undefined;
|
|
6712
6727
|
/**
|
|
6713
6728
|
* Stops the `AudioPlayer` wherever its `TimePosition` is.
|
|
6714
6729
|
*
|
|
@@ -6717,7 +6732,7 @@ interface AudioPlayer extends Instance {
|
|
|
6717
6732
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#Stop)
|
|
6718
6733
|
* @param this Used to play audio assets.
|
|
6719
6734
|
*/
|
|
6720
|
-
Stop(this: AudioPlayer):
|
|
6735
|
+
Stop(this: AudioPlayer, atTime?: number): number | undefined;
|
|
6721
6736
|
/**
|
|
6722
6737
|
* Returns a sampling of the waveform data for the loaded `Asset`.
|
|
6723
6738
|
*
|
|
@@ -7571,6 +7586,12 @@ interface AuroraScriptService extends Instance {
|
|
|
7571
7586
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#FindBindings)
|
|
7572
7587
|
*/
|
|
7573
7588
|
FindBindings(this: AuroraScriptService, instance: Instance): object;
|
|
7589
|
+
/**
|
|
7590
|
+
* - **ThreadSafety**: Unsafe
|
|
7591
|
+
*
|
|
7592
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#GetAllCollections)
|
|
7593
|
+
*/
|
|
7594
|
+
GetAllCollections(this: AuroraScriptService): Array<unknown>;
|
|
7574
7595
|
/**
|
|
7575
7596
|
* - **ThreadSafety**: Safe
|
|
7576
7597
|
*
|
|
@@ -7681,9 +7702,9 @@ interface AuroraService extends Instance {
|
|
|
7681
7702
|
/**
|
|
7682
7703
|
* - **ThreadSafety**: Unsafe
|
|
7683
7704
|
*
|
|
7684
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#
|
|
7705
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#SetReplicationLag)
|
|
7685
7706
|
*/
|
|
7686
|
-
|
|
7707
|
+
SetReplicationLag(this: AuroraService, seconds: number): void;
|
|
7687
7708
|
/**
|
|
7688
7709
|
* - **ThreadSafety**: Unsafe
|
|
7689
7710
|
*
|
|
@@ -7732,12 +7753,6 @@ interface AuroraService extends Instance {
|
|
|
7732
7753
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#FixedRateTick)
|
|
7733
7754
|
*/
|
|
7734
7755
|
readonly FixedRateTick: RBXScriptSignal<(deltaTime: number, worldStepId: number) => void>;
|
|
7735
|
-
/**
|
|
7736
|
-
* - **ThreadSafety**: Unsafe
|
|
7737
|
-
*
|
|
7738
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#Misprediction)
|
|
7739
|
-
*/
|
|
7740
|
-
readonly Misprediction: RBXScriptSignal<(remoteWorldStepId: number, mispredictedInstances: Array<unknown>) => void>;
|
|
7741
7756
|
/**
|
|
7742
7757
|
* - **ThreadSafety**: Unsafe
|
|
7743
7758
|
*
|
|
@@ -14898,21 +14913,6 @@ interface ControllerService extends Instance {
|
|
|
14898
14913
|
*/
|
|
14899
14914
|
readonly _nominal_ControllerService: unique symbol;
|
|
14900
14915
|
}
|
|
14901
|
-
/**
|
|
14902
|
-
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
14903
|
-
*
|
|
14904
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConversationalAIAcceptanceService)
|
|
14905
|
-
*/
|
|
14906
|
-
interface ConversationalAIAcceptanceService extends Instance {
|
|
14907
|
-
/**
|
|
14908
|
-
* **DO NOT USE!**
|
|
14909
|
-
*
|
|
14910
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
14911
|
-
* @hidden
|
|
14912
|
-
* @deprecated
|
|
14913
|
-
*/
|
|
14914
|
-
readonly _nominal_ConversationalAIAcceptanceService: unique symbol;
|
|
14915
|
-
}
|
|
14916
14916
|
/**
|
|
14917
14917
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
14918
14918
|
*
|
|
@@ -15746,6 +15746,21 @@ interface DebuggerVariable extends Instance {
|
|
|
15746
15746
|
*/
|
|
15747
15747
|
readonly _nominal_DebuggerVariable: unique symbol;
|
|
15748
15748
|
}
|
|
15749
|
+
/**
|
|
15750
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
15751
|
+
*
|
|
15752
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DeferredAssetManagerService)
|
|
15753
|
+
*/
|
|
15754
|
+
interface DeferredAssetManagerService extends Instance {
|
|
15755
|
+
/**
|
|
15756
|
+
* **DO NOT USE!**
|
|
15757
|
+
*
|
|
15758
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
15759
|
+
* @hidden
|
|
15760
|
+
* @deprecated
|
|
15761
|
+
*/
|
|
15762
|
+
readonly _nominal_DeferredAssetManagerService: unique symbol;
|
|
15763
|
+
}
|
|
15749
15764
|
/**
|
|
15750
15765
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
15751
15766
|
*
|
|
@@ -18092,6 +18107,8 @@ interface DataStore extends GlobalDataStore {
|
|
|
18092
18107
|
*/
|
|
18093
18108
|
ListVersionsAsync(this: DataStore, key: string, sortDirection?: CastsToEnum<Enum.SortDirection>, minDate?: number, maxDate?: number, pageSize?: number): DataStoreVersionPages;
|
|
18094
18109
|
/**
|
|
18110
|
+
* **Deprecated:**
|
|
18111
|
+
*
|
|
18095
18112
|
* Permanently deletes the specified version of a key.
|
|
18096
18113
|
*
|
|
18097
18114
|
* - **ThreadSafety**: Unsafe
|
|
@@ -20054,7 +20071,7 @@ interface TextBox extends GuiObject {
|
|
|
20054
20071
|
*/
|
|
20055
20072
|
Font: Enum.Font;
|
|
20056
20073
|
/**
|
|
20057
|
-
* Determines the font used to render text.
|
|
20074
|
+
* Determines the font face used to render text.
|
|
20058
20075
|
*
|
|
20059
20076
|
* - **ThreadSafety**: ReadSafe
|
|
20060
20077
|
*
|
|
@@ -20091,7 +20108,7 @@ interface TextBox extends GuiObject {
|
|
|
20091
20108
|
*/
|
|
20092
20109
|
MaxVisibleGraphemes: number;
|
|
20093
20110
|
/**
|
|
20094
|
-
* When set to `true`, text inside a `TextBox` is able to move onto multiple lines.
|
|
20111
|
+
* When set to `true`, text inside a `TextBox` is able to move onto multiple lines.
|
|
20095
20112
|
*
|
|
20096
20113
|
* - **ThreadSafety**: ReadSafe
|
|
20097
20114
|
*
|
|
@@ -20112,7 +20129,7 @@ interface TextBox extends GuiObject {
|
|
|
20112
20129
|
*/
|
|
20113
20130
|
readonly OpenTypeFeaturesError: string;
|
|
20114
20131
|
/**
|
|
20115
|
-
* Sets the text color that gets used when no text has been entered into the `TextBox
|
|
20132
|
+
* Sets the text color that gets used when no text has been entered into the `TextBox`.
|
|
20116
20133
|
*
|
|
20117
20134
|
* - **ThreadSafety**: ReadSafe
|
|
20118
20135
|
*
|
|
@@ -20120,7 +20137,7 @@ interface TextBox extends GuiObject {
|
|
|
20120
20137
|
*/
|
|
20121
20138
|
PlaceholderColor3: Color3;
|
|
20122
20139
|
/**
|
|
20123
|
-
* Sets the text that gets displayed when no text has been entered into the `TextBox
|
|
20140
|
+
* Sets the text that gets displayed when no text has been entered into the `TextBox`.
|
|
20124
20141
|
*
|
|
20125
20142
|
* - **ThreadSafety**: ReadSafe
|
|
20126
20143
|
*
|
|
@@ -20128,7 +20145,7 @@ interface TextBox extends GuiObject {
|
|
|
20128
20145
|
*/
|
|
20129
20146
|
PlaceholderText: string;
|
|
20130
20147
|
/**
|
|
20131
|
-
* Determines whether the `TextBox` renders the `
|
|
20148
|
+
* Determines whether the `TextBox` renders the `Text` string using rich text formatting.
|
|
20132
20149
|
*
|
|
20133
20150
|
* - **ThreadSafety**: ReadSafe
|
|
20134
20151
|
*
|
|
@@ -20136,7 +20153,7 @@ interface TextBox extends GuiObject {
|
|
|
20136
20153
|
*/
|
|
20137
20154
|
RichText: boolean;
|
|
20138
20155
|
/**
|
|
20139
|
-
* Determines the starting position of a text selection
|
|
20156
|
+
* Determines the starting position of a text selection.
|
|
20140
20157
|
*
|
|
20141
20158
|
* - **ThreadSafety**: ReadSafe
|
|
20142
20159
|
*
|
|
@@ -20144,7 +20161,7 @@ interface TextBox extends GuiObject {
|
|
|
20144
20161
|
*/
|
|
20145
20162
|
SelectionStart: number;
|
|
20146
20163
|
/**
|
|
20147
|
-
* If set to true
|
|
20164
|
+
* If set to `true`, input native to the platform is used instead of Roblox's built-in keyboard.
|
|
20148
20165
|
*
|
|
20149
20166
|
* - **ThreadSafety**: ReadSafe
|
|
20150
20167
|
*
|
|
@@ -20152,7 +20169,7 @@ interface TextBox extends GuiObject {
|
|
|
20152
20169
|
*/
|
|
20153
20170
|
ShowNativeInput: boolean;
|
|
20154
20171
|
/**
|
|
20155
|
-
* Determines the string rendered by the
|
|
20172
|
+
* Determines the string rendered by the `TextBox` element.
|
|
20156
20173
|
*
|
|
20157
20174
|
* - **ThreadSafety**: ReadSafe
|
|
20158
20175
|
*
|
|
@@ -20160,7 +20177,7 @@ interface TextBox extends GuiObject {
|
|
|
20160
20177
|
*/
|
|
20161
20178
|
Text: string;
|
|
20162
20179
|
/**
|
|
20163
|
-
* The size of a
|
|
20180
|
+
* The size of a `TextBox` element's text in offsets.
|
|
20164
20181
|
*
|
|
20165
20182
|
* - **ThreadSafety**: ReadSafe
|
|
20166
20183
|
* - **Tags**: NotReplicated
|
|
@@ -20180,7 +20197,7 @@ interface TextBox extends GuiObject {
|
|
|
20180
20197
|
*/
|
|
20181
20198
|
TextColor: BrickColor;
|
|
20182
20199
|
/**
|
|
20183
|
-
* Determines the color of rendered text.
|
|
20200
|
+
* Determines the color of non-placeholder rendered text.
|
|
20184
20201
|
*
|
|
20185
20202
|
* - **ThreadSafety**: ReadSafe
|
|
20186
20203
|
*
|
|
@@ -20202,7 +20219,7 @@ interface TextBox extends GuiObject {
|
|
|
20202
20219
|
*/
|
|
20203
20220
|
TextEditable: boolean;
|
|
20204
20221
|
/**
|
|
20205
|
-
* Whether the text fits within the constraints of the TextBox
|
|
20222
|
+
* Whether the text fits within the constraints of the `TextBox`.
|
|
20206
20223
|
*
|
|
20207
20224
|
* - **ThreadSafety**: ReadSafe
|
|
20208
20225
|
* - **Tags**: NotReplicated
|
|
@@ -20211,7 +20228,7 @@ interface TextBox extends GuiObject {
|
|
|
20211
20228
|
*/
|
|
20212
20229
|
readonly TextFits: boolean;
|
|
20213
20230
|
/**
|
|
20214
|
-
* Changes whether text is resized to fit the
|
|
20231
|
+
* Changes whether text is resized to fit within the `TextBox`.
|
|
20215
20232
|
*
|
|
20216
20233
|
* - **ThreadSafety**: ReadSafe
|
|
20217
20234
|
*
|
|
@@ -20243,7 +20260,7 @@ interface TextBox extends GuiObject {
|
|
|
20243
20260
|
*/
|
|
20244
20261
|
TextStrokeTransparency: number;
|
|
20245
20262
|
/**
|
|
20246
|
-
* Determines the transparency of rendered text.
|
|
20263
|
+
* Determines the transparency of the rendered text.
|
|
20247
20264
|
*
|
|
20248
20265
|
* - **ThreadSafety**: ReadSafe
|
|
20249
20266
|
*
|
|
@@ -20251,7 +20268,7 @@ interface TextBox extends GuiObject {
|
|
|
20251
20268
|
*/
|
|
20252
20269
|
TextTransparency: number;
|
|
20253
20270
|
/**
|
|
20254
|
-
* Controls the truncation of the text displayed in
|
|
20271
|
+
* Controls the truncation of the text displayed in the `TextBox`.
|
|
20255
20272
|
*
|
|
20256
20273
|
* - **ThreadSafety**: ReadSafe
|
|
20257
20274
|
*
|
|
@@ -20270,7 +20287,7 @@ interface TextBox extends GuiObject {
|
|
|
20270
20287
|
*/
|
|
20271
20288
|
TextWrap: boolean;
|
|
20272
20289
|
/**
|
|
20273
|
-
* Determines if text wraps to multiple lines within the `
|
|
20290
|
+
* Determines if text wraps to multiple lines within the `TextBox` element space, truncating excess text.
|
|
20274
20291
|
*
|
|
20275
20292
|
* - **ThreadSafety**: ReadSafe
|
|
20276
20293
|
*
|
|
@@ -20278,7 +20295,7 @@ interface TextBox extends GuiObject {
|
|
|
20278
20295
|
*/
|
|
20279
20296
|
TextWrapped: boolean;
|
|
20280
20297
|
/**
|
|
20281
|
-
* Determines the horizontal alignment of rendered text.
|
|
20298
|
+
* Determines the horizontal alignment of the rendered text.
|
|
20282
20299
|
*
|
|
20283
20300
|
* - **ThreadSafety**: ReadSafe
|
|
20284
20301
|
*
|
|
@@ -20286,7 +20303,7 @@ interface TextBox extends GuiObject {
|
|
|
20286
20303
|
*/
|
|
20287
20304
|
TextXAlignment: Enum.TextXAlignment;
|
|
20288
20305
|
/**
|
|
20289
|
-
* Determines the vertical alignment of rendered text.
|
|
20306
|
+
* Determines the vertical alignment of the rendered text.
|
|
20290
20307
|
*
|
|
20291
20308
|
* - **ThreadSafety**: ReadSafe
|
|
20292
20309
|
*
|
|
@@ -20294,7 +20311,7 @@ interface TextBox extends GuiObject {
|
|
|
20294
20311
|
*/
|
|
20295
20312
|
TextYAlignment: Enum.TextYAlignment;
|
|
20296
20313
|
/**
|
|
20297
|
-
* Forces the client to focus on the TextBox
|
|
20314
|
+
* Forces the client to focus on the `TextBox`.
|
|
20298
20315
|
*
|
|
20299
20316
|
* - **ThreadSafety**: Unsafe
|
|
20300
20317
|
*
|
|
@@ -20322,7 +20339,7 @@ interface TextBox extends GuiObject {
|
|
|
20322
20339
|
*/
|
|
20323
20340
|
ReleaseFocus(this: TextBox, submitted?: boolean): void;
|
|
20324
20341
|
/**
|
|
20325
|
-
* Fires when the
|
|
20342
|
+
* Fires when the `TextBox` loses its focus.
|
|
20326
20343
|
*
|
|
20327
20344
|
* - **ThreadSafety**: Unsafe
|
|
20328
20345
|
*
|
|
@@ -25400,6 +25417,21 @@ interface IXPService extends Instance {
|
|
|
25400
25417
|
*/
|
|
25401
25418
|
readonly _nominal_IXPService: unique symbol;
|
|
25402
25419
|
}
|
|
25420
|
+
/**
|
|
25421
|
+
* - **Tags**: NotCreatable, Service
|
|
25422
|
+
*
|
|
25423
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ImageScreenCaptureService)
|
|
25424
|
+
*/
|
|
25425
|
+
interface ImageScreenCaptureService extends Instance {
|
|
25426
|
+
/**
|
|
25427
|
+
* **DO NOT USE!**
|
|
25428
|
+
*
|
|
25429
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
25430
|
+
* @hidden
|
|
25431
|
+
* @deprecated
|
|
25432
|
+
*/
|
|
25433
|
+
readonly _nominal_ImageScreenCaptureService: unique symbol;
|
|
25434
|
+
}
|
|
25403
25435
|
/**
|
|
25404
25436
|
* - **Tags**: NotCreatable, NotReplicated
|
|
25405
25437
|
*
|
|
@@ -26119,6 +26151,21 @@ interface InstanceFileSyncService extends Instance {
|
|
|
26119
26151
|
*/
|
|
26120
26152
|
readonly _nominal_InstanceFileSyncService: unique symbol;
|
|
26121
26153
|
}
|
|
26154
|
+
/**
|
|
26155
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
26156
|
+
*
|
|
26157
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InternalMessagingService)
|
|
26158
|
+
*/
|
|
26159
|
+
interface InternalMessagingService extends Instance {
|
|
26160
|
+
/**
|
|
26161
|
+
* **DO NOT USE!**
|
|
26162
|
+
*
|
|
26163
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
26164
|
+
* @hidden
|
|
26165
|
+
* @deprecated
|
|
26166
|
+
*/
|
|
26167
|
+
readonly _nominal_InternalMessagingService: unique symbol;
|
|
26168
|
+
}
|
|
26122
26169
|
/**
|
|
26123
26170
|
* - **Tags**: NotReplicated
|
|
26124
26171
|
*
|
|
@@ -28249,6 +28296,12 @@ interface MarketplaceService extends Instance {
|
|
|
28249
28296
|
* @param currencyType Ignored.
|
|
28250
28297
|
*/
|
|
28251
28298
|
PromptPurchase(this: MarketplaceService, player: Player, assetId: number, equipIfPurchased?: boolean, currencyType?: CastsToEnum<Enum.CurrencyType>): void;
|
|
28299
|
+
/**
|
|
28300
|
+
* - **ThreadSafety**: Unsafe
|
|
28301
|
+
*
|
|
28302
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#PromptRobloxSubscriptionPurchase)
|
|
28303
|
+
*/
|
|
28304
|
+
PromptRobloxSubscriptionPurchase(this: MarketplaceService, user: Player): void;
|
|
28252
28305
|
/**
|
|
28253
28306
|
* Prompts a user to purchase a subscription for the given `subscriptionId`.
|
|
28254
28307
|
*
|
|
@@ -28536,6 +28589,12 @@ interface MarketplaceService extends Instance {
|
|
|
28536
28589
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#PromptPurchaseFinished)
|
|
28537
28590
|
*/
|
|
28538
28591
|
readonly PromptPurchaseFinished: RBXScriptSignal<(player: Player, assetId: number, isPurchased: boolean) => void>;
|
|
28592
|
+
/**
|
|
28593
|
+
* - **ThreadSafety**: Unsafe
|
|
28594
|
+
*
|
|
28595
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#PromptRobloxSubscriptionPurchaseFinished)
|
|
28596
|
+
*/
|
|
28597
|
+
readonly PromptRobloxSubscriptionPurchaseFinished: RBXScriptSignal<(user: Player, didTryPurchasing: boolean) => void>;
|
|
28539
28598
|
/**
|
|
28540
28599
|
* Fires when a purchase prompt for a subscription is closed.
|
|
28541
28600
|
*
|
|
@@ -38024,7 +38083,7 @@ interface RunService extends Instance {
|
|
|
38024
38083
|
*
|
|
38025
38084
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#Misprediction)
|
|
38026
38085
|
*/
|
|
38027
|
-
readonly Misprediction: RBXScriptSignal<(
|
|
38086
|
+
readonly Misprediction: RBXScriptSignal<(time: number, instances: Array<unknown>, stats: object) => void>;
|
|
38028
38087
|
/**
|
|
38029
38088
|
* Fires every frame, after the physics simulation has completed.
|
|
38030
38089
|
*
|
|
@@ -38610,6 +38669,12 @@ interface ControllerPartSensor extends ControllerSensor {
|
|
|
38610
38669
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ControllerPartSensor#SearchDistance)
|
|
38611
38670
|
*/
|
|
38612
38671
|
SearchDistance: number;
|
|
38672
|
+
/**
|
|
38673
|
+
* - **ThreadSafety**: ReadSafe
|
|
38674
|
+
*
|
|
38675
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ControllerPartSensor#SensedMaterial)
|
|
38676
|
+
*/
|
|
38677
|
+
SensedMaterial: Enum.Material;
|
|
38613
38678
|
/**
|
|
38614
38679
|
* A reference to the `BasePart` hit by the sensor.
|
|
38615
38680
|
*
|
|
@@ -40732,6 +40797,12 @@ interface SoundService extends Instance {
|
|
|
40732
40797
|
Enum.ListenerType.ObjectPosition,
|
|
40733
40798
|
BasePart
|
|
40734
40799
|
]>;
|
|
40800
|
+
/**
|
|
40801
|
+
* - **ThreadSafety**: Unsafe
|
|
40802
|
+
*
|
|
40803
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SoundService#GetMixerTime)
|
|
40804
|
+
*/
|
|
40805
|
+
GetMixerTime(this: SoundService): number;
|
|
40735
40806
|
/**
|
|
40736
40807
|
* Plays a copy of a `Sound` locally, such that it will only be heard by the client calling this method.
|
|
40737
40808
|
*
|
|
@@ -41522,6 +41593,21 @@ interface StudioCameraService extends Instance {
|
|
|
41522
41593
|
*/
|
|
41523
41594
|
readonly _nominal_StudioCameraService: unique symbol;
|
|
41524
41595
|
}
|
|
41596
|
+
/**
|
|
41597
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
41598
|
+
*
|
|
41599
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioCaptureService)
|
|
41600
|
+
*/
|
|
41601
|
+
interface StudioCaptureService extends Instance {
|
|
41602
|
+
/**
|
|
41603
|
+
* **DO NOT USE!**
|
|
41604
|
+
*
|
|
41605
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
41606
|
+
* @hidden
|
|
41607
|
+
* @deprecated
|
|
41608
|
+
*/
|
|
41609
|
+
readonly _nominal_StudioCaptureService: unique symbol;
|
|
41610
|
+
}
|
|
41525
41611
|
/**
|
|
41526
41612
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
41527
41613
|
*
|
|
@@ -41582,6 +41668,21 @@ interface StudioPublishService extends Instance {
|
|
|
41582
41668
|
*/
|
|
41583
41669
|
readonly _nominal_StudioPublishService: unique symbol;
|
|
41584
41670
|
}
|
|
41671
|
+
/**
|
|
41672
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
41673
|
+
*
|
|
41674
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioScreenshotCapture)
|
|
41675
|
+
*/
|
|
41676
|
+
interface StudioScreenshotCapture extends Instance {
|
|
41677
|
+
/**
|
|
41678
|
+
* **DO NOT USE!**
|
|
41679
|
+
*
|
|
41680
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
41681
|
+
* @hidden
|
|
41682
|
+
* @deprecated
|
|
41683
|
+
*/
|
|
41684
|
+
readonly _nominal_StudioScreenshotCapture: unique symbol;
|
|
41685
|
+
}
|
|
41585
41686
|
/**
|
|
41586
41687
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
41587
41688
|
*
|
|
@@ -49,7 +49,6 @@ interface Services {
|
|
|
49
49
|
ContentProvider: ContentProvider;
|
|
50
50
|
ContextActionService: ContextActionService;
|
|
51
51
|
ControllerService: ControllerService;
|
|
52
|
-
ConversationalAIAcceptanceService: ConversationalAIAcceptanceService;
|
|
53
52
|
CoreGui: CoreGui;
|
|
54
53
|
CoreGuiConfiguration: CoreGuiConfiguration;
|
|
55
54
|
CoreScriptDebuggingManagerHelper: CoreScriptDebuggingManagerHelper;
|
|
@@ -64,6 +63,7 @@ interface Services {
|
|
|
64
63
|
DebuggerManager: DebuggerManager;
|
|
65
64
|
DebuggerUIService: DebuggerUIService;
|
|
66
65
|
DebugSettings: DebugSettings;
|
|
66
|
+
DeferredAssetManagerService: DeferredAssetManagerService;
|
|
67
67
|
DeviceIdService: DeviceIdService;
|
|
68
68
|
DraggerService: DraggerService;
|
|
69
69
|
EditableService: EditableService;
|
|
@@ -98,10 +98,12 @@ interface Services {
|
|
|
98
98
|
HeightmapImporterService: HeightmapImporterService;
|
|
99
99
|
HttpService: HttpService;
|
|
100
100
|
ILegacyStudioBridge: ILegacyStudioBridge;
|
|
101
|
+
ImageScreenCaptureService: ImageScreenCaptureService;
|
|
101
102
|
IncrementalPatchBuilder: IncrementalPatchBuilder;
|
|
102
103
|
InsertService: InsertService;
|
|
103
104
|
InstanceExtensionsService: InstanceExtensionsService;
|
|
104
105
|
InstanceFileSyncService: InstanceFileSyncService;
|
|
106
|
+
InternalMessagingService: InternalMessagingService;
|
|
105
107
|
InternalSyncService: InternalSyncService;
|
|
106
108
|
IXPService: IXPService;
|
|
107
109
|
JointsService: JointsService;
|
|
@@ -215,6 +217,7 @@ interface Services {
|
|
|
215
217
|
Studio: Studio;
|
|
216
218
|
StudioAssetService: StudioAssetService;
|
|
217
219
|
StudioCameraService: StudioCameraService;
|
|
220
|
+
StudioCaptureService: StudioCaptureService;
|
|
218
221
|
StudioData: StudioData;
|
|
219
222
|
StudioDeviceEmulatorService: StudioDeviceEmulatorService;
|
|
220
223
|
StudioPublishService: StudioPublishService;
|
|
@@ -752,6 +755,7 @@ interface Instances extends Services, CreatableInstances {
|
|
|
752
755
|
StarterPlayerScripts: StarterPlayerScripts;
|
|
753
756
|
StatsItem: StatsItem;
|
|
754
757
|
StudioObjectBase: StudioObjectBase;
|
|
758
|
+
StudioScreenshotCapture: StudioScreenshotCapture;
|
|
755
759
|
StudioTheme: StudioTheme;
|
|
756
760
|
StudioWidget: StudioWidget;
|
|
757
761
|
StyleBase: StyleBase;
|
|
@@ -4104,21 +4108,6 @@ interface ControllerService extends Instance {
|
|
|
4104
4108
|
*/
|
|
4105
4109
|
readonly _nominal_ControllerService: unique symbol;
|
|
4106
4110
|
}
|
|
4107
|
-
/**
|
|
4108
|
-
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
4109
|
-
*
|
|
4110
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConversationalAIAcceptanceService)
|
|
4111
|
-
*/
|
|
4112
|
-
interface ConversationalAIAcceptanceService extends Instance {
|
|
4113
|
-
/**
|
|
4114
|
-
* **DO NOT USE!**
|
|
4115
|
-
*
|
|
4116
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
4117
|
-
* @hidden
|
|
4118
|
-
* @deprecated
|
|
4119
|
-
*/
|
|
4120
|
-
readonly _nominal_ConversationalAIAcceptanceService: unique symbol;
|
|
4121
|
-
}
|
|
4122
4111
|
/**
|
|
4123
4112
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
4124
4113
|
*
|
|
@@ -4747,6 +4736,21 @@ interface DebuggerWatch extends Instance {
|
|
|
4747
4736
|
*/
|
|
4748
4737
|
readonly _nominal_DebuggerWatch: unique symbol;
|
|
4749
4738
|
}
|
|
4739
|
+
/**
|
|
4740
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
4741
|
+
*
|
|
4742
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DeferredAssetManagerService)
|
|
4743
|
+
*/
|
|
4744
|
+
interface DeferredAssetManagerService extends Instance {
|
|
4745
|
+
/**
|
|
4746
|
+
* **DO NOT USE!**
|
|
4747
|
+
*
|
|
4748
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
4749
|
+
* @hidden
|
|
4750
|
+
* @deprecated
|
|
4751
|
+
*/
|
|
4752
|
+
readonly _nominal_DeferredAssetManagerService: unique symbol;
|
|
4753
|
+
}
|
|
4750
4754
|
/**
|
|
4751
4755
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
4752
4756
|
*
|
|
@@ -7283,6 +7287,21 @@ interface IXPService extends Instance {
|
|
|
7283
7287
|
*/
|
|
7284
7288
|
readonly _nominal_IXPService: unique symbol;
|
|
7285
7289
|
}
|
|
7290
|
+
/**
|
|
7291
|
+
* - **Tags**: NotCreatable, Service
|
|
7292
|
+
*
|
|
7293
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ImageScreenCaptureService)
|
|
7294
|
+
*/
|
|
7295
|
+
interface ImageScreenCaptureService extends Instance {
|
|
7296
|
+
/**
|
|
7297
|
+
* **DO NOT USE!**
|
|
7298
|
+
*
|
|
7299
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
7300
|
+
* @hidden
|
|
7301
|
+
* @deprecated
|
|
7302
|
+
*/
|
|
7303
|
+
readonly _nominal_ImageScreenCaptureService: unique symbol;
|
|
7304
|
+
}
|
|
7286
7305
|
/**
|
|
7287
7306
|
* - **Tags**: NotCreatable, NotReplicated
|
|
7288
7307
|
*
|
|
@@ -7479,6 +7498,21 @@ interface InstanceFileSyncService extends Instance {
|
|
|
7479
7498
|
*/
|
|
7480
7499
|
readonly StatusChanged: RBXScriptSignal<(instance: Instance, status: Enum.InstanceFileSyncStatus) => void>;
|
|
7481
7500
|
}
|
|
7501
|
+
/**
|
|
7502
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
7503
|
+
*
|
|
7504
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InternalMessagingService)
|
|
7505
|
+
*/
|
|
7506
|
+
interface InternalMessagingService extends Instance {
|
|
7507
|
+
/**
|
|
7508
|
+
* **DO NOT USE!**
|
|
7509
|
+
*
|
|
7510
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
7511
|
+
* @hidden
|
|
7512
|
+
* @deprecated
|
|
7513
|
+
*/
|
|
7514
|
+
readonly _nominal_InternalMessagingService: unique symbol;
|
|
7515
|
+
}
|
|
7482
7516
|
/**
|
|
7483
7517
|
* - **Tags**: NotReplicated
|
|
7484
7518
|
*
|
|
@@ -12469,7 +12503,8 @@ interface ScriptEditorService extends Instance {
|
|
|
12469
12503
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScriptEditorService#OpenScriptDocumentAsync)
|
|
12470
12504
|
* @param this This service is used for interacting with `ScriptDocument` instances.
|
|
12471
12505
|
* @param script
|
|
12472
|
-
* @param options
|
|
12506
|
+
* @param options A dictionary that supports the following options: - `Temporary` — Boolean. Whether to open the script in a preview tab. Default is false.
|
|
12507
|
+
* - `HighlightRange` — A nested dictionary containing a line and character range to highlight in the editor. Example: `HighlightRange = { Start = { Line = 10, Character = 1 }, End = { Line = 15, Character = 20 }}`.
|
|
12473
12508
|
*/
|
|
12474
12509
|
OpenScriptDocumentAsync(this: ScriptEditorService, script: LuaSourceContainer, options?: object): unknown;
|
|
12475
12510
|
/**
|
|
@@ -13810,6 +13845,40 @@ interface StudioCameraService extends Instance {
|
|
|
13810
13845
|
*/
|
|
13811
13846
|
readonly _nominal_StudioCameraService: unique symbol;
|
|
13812
13847
|
}
|
|
13848
|
+
/**
|
|
13849
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
13850
|
+
*
|
|
13851
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioCaptureService)
|
|
13852
|
+
*/
|
|
13853
|
+
interface StudioCaptureService extends Instance {
|
|
13854
|
+
/**
|
|
13855
|
+
* **DO NOT USE!**
|
|
13856
|
+
*
|
|
13857
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
13858
|
+
* @hidden
|
|
13859
|
+
* @deprecated
|
|
13860
|
+
*/
|
|
13861
|
+
readonly _nominal_StudioCaptureService: unique symbol;
|
|
13862
|
+
/**
|
|
13863
|
+
* - **ThreadSafety**: Unsafe
|
|
13864
|
+
*
|
|
13865
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioCaptureService#CanCaptureScreenshot)
|
|
13866
|
+
*/
|
|
13867
|
+
CanCaptureScreenshot(this: StudioCaptureService): boolean;
|
|
13868
|
+
/**
|
|
13869
|
+
* - **ThreadSafety**: Unsafe
|
|
13870
|
+
*
|
|
13871
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioCaptureService#CaptureScreenshot)
|
|
13872
|
+
*/
|
|
13873
|
+
CaptureScreenshot(this: StudioCaptureService, screenshotOptions: object): StudioScreenshotCapture;
|
|
13874
|
+
/**
|
|
13875
|
+
* - **ThreadSafety**: Unsafe
|
|
13876
|
+
* - **Tags**: Yields
|
|
13877
|
+
*
|
|
13878
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioCaptureService#RequestScreenshotPermissionAsync)
|
|
13879
|
+
*/
|
|
13880
|
+
RequestScreenshotPermissionAsync(this: StudioCaptureService): boolean;
|
|
13881
|
+
}
|
|
13813
13882
|
/**
|
|
13814
13883
|
* - **Tags**: NotCreatable, Service
|
|
13815
13884
|
*
|
|
@@ -13885,6 +13954,82 @@ interface StudioPublishService extends Instance {
|
|
|
13885
13954
|
*/
|
|
13886
13955
|
readonly _nominal_StudioPublishService: unique symbol;
|
|
13887
13956
|
}
|
|
13957
|
+
/**
|
|
13958
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
13959
|
+
*
|
|
13960
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioScreenshotCapture)
|
|
13961
|
+
*/
|
|
13962
|
+
interface StudioScreenshotCapture extends Instance {
|
|
13963
|
+
/**
|
|
13964
|
+
* **DO NOT USE!**
|
|
13965
|
+
*
|
|
13966
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
13967
|
+
* @hidden
|
|
13968
|
+
* @deprecated
|
|
13969
|
+
*/
|
|
13970
|
+
readonly _nominal_StudioScreenshotCapture: unique symbol;
|
|
13971
|
+
/**
|
|
13972
|
+
* - **ThreadSafety**: ReadSafe
|
|
13973
|
+
* - **Tags**: NotReplicated
|
|
13974
|
+
*
|
|
13975
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioScreenshotCapture#BufferFormat)
|
|
13976
|
+
*/
|
|
13977
|
+
readonly BufferFormat: Enum.StudioCaptureScreenshotFormat;
|
|
13978
|
+
/**
|
|
13979
|
+
* - **ThreadSafety**: ReadSafe
|
|
13980
|
+
* - **Tags**: NotReplicated
|
|
13981
|
+
*
|
|
13982
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioScreenshotCapture#BufferStatus)
|
|
13983
|
+
*/
|
|
13984
|
+
readonly BufferStatus: Enum.StudioCaptureBufferStatus;
|
|
13985
|
+
/**
|
|
13986
|
+
* - **ThreadSafety**: ReadSafe
|
|
13987
|
+
* - **Tags**: NotReplicated
|
|
13988
|
+
*
|
|
13989
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioScreenshotCapture#OriginalSize)
|
|
13990
|
+
*/
|
|
13991
|
+
readonly OriginalSize: Vector2;
|
|
13992
|
+
/**
|
|
13993
|
+
* - **ThreadSafety**: ReadSafe
|
|
13994
|
+
* - **Tags**: NotReplicated
|
|
13995
|
+
*
|
|
13996
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioScreenshotCapture#Position)
|
|
13997
|
+
*/
|
|
13998
|
+
readonly Position: Vector2;
|
|
13999
|
+
/**
|
|
14000
|
+
* - **ThreadSafety**: ReadSafe
|
|
14001
|
+
* - **Tags**: NotReplicated
|
|
14002
|
+
*
|
|
14003
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioScreenshotCapture#Resolution)
|
|
14004
|
+
*/
|
|
14005
|
+
readonly Resolution: Vector2;
|
|
14006
|
+
/**
|
|
14007
|
+
* - **ThreadSafety**: ReadSafe
|
|
14008
|
+
* - **Tags**: NotReplicated
|
|
14009
|
+
*
|
|
14010
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioScreenshotCapture#UICaptureMode)
|
|
14011
|
+
*/
|
|
14012
|
+
readonly UICaptureMode: Enum.UICaptureMode;
|
|
14013
|
+
/**
|
|
14014
|
+
* - **ThreadSafety**: Unsafe
|
|
14015
|
+
*
|
|
14016
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioScreenshotCapture#GetBuffer)
|
|
14017
|
+
*/
|
|
14018
|
+
GetBuffer(this: StudioScreenshotCapture): buffer;
|
|
14019
|
+
/**
|
|
14020
|
+
* - **ThreadSafety**: Unsafe
|
|
14021
|
+
*
|
|
14022
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioScreenshotCapture#GetErrors)
|
|
14023
|
+
*/
|
|
14024
|
+
GetErrors(this: StudioScreenshotCapture): Array<unknown>;
|
|
14025
|
+
/**
|
|
14026
|
+
* - **ThreadSafety**: Unsafe
|
|
14027
|
+
* - **Tags**: Yields
|
|
14028
|
+
*
|
|
14029
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioScreenshotCapture#ScaleAsync)
|
|
14030
|
+
*/
|
|
14031
|
+
ScaleAsync(this: StudioScreenshotCapture, strategy: CastsToEnum<Enum.ResamplerMode>, newSize: Vector2): StudioScreenshotCapture;
|
|
14032
|
+
}
|
|
13888
14033
|
/**
|
|
13889
14034
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
13890
14035
|
*
|
|
@@ -401,10 +401,14 @@ declare namespace Enum {
|
|
|
401
401
|
}
|
|
402
402
|
export type ActionType = ActionType.Nothing | ActionType.Pause | ActionType.Lose | ActionType.Draw | ActionType.Win;
|
|
403
403
|
/**
|
|
404
|
+
* Describes a player's payer status bucket for the current experience.
|
|
405
|
+
*
|
|
404
406
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus)
|
|
405
407
|
*/
|
|
406
408
|
export namespace ActivePayerStatus {
|
|
407
409
|
/**
|
|
410
|
+
* Segment data is unavailable.
|
|
411
|
+
*
|
|
408
412
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus#Unknown)
|
|
409
413
|
*/
|
|
410
414
|
export interface Unknown extends globalThis.EnumItem {
|
|
@@ -414,6 +418,8 @@ declare namespace Enum {
|
|
|
414
418
|
}
|
|
415
419
|
export const Unknown: Unknown;
|
|
416
420
|
/**
|
|
421
|
+
* The player has not made a qualifying purchase in the experience.
|
|
422
|
+
*
|
|
417
423
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus#Never)
|
|
418
424
|
*/
|
|
419
425
|
export interface Never extends globalThis.EnumItem {
|
|
@@ -423,6 +429,8 @@ declare namespace Enum {
|
|
|
423
429
|
}
|
|
424
430
|
export const Never: Never;
|
|
425
431
|
/**
|
|
432
|
+
* The player has previously spent in the experience but is not currently an active payer.
|
|
433
|
+
*
|
|
426
434
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus#Lapsed)
|
|
427
435
|
*/
|
|
428
436
|
export interface Lapsed extends globalThis.EnumItem {
|
|
@@ -432,6 +440,8 @@ declare namespace Enum {
|
|
|
432
440
|
}
|
|
433
441
|
export const Lapsed: Lapsed;
|
|
434
442
|
/**
|
|
443
|
+
* The player is in the casual payer bucket for the experience.
|
|
444
|
+
*
|
|
435
445
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus#Casual50Percent)
|
|
436
446
|
*/
|
|
437
447
|
export interface Casual50Percent extends globalThis.EnumItem {
|
|
@@ -441,6 +451,8 @@ declare namespace Enum {
|
|
|
441
451
|
}
|
|
442
452
|
export const Casual50Percent: Casual50Percent;
|
|
443
453
|
/**
|
|
454
|
+
* The player is in the intermediate payer bucket for the experience.
|
|
455
|
+
*
|
|
444
456
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus#Intermediate35Percent)
|
|
445
457
|
*/
|
|
446
458
|
export interface Intermediate35Percent extends globalThis.EnumItem {
|
|
@@ -450,6 +462,8 @@ declare namespace Enum {
|
|
|
450
462
|
}
|
|
451
463
|
export const Intermediate35Percent: Intermediate35Percent;
|
|
452
464
|
/**
|
|
465
|
+
* The player is in the top payer bucket for the experience.
|
|
466
|
+
*
|
|
453
467
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ActivePayerStatus#Top15Percent)
|
|
454
468
|
*/
|
|
455
469
|
export interface Top15Percent extends globalThis.EnumItem {
|
|
@@ -1713,10 +1727,6 @@ declare namespace Enum {
|
|
|
1713
1727
|
EnumType: typeof globalThis.Enum.AnimationNodeInterruptible;
|
|
1714
1728
|
}
|
|
1715
1729
|
export const Finished: Finished;
|
|
1716
|
-
/**
|
|
1717
|
-
* @deprecated renamed to Finished
|
|
1718
|
-
*/
|
|
1719
|
-
export const ClipFinished: Finished;
|
|
1720
1730
|
/**
|
|
1721
1731
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeInterruptible#Trigger)
|
|
1722
1732
|
*/
|
|
@@ -1726,10 +1736,6 @@ declare namespace Enum {
|
|
|
1726
1736
|
EnumType: typeof globalThis.Enum.AnimationNodeInterruptible;
|
|
1727
1737
|
}
|
|
1728
1738
|
export const Trigger: Trigger;
|
|
1729
|
-
/**
|
|
1730
|
-
* @deprecated renamed to Trigger
|
|
1731
|
-
*/
|
|
1732
|
-
export const Expression: Trigger;
|
|
1733
1739
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationNodeInterruptible>;
|
|
1734
1740
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodeInterruptible | undefined;
|
|
1735
1741
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeInterruptible | undefined;
|
|
@@ -1874,10 +1880,6 @@ declare namespace Enum {
|
|
|
1874
1880
|
EnumType: typeof globalThis.Enum.AnimationNodeType;
|
|
1875
1881
|
}
|
|
1876
1882
|
export const OverNode: OverNode;
|
|
1877
|
-
/**
|
|
1878
|
-
* @deprecated renamed to OverNode
|
|
1879
|
-
*/
|
|
1880
|
-
export const BlendNode: OverNode;
|
|
1881
1883
|
/**
|
|
1882
1884
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType#Blend1DNode)
|
|
1883
1885
|
*/
|
|
@@ -1995,10 +1997,6 @@ declare namespace Enum {
|
|
|
1995
1997
|
EnumType: typeof globalThis.Enum.AnimationNodeWaitFor;
|
|
1996
1998
|
}
|
|
1997
1999
|
export const Finished: Finished;
|
|
1998
|
-
/**
|
|
1999
|
-
* @deprecated renamed to Finished
|
|
2000
|
-
*/
|
|
2001
|
-
export const ClipFinished: Finished;
|
|
2002
2000
|
/**
|
|
2003
2001
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeWaitFor#Trigger)
|
|
2004
2002
|
*/
|
|
@@ -2008,10 +2006,6 @@ declare namespace Enum {
|
|
|
2008
2006
|
EnumType: typeof globalThis.Enum.AnimationNodeWaitFor;
|
|
2009
2007
|
}
|
|
2010
2008
|
export const Trigger: Trigger;
|
|
2011
|
-
/**
|
|
2012
|
-
* @deprecated renamed to Trigger
|
|
2013
|
-
*/
|
|
2014
|
-
export const Expression: Trigger;
|
|
2015
2009
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationNodeWaitFor>;
|
|
2016
2010
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodeWaitFor | undefined;
|
|
2017
2011
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeWaitFor | undefined;
|
|
@@ -3999,7 +3993,7 @@ declare namespace Enum {
|
|
|
3999
3993
|
}
|
|
4000
3994
|
export const None: None;
|
|
4001
3995
|
/**
|
|
4002
|
-
* Automatically resize element along X
|
|
3996
|
+
* Automatically resize element along the **X** axis to fit child contents.
|
|
4003
3997
|
*
|
|
4004
3998
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AutomaticSize#X)
|
|
4005
3999
|
*/
|
|
@@ -4010,7 +4004,7 @@ declare namespace Enum {
|
|
|
4010
4004
|
}
|
|
4011
4005
|
export const X: X;
|
|
4012
4006
|
/**
|
|
4013
|
-
* Automatically resize element along Y
|
|
4007
|
+
* Automatically resize element along the **Y** axis to fit child contents. Text objects will only resize along the **Y** axis if their `TextWrapped` property is enabled.
|
|
4014
4008
|
*
|
|
4015
4009
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AutomaticSize#Y)
|
|
4016
4010
|
*/
|
|
@@ -4021,7 +4015,7 @@ declare namespace Enum {
|
|
|
4021
4015
|
}
|
|
4022
4016
|
export const Y: Y;
|
|
4023
4017
|
/**
|
|
4024
|
-
* Automatically resize element along X and Y axes to fit child contents.
|
|
4018
|
+
* Automatically resize element along the **X** and **Y** axes to fit child contents.
|
|
4025
4019
|
*
|
|
4026
4020
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AutomaticSize#XY)
|
|
4027
4021
|
*/
|
|
@@ -5010,6 +5004,33 @@ declare namespace Enum {
|
|
|
5010
5004
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarSettingsBuildMode | undefined;
|
|
5011
5005
|
}
|
|
5012
5006
|
export type AvatarSettingsBuildMode = AvatarSettingsBuildMode.PlayerChoice | AvatarSettingsBuildMode.CustomBuild;
|
|
5007
|
+
/**
|
|
5008
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsCharacterControllerMode)
|
|
5009
|
+
*/
|
|
5010
|
+
export namespace AvatarSettingsCharacterControllerMode {
|
|
5011
|
+
/**
|
|
5012
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsCharacterControllerMode#LegacyHumanoid)
|
|
5013
|
+
*/
|
|
5014
|
+
export interface LegacyHumanoid extends globalThis.EnumItem {
|
|
5015
|
+
Name: "LegacyHumanoid";
|
|
5016
|
+
Value: 0;
|
|
5017
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsCharacterControllerMode;
|
|
5018
|
+
}
|
|
5019
|
+
export const LegacyHumanoid: LegacyHumanoid;
|
|
5020
|
+
/**
|
|
5021
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsCharacterControllerMode#LuaCharacterController)
|
|
5022
|
+
*/
|
|
5023
|
+
export interface LuaCharacterController extends globalThis.EnumItem {
|
|
5024
|
+
Name: "LuaCharacterController";
|
|
5025
|
+
Value: 1;
|
|
5026
|
+
EnumType: typeof globalThis.Enum.AvatarSettingsCharacterControllerMode;
|
|
5027
|
+
}
|
|
5028
|
+
export const LuaCharacterController: LuaCharacterController;
|
|
5029
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarSettingsCharacterControllerMode>;
|
|
5030
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarSettingsCharacterControllerMode | undefined;
|
|
5031
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarSettingsCharacterControllerMode | undefined;
|
|
5032
|
+
}
|
|
5033
|
+
export type AvatarSettingsCharacterControllerMode = AvatarSettingsCharacterControllerMode.LegacyHumanoid | AvatarSettingsCharacterControllerMode.LuaCharacterController;
|
|
5013
5034
|
/**
|
|
5014
5035
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarSettingsClothingMode)
|
|
5015
5036
|
*/
|
|
@@ -9632,28 +9653,28 @@ declare namespace Enum {
|
|
|
9632
9653
|
}
|
|
9633
9654
|
export const UploadFailed: UploadFailed;
|
|
9634
9655
|
/**
|
|
9635
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult#
|
|
9656
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult#StorageLimitExceeded)
|
|
9636
9657
|
*/
|
|
9637
|
-
export interface
|
|
9638
|
-
Name: "
|
|
9658
|
+
export interface StorageLimitExceeded extends globalThis.EnumItem {
|
|
9659
|
+
Name: "StorageLimitExceeded";
|
|
9639
9660
|
Value: 4;
|
|
9640
9661
|
EnumType: typeof globalThis.Enum.CreateContentResult;
|
|
9641
9662
|
}
|
|
9642
|
-
export const
|
|
9663
|
+
export const StorageLimitExceeded: StorageLimitExceeded;
|
|
9643
9664
|
/**
|
|
9644
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult#
|
|
9665
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateContentResult#Unknown)
|
|
9645
9666
|
*/
|
|
9646
|
-
export interface
|
|
9647
|
-
Name: "
|
|
9667
|
+
export interface Unknown extends globalThis.EnumItem {
|
|
9668
|
+
Name: "Unknown";
|
|
9648
9669
|
Value: 5;
|
|
9649
9670
|
EnumType: typeof globalThis.Enum.CreateContentResult;
|
|
9650
9671
|
}
|
|
9651
|
-
export const
|
|
9672
|
+
export const Unknown: Unknown;
|
|
9652
9673
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CreateContentResult>;
|
|
9653
9674
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CreateContentResult | undefined;
|
|
9654
9675
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CreateContentResult | undefined;
|
|
9655
9676
|
}
|
|
9656
|
-
export type CreateContentResult = CreateContentResult.Success | CreateContentResult.PermissionDenied | CreateContentResult.UploadFailed | CreateContentResult.
|
|
9677
|
+
export type CreateContentResult = CreateContentResult.Success | CreateContentResult.PermissionDenied | CreateContentResult.UploadFailed | CreateContentResult.StorageLimitExceeded | CreateContentResult.Unknown;
|
|
9657
9678
|
/**
|
|
9658
9679
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CreateOutfitFailure)
|
|
9659
9680
|
*/
|
|
@@ -11192,11 +11213,20 @@ declare namespace Enum {
|
|
|
11192
11213
|
EnumType: typeof globalThis.Enum.DeviceType;
|
|
11193
11214
|
}
|
|
11194
11215
|
export const Phone: Phone;
|
|
11216
|
+
/**
|
|
11217
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DeviceType#TV)
|
|
11218
|
+
*/
|
|
11219
|
+
export interface TV extends globalThis.EnumItem {
|
|
11220
|
+
Name: "TV";
|
|
11221
|
+
Value: 4;
|
|
11222
|
+
EnumType: typeof globalThis.Enum.DeviceType;
|
|
11223
|
+
}
|
|
11224
|
+
export const TV: TV;
|
|
11195
11225
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DeviceType>;
|
|
11196
11226
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DeviceType | undefined;
|
|
11197
11227
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DeviceType | undefined;
|
|
11198
11228
|
}
|
|
11199
|
-
export type DeviceType = DeviceType.Unknown | DeviceType.Desktop | DeviceType.Tablet | DeviceType.Phone;
|
|
11229
|
+
export type DeviceType = DeviceType.Unknown | DeviceType.Desktop | DeviceType.Tablet | DeviceType.Phone | DeviceType.TV;
|
|
11200
11230
|
/**
|
|
11201
11231
|
* Controls whether multiple people can use this dialog, or only one person at a time can use it.
|
|
11202
11232
|
*
|
|
@@ -25447,10 +25477,14 @@ declare namespace Enum {
|
|
|
25447
25477
|
}
|
|
25448
25478
|
export type PlayerExitReason = PlayerExitReason.Unknown | PlayerExitReason.PlatformKick | PlayerExitReason.CreatorKick;
|
|
25449
25479
|
/**
|
|
25480
|
+
* Describes a player's platform-wide spender status bucket.
|
|
25481
|
+
*
|
|
25450
25482
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerPlatformSpenderStatus)
|
|
25451
25483
|
*/
|
|
25452
25484
|
export namespace PlayerPlatformSpenderStatus {
|
|
25453
25485
|
/**
|
|
25486
|
+
* Segment data is unavailable.
|
|
25487
|
+
*
|
|
25454
25488
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerPlatformSpenderStatus#Unknown)
|
|
25455
25489
|
*/
|
|
25456
25490
|
export interface Unknown extends globalThis.EnumItem {
|
|
@@ -25460,6 +25494,8 @@ declare namespace Enum {
|
|
|
25460
25494
|
}
|
|
25461
25495
|
export const Unknown: Unknown;
|
|
25462
25496
|
/**
|
|
25497
|
+
* The player is an active platform spender.
|
|
25498
|
+
*
|
|
25463
25499
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerPlatformSpenderStatus#Active)
|
|
25464
25500
|
*/
|
|
25465
25501
|
export interface Active extends globalThis.EnumItem {
|
|
@@ -25469,6 +25505,8 @@ declare namespace Enum {
|
|
|
25469
25505
|
}
|
|
25470
25506
|
export const Active: Active;
|
|
25471
25507
|
/**
|
|
25508
|
+
* The player is not an active platform spender, including players who have never spent.
|
|
25509
|
+
*
|
|
25472
25510
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlayerPlatformSpenderStatus#OtherPayer)
|
|
25473
25511
|
*/
|
|
25474
25512
|
export interface OtherPayer extends globalThis.EnumItem {
|
|
@@ -25821,6 +25859,51 @@ declare namespace Enum {
|
|
|
25821
25859
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PreferredTextSize | undefined;
|
|
25822
25860
|
}
|
|
25823
25861
|
export type PreferredTextSize = PreferredTextSize.Medium | PreferredTextSize.Large | PreferredTextSize.Larger | PreferredTextSize.Largest;
|
|
25862
|
+
/**
|
|
25863
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrefetchDownloadStatus)
|
|
25864
|
+
*/
|
|
25865
|
+
export namespace PrefetchDownloadStatus {
|
|
25866
|
+
/**
|
|
25867
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrefetchDownloadStatus#NotStarted)
|
|
25868
|
+
*/
|
|
25869
|
+
export interface NotStarted extends globalThis.EnumItem {
|
|
25870
|
+
Name: "NotStarted";
|
|
25871
|
+
Value: 0;
|
|
25872
|
+
EnumType: typeof globalThis.Enum.PrefetchDownloadStatus;
|
|
25873
|
+
}
|
|
25874
|
+
export const NotStarted: NotStarted;
|
|
25875
|
+
/**
|
|
25876
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrefetchDownloadStatus#InProgress)
|
|
25877
|
+
*/
|
|
25878
|
+
export interface InProgress extends globalThis.EnumItem {
|
|
25879
|
+
Name: "InProgress";
|
|
25880
|
+
Value: 1;
|
|
25881
|
+
EnumType: typeof globalThis.Enum.PrefetchDownloadStatus;
|
|
25882
|
+
}
|
|
25883
|
+
export const InProgress: InProgress;
|
|
25884
|
+
/**
|
|
25885
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrefetchDownloadStatus#Completed)
|
|
25886
|
+
*/
|
|
25887
|
+
export interface Completed extends globalThis.EnumItem {
|
|
25888
|
+
Name: "Completed";
|
|
25889
|
+
Value: 2;
|
|
25890
|
+
EnumType: typeof globalThis.Enum.PrefetchDownloadStatus;
|
|
25891
|
+
}
|
|
25892
|
+
export const Completed: Completed;
|
|
25893
|
+
/**
|
|
25894
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrefetchDownloadStatus#Failed)
|
|
25895
|
+
*/
|
|
25896
|
+
export interface Failed extends globalThis.EnumItem {
|
|
25897
|
+
Name: "Failed";
|
|
25898
|
+
Value: 3;
|
|
25899
|
+
EnumType: typeof globalThis.Enum.PrefetchDownloadStatus;
|
|
25900
|
+
}
|
|
25901
|
+
export const Failed: Failed;
|
|
25902
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PrefetchDownloadStatus>;
|
|
25903
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PrefetchDownloadStatus | undefined;
|
|
25904
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PrefetchDownloadStatus | undefined;
|
|
25905
|
+
}
|
|
25906
|
+
export type PrefetchDownloadStatus = PrefetchDownloadStatus.NotStarted | PrefetchDownloadStatus.InProgress | PrefetchDownloadStatus.Completed | PrefetchDownloadStatus.Failed;
|
|
25824
25907
|
/**
|
|
25825
25908
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PrimalPhysicsSolver)
|
|
25826
25909
|
*/
|
|
@@ -30607,11 +30690,20 @@ declare namespace Enum {
|
|
|
30607
30690
|
EnumType: typeof globalThis.Enum.SolidPrimitiveType;
|
|
30608
30691
|
}
|
|
30609
30692
|
export const Cone: Cone;
|
|
30693
|
+
/**
|
|
30694
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SolidPrimitiveType#RoundedBox)
|
|
30695
|
+
*/
|
|
30696
|
+
export interface RoundedBox extends globalThis.EnumItem {
|
|
30697
|
+
Name: "RoundedBox";
|
|
30698
|
+
Value: 7;
|
|
30699
|
+
EnumType: typeof globalThis.Enum.SolidPrimitiveType;
|
|
30700
|
+
}
|
|
30701
|
+
export const RoundedBox: RoundedBox;
|
|
30610
30702
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SolidPrimitiveType>;
|
|
30611
30703
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SolidPrimitiveType | undefined;
|
|
30612
30704
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SolidPrimitiveType | undefined;
|
|
30613
30705
|
}
|
|
30614
|
-
export type SolidPrimitiveType = SolidPrimitiveType.Capsule | SolidPrimitiveType.Cone;
|
|
30706
|
+
export type SolidPrimitiveType = SolidPrimitiveType.Capsule | SolidPrimitiveType.Cone | SolidPrimitiveType.RoundedBox;
|
|
30615
30707
|
/**
|
|
30616
30708
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SolverConvergenceMetricType)
|
|
30617
30709
|
*/
|
|
@@ -31268,6 +31360,78 @@ declare namespace Enum {
|
|
|
31268
31360
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.StrokeSizingMode | undefined;
|
|
31269
31361
|
}
|
|
31270
31362
|
export type StrokeSizingMode = StrokeSizingMode.FixedSize | StrokeSizingMode.ScaledSize;
|
|
31363
|
+
/**
|
|
31364
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioCaptureBufferStatus)
|
|
31365
|
+
*/
|
|
31366
|
+
export namespace StudioCaptureBufferStatus {
|
|
31367
|
+
/**
|
|
31368
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioCaptureBufferStatus#NotStarted)
|
|
31369
|
+
*/
|
|
31370
|
+
export interface NotStarted extends globalThis.EnumItem {
|
|
31371
|
+
Name: "NotStarted";
|
|
31372
|
+
Value: 0;
|
|
31373
|
+
EnumType: typeof globalThis.Enum.StudioCaptureBufferStatus;
|
|
31374
|
+
}
|
|
31375
|
+
export const NotStarted: NotStarted;
|
|
31376
|
+
/**
|
|
31377
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioCaptureBufferStatus#Pending)
|
|
31378
|
+
*/
|
|
31379
|
+
export interface Pending extends globalThis.EnumItem {
|
|
31380
|
+
Name: "Pending";
|
|
31381
|
+
Value: 1;
|
|
31382
|
+
EnumType: typeof globalThis.Enum.StudioCaptureBufferStatus;
|
|
31383
|
+
}
|
|
31384
|
+
export const Pending: Pending;
|
|
31385
|
+
/**
|
|
31386
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioCaptureBufferStatus#Ready)
|
|
31387
|
+
*/
|
|
31388
|
+
export interface Ready extends globalThis.EnumItem {
|
|
31389
|
+
Name: "Ready";
|
|
31390
|
+
Value: 2;
|
|
31391
|
+
EnumType: typeof globalThis.Enum.StudioCaptureBufferStatus;
|
|
31392
|
+
}
|
|
31393
|
+
export const Ready: Ready;
|
|
31394
|
+
/**
|
|
31395
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioCaptureBufferStatus#Error)
|
|
31396
|
+
*/
|
|
31397
|
+
export interface Error extends globalThis.EnumItem {
|
|
31398
|
+
Name: "Error";
|
|
31399
|
+
Value: 3;
|
|
31400
|
+
EnumType: typeof globalThis.Enum.StudioCaptureBufferStatus;
|
|
31401
|
+
}
|
|
31402
|
+
export const Error: Error;
|
|
31403
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.StudioCaptureBufferStatus>;
|
|
31404
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.StudioCaptureBufferStatus | undefined;
|
|
31405
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.StudioCaptureBufferStatus | undefined;
|
|
31406
|
+
}
|
|
31407
|
+
export type StudioCaptureBufferStatus = StudioCaptureBufferStatus.NotStarted | StudioCaptureBufferStatus.Pending | StudioCaptureBufferStatus.Ready | StudioCaptureBufferStatus.Error;
|
|
31408
|
+
/**
|
|
31409
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioCaptureScreenshotFormat)
|
|
31410
|
+
*/
|
|
31411
|
+
export namespace StudioCaptureScreenshotFormat {
|
|
31412
|
+
/**
|
|
31413
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioCaptureScreenshotFormat#RGBA8)
|
|
31414
|
+
*/
|
|
31415
|
+
export interface RGBA8 extends globalThis.EnumItem {
|
|
31416
|
+
Name: "RGBA8";
|
|
31417
|
+
Value: 0;
|
|
31418
|
+
EnumType: typeof globalThis.Enum.StudioCaptureScreenshotFormat;
|
|
31419
|
+
}
|
|
31420
|
+
export const RGBA8: RGBA8;
|
|
31421
|
+
/**
|
|
31422
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioCaptureScreenshotFormat#PNG)
|
|
31423
|
+
*/
|
|
31424
|
+
export interface PNG extends globalThis.EnumItem {
|
|
31425
|
+
Name: "PNG";
|
|
31426
|
+
Value: 1;
|
|
31427
|
+
EnumType: typeof globalThis.Enum.StudioCaptureScreenshotFormat;
|
|
31428
|
+
}
|
|
31429
|
+
export const PNG: PNG;
|
|
31430
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.StudioCaptureScreenshotFormat>;
|
|
31431
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.StudioCaptureScreenshotFormat | undefined;
|
|
31432
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.StudioCaptureScreenshotFormat | undefined;
|
|
31433
|
+
}
|
|
31434
|
+
export type StudioCaptureScreenshotFormat = StudioCaptureScreenshotFormat.RGBA8 | StudioCaptureScreenshotFormat.PNG;
|
|
31271
31435
|
/**
|
|
31272
31436
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioCloseMode)
|
|
31273
31437
|
*/
|
|
@@ -38925,10 +39089,14 @@ declare namespace Enum {
|
|
|
38925
39089
|
}
|
|
38926
39090
|
export type WeldConstraintPreserve = WeldConstraintPreserve.All | WeldConstraintPreserve.None | WeldConstraintPreserve.Touching;
|
|
38927
39091
|
/**
|
|
39092
|
+
* Describes when a player first played the current experience, represented as a bucket.
|
|
39093
|
+
*
|
|
38928
39094
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed)
|
|
38929
39095
|
*/
|
|
38930
39096
|
export namespace WhenUserFirstPlayed {
|
|
38931
39097
|
/**
|
|
39098
|
+
* Segment data is unavailable.
|
|
39099
|
+
*
|
|
38932
39100
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed#Unknown)
|
|
38933
39101
|
*/
|
|
38934
39102
|
export interface Unknown extends globalThis.EnumItem {
|
|
@@ -38938,6 +39106,8 @@ declare namespace Enum {
|
|
|
38938
39106
|
}
|
|
38939
39107
|
export const Unknown: Unknown;
|
|
38940
39108
|
/**
|
|
39109
|
+
* The player first played the experience within the last 30 days.
|
|
39110
|
+
*
|
|
38941
39111
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed#Days0To30)
|
|
38942
39112
|
*/
|
|
38943
39113
|
export interface Days0To30 extends globalThis.EnumItem {
|
|
@@ -38947,6 +39117,8 @@ declare namespace Enum {
|
|
|
38947
39117
|
}
|
|
38948
39118
|
export const Days0To30: Days0To30;
|
|
38949
39119
|
/**
|
|
39120
|
+
* The player first played the experience between 31 and 90 days ago.
|
|
39121
|
+
*
|
|
38950
39122
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed#Days31To90)
|
|
38951
39123
|
*/
|
|
38952
39124
|
export interface Days31To90 extends globalThis.EnumItem {
|
|
@@ -38956,6 +39128,8 @@ declare namespace Enum {
|
|
|
38956
39128
|
}
|
|
38957
39129
|
export const Days31To90: Days31To90;
|
|
38958
39130
|
/**
|
|
39131
|
+
* The player first played the experience between 91 and 180 days ago.
|
|
39132
|
+
*
|
|
38959
39133
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed#Days91To180)
|
|
38960
39134
|
*/
|
|
38961
39135
|
export interface Days91To180 extends globalThis.EnumItem {
|
|
@@ -38965,6 +39139,8 @@ declare namespace Enum {
|
|
|
38965
39139
|
}
|
|
38966
39140
|
export const Days91To180: Days91To180;
|
|
38967
39141
|
/**
|
|
39142
|
+
* The player first played the experience between 181 and 365 days ago.
|
|
39143
|
+
*
|
|
38968
39144
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed#Days181To365)
|
|
38969
39145
|
*/
|
|
38970
39146
|
export interface Days181To365 extends globalThis.EnumItem {
|
|
@@ -38974,6 +39150,8 @@ declare namespace Enum {
|
|
|
38974
39150
|
}
|
|
38975
39151
|
export const Days181To365: Days181To365;
|
|
38976
39152
|
/**
|
|
39153
|
+
* The player first played the experience more than 365 days ago.
|
|
39154
|
+
*
|
|
38977
39155
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WhenUserFirstPlayed#Days366Plus)
|
|
38978
39156
|
*/
|
|
38979
39157
|
export interface Days366Plus extends globalThis.EnumItem {
|