@rbxts/types 1.0.911 → 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 +266 -103
- package/include/generated/PluginSecurity.d.ts +181 -40
- package/include/generated/enums.d.ts +459 -66
- 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;
|
|
@@ -735,7 +739,6 @@ interface Instances extends Services, CreatableInstances {
|
|
|
735
739
|
}
|
|
736
740
|
interface Objects extends Instances {
|
|
737
741
|
AnimationNode: AnimationNode;
|
|
738
|
-
AuroraHandle: AuroraHandle;
|
|
739
742
|
Capture: Capture;
|
|
740
743
|
ConfigSnapshot: ConfigSnapshot;
|
|
741
744
|
EditableImage: EditableImage;
|
|
@@ -743,6 +746,7 @@ interface Objects extends Instances {
|
|
|
743
746
|
ExecutedRemoteCommand: ExecutedRemoteCommand;
|
|
744
747
|
MLSession: MLSession;
|
|
745
748
|
Object: RBXObject;
|
|
749
|
+
OutputLink: OutputLink;
|
|
746
750
|
ScreenshotCapture: ScreenshotCapture;
|
|
747
751
|
TerrainIterateOperation: TerrainIterateOperation;
|
|
748
752
|
TerrainModifyOperation: TerrainModifyOperation;
|
|
@@ -826,35 +830,6 @@ interface AnimationNode extends RBXObject {
|
|
|
826
830
|
*/
|
|
827
831
|
readonly _nominal_AnimationNode: unique symbol;
|
|
828
832
|
}
|
|
829
|
-
/**
|
|
830
|
-
* - **Tags**: NotCreatable
|
|
831
|
-
*
|
|
832
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraHandle)
|
|
833
|
-
*
|
|
834
|
-
* @deprecated
|
|
835
|
-
*/
|
|
836
|
-
interface AuroraHandle extends RBXObject {
|
|
837
|
-
/**
|
|
838
|
-
* **DO NOT USE!**
|
|
839
|
-
*
|
|
840
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
841
|
-
* @hidden
|
|
842
|
-
* @deprecated
|
|
843
|
-
*/
|
|
844
|
-
readonly _nominal_AuroraHandle: unique symbol;
|
|
845
|
-
/**
|
|
846
|
-
* - **ThreadSafety**: Unsafe
|
|
847
|
-
*
|
|
848
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraHandle#Destroy)
|
|
849
|
-
*/
|
|
850
|
-
Destroy(this: AuroraHandle): void;
|
|
851
|
-
/**
|
|
852
|
-
* - **ThreadSafety**: Unsafe
|
|
853
|
-
*
|
|
854
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraHandle#ForEach)
|
|
855
|
-
*/
|
|
856
|
-
ForEach(this: AuroraHandle, iterator: Callback): void;
|
|
857
|
-
}
|
|
858
833
|
/**
|
|
859
834
|
* A class which defines a piece of content, such as a screenshot or video, taken in-experience.
|
|
860
835
|
*
|
|
@@ -3028,7 +3003,7 @@ interface AdService extends Instance {
|
|
|
3028
3003
|
readonly VideoAdClosed: RBXScriptSignal<(adShown: boolean) => void>;
|
|
3029
3004
|
}
|
|
3030
3005
|
/**
|
|
3031
|
-
* Collection of methods that allows
|
|
3006
|
+
* Collection of methods that allows you to track how users interact with your experiences.
|
|
3032
3007
|
*
|
|
3033
3008
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
3034
3009
|
*
|
|
@@ -3052,7 +3027,7 @@ interface AnalyticsService extends Instance {
|
|
|
3052
3027
|
* - **Tags**:
|
|
3053
3028
|
*
|
|
3054
3029
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#FireCustomEvent)
|
|
3055
|
-
* @param this Collection of methods that allows
|
|
3030
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3056
3031
|
* @param player The player who triggered the custom event. `nil` if not player related.
|
|
3057
3032
|
* @param eventCategory User defined category. This should be the name of the event.
|
|
3058
3033
|
* @param customData Optional. User defined data, could be a string, a number or a table.
|
|
@@ -3069,7 +3044,7 @@ interface AnalyticsService extends Instance {
|
|
|
3069
3044
|
* - **Tags**:
|
|
3070
3045
|
*
|
|
3071
3046
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#FireEvent)
|
|
3072
|
-
* @param this Collection of methods that allows
|
|
3047
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3073
3048
|
* @param category 'The category of event to report. Cannot contain the following characters: comma `,`, double quote `"` or newline characters `\r\n`'.
|
|
3074
3049
|
* @param value A value to be serialized and reported. Serialized length must not exceed 1 KiB, or 1024 bytes.
|
|
3075
3050
|
*
|
|
@@ -3085,7 +3060,7 @@ interface AnalyticsService extends Instance {
|
|
|
3085
3060
|
* - **Tags**:
|
|
3086
3061
|
*
|
|
3087
3062
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#FireInGameEconomyEvent)
|
|
3088
|
-
* @param this Collection of methods that allows
|
|
3063
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3089
3064
|
* @param player The player who triggered the economy event.
|
|
3090
3065
|
* @param itemName The name of the item.
|
|
3091
3066
|
* @param economyAction Indicates the acquisition or spending of an in game resource.
|
|
@@ -3112,7 +3087,7 @@ interface AnalyticsService extends Instance {
|
|
|
3112
3087
|
* - **Tags**:
|
|
3113
3088
|
*
|
|
3114
3089
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#FireLogEvent)
|
|
3115
|
-
* @param this Collection of methods that allows
|
|
3090
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3116
3091
|
* @param player The player who triggered the error event, `nil` if not player related.
|
|
3117
3092
|
* @param logLevel The specified log level (e.g. Debug, Error).
|
|
3118
3093
|
* @param message User defined message.
|
|
@@ -3134,7 +3109,7 @@ interface AnalyticsService extends Instance {
|
|
|
3134
3109
|
* - **Tags**:
|
|
3135
3110
|
*
|
|
3136
3111
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#FirePlayerProgressionEvent)
|
|
3137
|
-
* @param this Collection of methods that allows
|
|
3112
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3138
3113
|
* @param player The player who triggered the event.
|
|
3139
3114
|
* @param category A user defined category for progression.
|
|
3140
3115
|
* @param progressionStatus Indicates the status of the progression.
|
|
@@ -3161,7 +3136,7 @@ interface AnalyticsService extends Instance {
|
|
|
3161
3136
|
* - **ThreadSafety**: Unsafe
|
|
3162
3137
|
*
|
|
3163
3138
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogCustomEvent)
|
|
3164
|
-
* @param this Collection of methods that allows
|
|
3139
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3165
3140
|
* @param player The user who triggered the event.
|
|
3166
3141
|
* @param eventName The name of the custom event.
|
|
3167
3142
|
* @param value The value of the event that will be used in aggregation.
|
|
@@ -3174,7 +3149,7 @@ interface AnalyticsService extends Instance {
|
|
|
3174
3149
|
* - **ThreadSafety**: Unsafe
|
|
3175
3150
|
*
|
|
3176
3151
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogEconomyEvent)
|
|
3177
|
-
* @param this Collection of methods that allows
|
|
3152
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3178
3153
|
* @param player The user who triggered the event.
|
|
3179
3154
|
* @param flowType Should specify the direction that currency is flowing using `AnalyticsEconomyFlowType`.
|
|
3180
3155
|
* @param currencyType The name of the currency being added or removed, for example `"gold"`, `"gems"`, or `"energy"`. Limited to 5 unique currency types per experience.
|
|
@@ -3191,7 +3166,7 @@ interface AnalyticsService extends Instance {
|
|
|
3191
3166
|
* - **ThreadSafety**: Unsafe
|
|
3192
3167
|
*
|
|
3193
3168
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogFunnelStepEvent)
|
|
3194
|
-
* @param this Collection of methods that allows
|
|
3169
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3195
3170
|
* @param player The user who triggered the event.
|
|
3196
3171
|
* @param funnelName The name of the funnel. This should be the same for all steps in the funnel. Limited to 10 unique funnels per experience.
|
|
3197
3172
|
* @param funnelSessionId Optional unique identifier for the funnel session. This should be the same for all steps in the funnel. Note that this field is only necessary for **recurring** funnels, for example a purchase flow funnel or an item upgrade funnel. If you don't have a natural funnel session identifier, it's recommended to use `HttpService:GenerateGUID()`.
|
|
@@ -3206,7 +3181,7 @@ interface AnalyticsService extends Instance {
|
|
|
3206
3181
|
* - **ThreadSafety**: Unsafe
|
|
3207
3182
|
*
|
|
3208
3183
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogOnboardingFunnelStepEvent)
|
|
3209
|
-
* @param this Collection of methods that allows
|
|
3184
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3210
3185
|
* @param player The user who triggered the event.
|
|
3211
3186
|
* @param step The step number in the funnel. This should be unique for each step in the funnel. All funnels start at step 1. Limited to steps 1-100. Note that if any steps are skipped, the intermediate steps will be considered completed.
|
|
3212
3187
|
* @param stepName Optional name of the step in the funnel. This field is only used for display purposes in Roblox-provided charts.
|
|
@@ -3219,7 +3194,7 @@ interface AnalyticsService extends Instance {
|
|
|
3219
3194
|
* - **ThreadSafety**: Unsafe
|
|
3220
3195
|
*
|
|
3221
3196
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogProgressionCompleteEvent)
|
|
3222
|
-
* @param this Collection of methods that allows
|
|
3197
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3223
3198
|
* @param player The player who triggered the event.
|
|
3224
3199
|
* @param progressionPathName
|
|
3225
3200
|
* @param level
|
|
@@ -3233,7 +3208,7 @@ interface AnalyticsService extends Instance {
|
|
|
3233
3208
|
* - **ThreadSafety**: Unsafe
|
|
3234
3209
|
*
|
|
3235
3210
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogProgressionEvent)
|
|
3236
|
-
* @param this Collection of methods that allows
|
|
3211
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3237
3212
|
* @param player The player who triggered the event.
|
|
3238
3213
|
* @param progressionPathName
|
|
3239
3214
|
* @param status
|
|
@@ -3248,7 +3223,7 @@ interface AnalyticsService extends Instance {
|
|
|
3248
3223
|
* - **ThreadSafety**: Unsafe
|
|
3249
3224
|
*
|
|
3250
3225
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogProgressionFailEvent)
|
|
3251
|
-
* @param this Collection of methods that allows
|
|
3226
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3252
3227
|
* @param player The user who triggered the event.
|
|
3253
3228
|
* @param progressionPathName
|
|
3254
3229
|
* @param level
|
|
@@ -3262,7 +3237,7 @@ interface AnalyticsService extends Instance {
|
|
|
3262
3237
|
* - **ThreadSafety**: Unsafe
|
|
3263
3238
|
*
|
|
3264
3239
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogProgressionStartEvent)
|
|
3265
|
-
* @param this Collection of methods that allows
|
|
3240
|
+
* @param this Collection of methods that allows you to track how users interact with your experiences.
|
|
3266
3241
|
* @param player The player who triggered the event.
|
|
3267
3242
|
* @param progressionPathName
|
|
3268
3243
|
* @param level
|
|
@@ -3270,6 +3245,18 @@ interface AnalyticsService extends Instance {
|
|
|
3270
3245
|
* @param customFields
|
|
3271
3246
|
*/
|
|
3272
3247
|
LogProgressionStartEvent(this: AnalyticsService, player: Player, progressionPathName: string, level: number, levelName?: string, customFields?: object): void;
|
|
3248
|
+
/**
|
|
3249
|
+
* Returns coarse player segment buckets for the current experience.
|
|
3250
|
+
*
|
|
3251
|
+
* - **ThreadSafety**: Unsafe
|
|
3252
|
+
* - **Tags**: Yields
|
|
3253
|
+
*
|
|
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.
|
|
3258
|
+
*/
|
|
3259
|
+
GetPlayerSegmentsAsync(this: AnalyticsService, player: Player): object;
|
|
3273
3260
|
}
|
|
3274
3261
|
/**
|
|
3275
3262
|
* References an animation asset which can be loaded by an `AnimationController`.
|
|
@@ -4325,6 +4312,13 @@ interface AssetService extends Instance {
|
|
|
4325
4312
|
* @returns The `CreateAssetResult` and asset version number pair if successful.
|
|
4326
4313
|
*/
|
|
4327
4314
|
CreateAssetVersionAsync(this: AssetService, object: RBXObject, assetType: CastsToEnum<Enum.AssetType>, assetId: number, requestParameters?: object): unknown;
|
|
4315
|
+
/**
|
|
4316
|
+
* - **ThreadSafety**: Unsafe
|
|
4317
|
+
* - **Tags**: Yields
|
|
4318
|
+
*
|
|
4319
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#CreateDataModelContentAsync)
|
|
4320
|
+
*/
|
|
4321
|
+
CreateDataModelContentAsync(this: AssetService, content: Content, options?: object): unknown;
|
|
4328
4322
|
/**
|
|
4329
4323
|
* Creates a new `EditableImage` object populated with the given image.
|
|
4330
4324
|
*
|
|
@@ -6684,6 +6678,12 @@ interface AudioPlayer extends Instance {
|
|
|
6684
6678
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#Volume)
|
|
6685
6679
|
*/
|
|
6686
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;
|
|
6687
6687
|
/**
|
|
6688
6688
|
* Returns an array of `Wires` that are connected to the specified pin.
|
|
6689
6689
|
*
|
|
@@ -6723,7 +6723,7 @@ interface AudioPlayer extends Instance {
|
|
|
6723
6723
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#Play)
|
|
6724
6724
|
* @param this Used to play audio assets.
|
|
6725
6725
|
*/
|
|
6726
|
-
Play(this: AudioPlayer):
|
|
6726
|
+
Play(this: AudioPlayer, atTime?: number): number | undefined;
|
|
6727
6727
|
/**
|
|
6728
6728
|
* Stops the `AudioPlayer` wherever its `TimePosition` is.
|
|
6729
6729
|
*
|
|
@@ -6732,7 +6732,7 @@ interface AudioPlayer extends Instance {
|
|
|
6732
6732
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#Stop)
|
|
6733
6733
|
* @param this Used to play audio assets.
|
|
6734
6734
|
*/
|
|
6735
|
-
Stop(this: AudioPlayer):
|
|
6735
|
+
Stop(this: AudioPlayer, atTime?: number): number | undefined;
|
|
6736
6736
|
/**
|
|
6737
6737
|
* Returns a sampling of the waveform data for the loaded `Asset`.
|
|
6738
6738
|
*
|
|
@@ -7571,7 +7571,7 @@ interface AuroraScriptService extends Instance {
|
|
|
7571
7571
|
*
|
|
7572
7572
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#CreateCollection)
|
|
7573
7573
|
*/
|
|
7574
|
-
CreateCollection(this: AuroraScriptService, query: string, root?: Instance):
|
|
7574
|
+
CreateCollection(this: AuroraScriptService, query: string, root?: Instance): CollectionHandle;
|
|
7575
7575
|
/**
|
|
7576
7576
|
* - **ThreadSafety**: Safe
|
|
7577
7577
|
* - **Tags**: CustomLuaState
|
|
@@ -7586,6 +7586,12 @@ interface AuroraScriptService extends Instance {
|
|
|
7586
7586
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#FindBindings)
|
|
7587
7587
|
*/
|
|
7588
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>;
|
|
7589
7595
|
/**
|
|
7590
7596
|
* - **ThreadSafety**: Safe
|
|
7591
7597
|
*
|
|
@@ -7696,9 +7702,9 @@ interface AuroraService extends Instance {
|
|
|
7696
7702
|
/**
|
|
7697
7703
|
* - **ThreadSafety**: Unsafe
|
|
7698
7704
|
*
|
|
7699
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#
|
|
7705
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#SetReplicationLag)
|
|
7700
7706
|
*/
|
|
7701
|
-
|
|
7707
|
+
SetReplicationLag(this: AuroraService, seconds: number): void;
|
|
7702
7708
|
/**
|
|
7703
7709
|
* - **ThreadSafety**: Unsafe
|
|
7704
7710
|
*
|
|
@@ -7747,18 +7753,6 @@ interface AuroraService extends Instance {
|
|
|
7747
7753
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#FixedRateTick)
|
|
7748
7754
|
*/
|
|
7749
7755
|
readonly FixedRateTick: RBXScriptSignal<(deltaTime: number, worldStepId: number) => void>;
|
|
7750
|
-
/**
|
|
7751
|
-
* - **ThreadSafety**: Unsafe
|
|
7752
|
-
*
|
|
7753
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#Misprediction)
|
|
7754
|
-
*/
|
|
7755
|
-
readonly Misprediction: RBXScriptSignal<(remoteWorldStepId: number, mispredictedInstances: Array<unknown>) => void>;
|
|
7756
|
-
/**
|
|
7757
|
-
* - **ThreadSafety**: Unsafe
|
|
7758
|
-
*
|
|
7759
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#Rollback)
|
|
7760
|
-
*/
|
|
7761
|
-
readonly Rollback: RBXScriptSignal<(worldStepId: number) => void>;
|
|
7762
7756
|
/**
|
|
7763
7757
|
* - **ThreadSafety**: Unsafe
|
|
7764
7758
|
*
|
|
@@ -9314,6 +9308,12 @@ interface RootImportData extends BaseImportData {
|
|
|
9314
9308
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RootImportData#RigVisualization)
|
|
9315
9309
|
*/
|
|
9316
9310
|
RigVisualization: boolean;
|
|
9311
|
+
/**
|
|
9312
|
+
* - **ThreadSafety**: ReadSafe
|
|
9313
|
+
*
|
|
9314
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RootImportData#ScaleFactor)
|
|
9315
|
+
*/
|
|
9316
|
+
ScaleFactor: number;
|
|
9317
9317
|
/**
|
|
9318
9318
|
* - **ThreadSafety**: ReadSafe
|
|
9319
9319
|
*
|
|
@@ -10925,7 +10925,7 @@ interface CaptureService extends Instance {
|
|
|
10925
10925
|
*
|
|
10926
10926
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#UploadCaptureAsync)
|
|
10927
10927
|
* @param this A service which provides control over screenshot and video capture features.
|
|
10928
|
-
* @param capture
|
|
10928
|
+
* @param capture The `Capture` to upload.
|
|
10929
10929
|
* @returns Tuple of (result: `UploadCaptureResult`, assetId: `number`)
|
|
10930
10930
|
*/
|
|
10931
10931
|
UploadCaptureAsync(this: CaptureService, capture: Capture): unknown;
|
|
@@ -14913,21 +14913,6 @@ interface ControllerService extends Instance {
|
|
|
14913
14913
|
*/
|
|
14914
14914
|
readonly _nominal_ControllerService: unique symbol;
|
|
14915
14915
|
}
|
|
14916
|
-
/**
|
|
14917
|
-
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
14918
|
-
*
|
|
14919
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConversationalAIAcceptanceService)
|
|
14920
|
-
*/
|
|
14921
|
-
interface ConversationalAIAcceptanceService extends Instance {
|
|
14922
|
-
/**
|
|
14923
|
-
* **DO NOT USE!**
|
|
14924
|
-
*
|
|
14925
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
14926
|
-
* @hidden
|
|
14927
|
-
* @deprecated
|
|
14928
|
-
*/
|
|
14929
|
-
readonly _nominal_ConversationalAIAcceptanceService: unique symbol;
|
|
14930
|
-
}
|
|
14931
14916
|
/**
|
|
14932
14917
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
14933
14918
|
*
|
|
@@ -15561,6 +15546,8 @@ interface DataStoreService extends Instance {
|
|
|
15561
15546
|
*/
|
|
15562
15547
|
GetRequestBudgetForRequestType(this: DataStoreService, requestType: CastsToEnum<Enum.DataStoreRequestType>): number;
|
|
15563
15548
|
/**
|
|
15549
|
+
* Sets the rate limit for a given request type per minute.
|
|
15550
|
+
*
|
|
15564
15551
|
* - **ThreadSafety**: Unsafe
|
|
15565
15552
|
*
|
|
15566
15553
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataStoreService#SetRateLimitForRequestType)
|
|
@@ -15759,6 +15746,21 @@ interface DebuggerVariable extends Instance {
|
|
|
15759
15746
|
*/
|
|
15760
15747
|
readonly _nominal_DebuggerVariable: unique symbol;
|
|
15761
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
|
+
}
|
|
15762
15764
|
/**
|
|
15763
15765
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
15764
15766
|
*
|
|
@@ -18105,6 +18107,8 @@ interface DataStore extends GlobalDataStore {
|
|
|
18105
18107
|
*/
|
|
18106
18108
|
ListVersionsAsync(this: DataStore, key: string, sortDirection?: CastsToEnum<Enum.SortDirection>, minDate?: number, maxDate?: number, pageSize?: number): DataStoreVersionPages;
|
|
18107
18109
|
/**
|
|
18110
|
+
* **Deprecated:**
|
|
18111
|
+
*
|
|
18108
18112
|
* Permanently deletes the specified version of a key.
|
|
18109
18113
|
*
|
|
18110
18114
|
* - **ThreadSafety**: Unsafe
|
|
@@ -19055,6 +19059,8 @@ interface GuiButton extends GuiObject {
|
|
|
19055
19059
|
*/
|
|
19056
19060
|
readonly MouseButton2Up: RBXScriptSignal<(x: number, y: number) => void>;
|
|
19057
19061
|
/**
|
|
19062
|
+
* Fires when a right-click is detected on desktop, long press detected on mobile, or triangle / Y activated in UI navigation mode on console. This function is not available yet.
|
|
19063
|
+
*
|
|
19058
19064
|
* - **ThreadSafety**: Unsafe
|
|
19059
19065
|
*
|
|
19060
19066
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GuiButton#SecondaryActivated)
|
|
@@ -20065,7 +20071,7 @@ interface TextBox extends GuiObject {
|
|
|
20065
20071
|
*/
|
|
20066
20072
|
Font: Enum.Font;
|
|
20067
20073
|
/**
|
|
20068
|
-
* Determines the font used to render text.
|
|
20074
|
+
* Determines the font face used to render text.
|
|
20069
20075
|
*
|
|
20070
20076
|
* - **ThreadSafety**: ReadSafe
|
|
20071
20077
|
*
|
|
@@ -20102,7 +20108,7 @@ interface TextBox extends GuiObject {
|
|
|
20102
20108
|
*/
|
|
20103
20109
|
MaxVisibleGraphemes: number;
|
|
20104
20110
|
/**
|
|
20105
|
-
* 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.
|
|
20106
20112
|
*
|
|
20107
20113
|
* - **ThreadSafety**: ReadSafe
|
|
20108
20114
|
*
|
|
@@ -20123,7 +20129,7 @@ interface TextBox extends GuiObject {
|
|
|
20123
20129
|
*/
|
|
20124
20130
|
readonly OpenTypeFeaturesError: string;
|
|
20125
20131
|
/**
|
|
20126
|
-
* 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`.
|
|
20127
20133
|
*
|
|
20128
20134
|
* - **ThreadSafety**: ReadSafe
|
|
20129
20135
|
*
|
|
@@ -20131,7 +20137,7 @@ interface TextBox extends GuiObject {
|
|
|
20131
20137
|
*/
|
|
20132
20138
|
PlaceholderColor3: Color3;
|
|
20133
20139
|
/**
|
|
20134
|
-
* 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`.
|
|
20135
20141
|
*
|
|
20136
20142
|
* - **ThreadSafety**: ReadSafe
|
|
20137
20143
|
*
|
|
@@ -20139,7 +20145,7 @@ interface TextBox extends GuiObject {
|
|
|
20139
20145
|
*/
|
|
20140
20146
|
PlaceholderText: string;
|
|
20141
20147
|
/**
|
|
20142
|
-
* Determines whether the `TextBox` renders the `
|
|
20148
|
+
* Determines whether the `TextBox` renders the `Text` string using rich text formatting.
|
|
20143
20149
|
*
|
|
20144
20150
|
* - **ThreadSafety**: ReadSafe
|
|
20145
20151
|
*
|
|
@@ -20147,7 +20153,7 @@ interface TextBox extends GuiObject {
|
|
|
20147
20153
|
*/
|
|
20148
20154
|
RichText: boolean;
|
|
20149
20155
|
/**
|
|
20150
|
-
* Determines the starting position of a text selection
|
|
20156
|
+
* Determines the starting position of a text selection.
|
|
20151
20157
|
*
|
|
20152
20158
|
* - **ThreadSafety**: ReadSafe
|
|
20153
20159
|
*
|
|
@@ -20155,7 +20161,7 @@ interface TextBox extends GuiObject {
|
|
|
20155
20161
|
*/
|
|
20156
20162
|
SelectionStart: number;
|
|
20157
20163
|
/**
|
|
20158
|
-
* If set to true
|
|
20164
|
+
* If set to `true`, input native to the platform is used instead of Roblox's built-in keyboard.
|
|
20159
20165
|
*
|
|
20160
20166
|
* - **ThreadSafety**: ReadSafe
|
|
20161
20167
|
*
|
|
@@ -20163,7 +20169,7 @@ interface TextBox extends GuiObject {
|
|
|
20163
20169
|
*/
|
|
20164
20170
|
ShowNativeInput: boolean;
|
|
20165
20171
|
/**
|
|
20166
|
-
* Determines the string rendered by the
|
|
20172
|
+
* Determines the string rendered by the `TextBox` element.
|
|
20167
20173
|
*
|
|
20168
20174
|
* - **ThreadSafety**: ReadSafe
|
|
20169
20175
|
*
|
|
@@ -20171,7 +20177,7 @@ interface TextBox extends GuiObject {
|
|
|
20171
20177
|
*/
|
|
20172
20178
|
Text: string;
|
|
20173
20179
|
/**
|
|
20174
|
-
* The size of a
|
|
20180
|
+
* The size of a `TextBox` element's text in offsets.
|
|
20175
20181
|
*
|
|
20176
20182
|
* - **ThreadSafety**: ReadSafe
|
|
20177
20183
|
* - **Tags**: NotReplicated
|
|
@@ -20191,7 +20197,7 @@ interface TextBox extends GuiObject {
|
|
|
20191
20197
|
*/
|
|
20192
20198
|
TextColor: BrickColor;
|
|
20193
20199
|
/**
|
|
20194
|
-
* Determines the color of rendered text.
|
|
20200
|
+
* Determines the color of non-placeholder rendered text.
|
|
20195
20201
|
*
|
|
20196
20202
|
* - **ThreadSafety**: ReadSafe
|
|
20197
20203
|
*
|
|
@@ -20213,7 +20219,7 @@ interface TextBox extends GuiObject {
|
|
|
20213
20219
|
*/
|
|
20214
20220
|
TextEditable: boolean;
|
|
20215
20221
|
/**
|
|
20216
|
-
* Whether the text fits within the constraints of the TextBox
|
|
20222
|
+
* Whether the text fits within the constraints of the `TextBox`.
|
|
20217
20223
|
*
|
|
20218
20224
|
* - **ThreadSafety**: ReadSafe
|
|
20219
20225
|
* - **Tags**: NotReplicated
|
|
@@ -20222,7 +20228,7 @@ interface TextBox extends GuiObject {
|
|
|
20222
20228
|
*/
|
|
20223
20229
|
readonly TextFits: boolean;
|
|
20224
20230
|
/**
|
|
20225
|
-
* Changes whether text is resized to fit the
|
|
20231
|
+
* Changes whether text is resized to fit within the `TextBox`.
|
|
20226
20232
|
*
|
|
20227
20233
|
* - **ThreadSafety**: ReadSafe
|
|
20228
20234
|
*
|
|
@@ -20254,7 +20260,7 @@ interface TextBox extends GuiObject {
|
|
|
20254
20260
|
*/
|
|
20255
20261
|
TextStrokeTransparency: number;
|
|
20256
20262
|
/**
|
|
20257
|
-
* Determines the transparency of rendered text.
|
|
20263
|
+
* Determines the transparency of the rendered text.
|
|
20258
20264
|
*
|
|
20259
20265
|
* - **ThreadSafety**: ReadSafe
|
|
20260
20266
|
*
|
|
@@ -20262,7 +20268,7 @@ interface TextBox extends GuiObject {
|
|
|
20262
20268
|
*/
|
|
20263
20269
|
TextTransparency: number;
|
|
20264
20270
|
/**
|
|
20265
|
-
* Controls the truncation of the text displayed in
|
|
20271
|
+
* Controls the truncation of the text displayed in the `TextBox`.
|
|
20266
20272
|
*
|
|
20267
20273
|
* - **ThreadSafety**: ReadSafe
|
|
20268
20274
|
*
|
|
@@ -20281,7 +20287,7 @@ interface TextBox extends GuiObject {
|
|
|
20281
20287
|
*/
|
|
20282
20288
|
TextWrap: boolean;
|
|
20283
20289
|
/**
|
|
20284
|
-
* 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.
|
|
20285
20291
|
*
|
|
20286
20292
|
* - **ThreadSafety**: ReadSafe
|
|
20287
20293
|
*
|
|
@@ -20289,7 +20295,7 @@ interface TextBox extends GuiObject {
|
|
|
20289
20295
|
*/
|
|
20290
20296
|
TextWrapped: boolean;
|
|
20291
20297
|
/**
|
|
20292
|
-
* Determines the horizontal alignment of rendered text.
|
|
20298
|
+
* Determines the horizontal alignment of the rendered text.
|
|
20293
20299
|
*
|
|
20294
20300
|
* - **ThreadSafety**: ReadSafe
|
|
20295
20301
|
*
|
|
@@ -20297,7 +20303,7 @@ interface TextBox extends GuiObject {
|
|
|
20297
20303
|
*/
|
|
20298
20304
|
TextXAlignment: Enum.TextXAlignment;
|
|
20299
20305
|
/**
|
|
20300
|
-
* Determines the vertical alignment of rendered text.
|
|
20306
|
+
* Determines the vertical alignment of the rendered text.
|
|
20301
20307
|
*
|
|
20302
20308
|
* - **ThreadSafety**: ReadSafe
|
|
20303
20309
|
*
|
|
@@ -20305,7 +20311,7 @@ interface TextBox extends GuiObject {
|
|
|
20305
20311
|
*/
|
|
20306
20312
|
TextYAlignment: Enum.TextYAlignment;
|
|
20307
20313
|
/**
|
|
20308
|
-
* Forces the client to focus on the TextBox
|
|
20314
|
+
* Forces the client to focus on the `TextBox`.
|
|
20309
20315
|
*
|
|
20310
20316
|
* - **ThreadSafety**: Unsafe
|
|
20311
20317
|
*
|
|
@@ -20333,7 +20339,7 @@ interface TextBox extends GuiObject {
|
|
|
20333
20339
|
*/
|
|
20334
20340
|
ReleaseFocus(this: TextBox, submitted?: boolean): void;
|
|
20335
20341
|
/**
|
|
20336
|
-
* Fires when the
|
|
20342
|
+
* Fires when the `TextBox` loses its focus.
|
|
20337
20343
|
*
|
|
20338
20344
|
* - **ThreadSafety**: Unsafe
|
|
20339
20345
|
*
|
|
@@ -20512,6 +20518,24 @@ interface VideoFrame extends GuiObject {
|
|
|
20512
20518
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoFrame#Resolution)
|
|
20513
20519
|
*/
|
|
20514
20520
|
readonly Resolution: Vector2;
|
|
20521
|
+
/**
|
|
20522
|
+
* - **ThreadSafety**: ReadSafe
|
|
20523
|
+
*
|
|
20524
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoFrame#RollOffMaxDistance)
|
|
20525
|
+
*/
|
|
20526
|
+
RollOffMaxDistance: number;
|
|
20527
|
+
/**
|
|
20528
|
+
* - **ThreadSafety**: ReadSafe
|
|
20529
|
+
*
|
|
20530
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoFrame#RollOffMinDistance)
|
|
20531
|
+
*/
|
|
20532
|
+
RollOffMinDistance: number;
|
|
20533
|
+
/**
|
|
20534
|
+
* - **ThreadSafety**: ReadSafe
|
|
20535
|
+
*
|
|
20536
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoFrame#RollOffMode)
|
|
20537
|
+
*/
|
|
20538
|
+
RollOffMode: Enum.RollOffMode;
|
|
20515
20539
|
/**
|
|
20516
20540
|
* Indicates the length of the `VideoFrame.Video` in seconds.
|
|
20517
20541
|
*
|
|
@@ -25393,6 +25417,21 @@ interface IXPService extends Instance {
|
|
|
25393
25417
|
*/
|
|
25394
25418
|
readonly _nominal_IXPService: unique symbol;
|
|
25395
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
|
+
}
|
|
25396
25435
|
/**
|
|
25397
25436
|
* - **Tags**: NotCreatable, NotReplicated
|
|
25398
25437
|
*
|
|
@@ -26112,6 +26151,21 @@ interface InstanceFileSyncService extends Instance {
|
|
|
26112
26151
|
*/
|
|
26113
26152
|
readonly _nominal_InstanceFileSyncService: unique symbol;
|
|
26114
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
|
+
}
|
|
26115
26169
|
/**
|
|
26116
26170
|
* - **Tags**: NotReplicated
|
|
26117
26171
|
*
|
|
@@ -28027,8 +28081,6 @@ interface MLService extends Instance {
|
|
|
28027
28081
|
CreateSessionAsync(this: MLService, assetId: string): MLSession;
|
|
28028
28082
|
}
|
|
28029
28083
|
/**
|
|
28030
|
-
* - **Tags**: NotBrowsable
|
|
28031
|
-
*
|
|
28032
28084
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription)
|
|
28033
28085
|
*/
|
|
28034
28086
|
interface MakeupDescription extends Instance {
|
|
@@ -28244,6 +28296,12 @@ interface MarketplaceService extends Instance {
|
|
|
28244
28296
|
* @param currencyType Ignored.
|
|
28245
28297
|
*/
|
|
28246
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;
|
|
28247
28305
|
/**
|
|
28248
28306
|
* Prompts a user to purchase a subscription for the given `subscriptionId`.
|
|
28249
28307
|
*
|
|
@@ -28531,6 +28589,12 @@ interface MarketplaceService extends Instance {
|
|
|
28531
28589
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#PromptPurchaseFinished)
|
|
28532
28590
|
*/
|
|
28533
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>;
|
|
28534
28598
|
/**
|
|
28535
28599
|
* Fires when a purchase prompt for a subscription is closed.
|
|
28536
28600
|
*
|
|
@@ -35523,6 +35587,7 @@ interface Player extends Instance {
|
|
|
35523
35587
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#LoadCharacterWithHumanoidDescription)
|
|
35524
35588
|
* @param this An object that represents a presently connected client to the experience.
|
|
35525
35589
|
* @param humanoidDescription A `HumanoidDescription` containing traits like body parts/colors, body scaling, accessories, clothing, and animations that will be equipped to the loaded character.
|
|
35590
|
+
* @param assetTypeVerification The asset type verification mode.
|
|
35526
35591
|
*
|
|
35527
35592
|
* @deprecated LoadCharacterWithHumanoidDescriptionAsync
|
|
35528
35593
|
*/
|
|
@@ -35536,8 +35601,9 @@ interface Player extends Instance {
|
|
|
35536
35601
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#LoadCharacterWithHumanoidDescriptionAsync)
|
|
35537
35602
|
* @param this An object that represents a presently connected client to the experience.
|
|
35538
35603
|
* @param humanoidDescription A `HumanoidDescription` containing traits like body parts/colors, body scaling, accessories, clothing, and animations that will be equipped to the loaded character.
|
|
35604
|
+
* @param assetTypeVerification The asset type verification mode.
|
|
35539
35605
|
*/
|
|
35540
|
-
LoadCharacterWithHumanoidDescriptionAsync(this: Player, humanoidDescription: HumanoidDescription): void;
|
|
35606
|
+
LoadCharacterWithHumanoidDescriptionAsync(this: Player, humanoidDescription: HumanoidDescription, assetTypeVerification?: CastsToEnum<Enum.AssetTypeVerification>): void;
|
|
35541
35607
|
/**
|
|
35542
35608
|
* Requests that the server stream to the player around the specified location.
|
|
35543
35609
|
*
|
|
@@ -38017,7 +38083,7 @@ interface RunService extends Instance {
|
|
|
38017
38083
|
*
|
|
38018
38084
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#Misprediction)
|
|
38019
38085
|
*/
|
|
38020
|
-
readonly Misprediction: RBXScriptSignal<(
|
|
38086
|
+
readonly Misprediction: RBXScriptSignal<(time: number, instances: Array<unknown>, stats: object) => void>;
|
|
38021
38087
|
/**
|
|
38022
38088
|
* Fires every frame, after the physics simulation has completed.
|
|
38023
38089
|
*
|
|
@@ -38058,6 +38124,12 @@ interface RunService extends Instance {
|
|
|
38058
38124
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#RenderStepped)
|
|
38059
38125
|
*/
|
|
38060
38126
|
readonly RenderStepped: RBXScriptSignal<(deltaTime: number) => void>;
|
|
38127
|
+
/**
|
|
38128
|
+
* - **ThreadSafety**: Unsafe
|
|
38129
|
+
*
|
|
38130
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#Rollback)
|
|
38131
|
+
*/
|
|
38132
|
+
readonly Rollback: RBXScriptSignal<(time: number) => void>;
|
|
38061
38133
|
/**
|
|
38062
38134
|
* Fires every frame, prior to the physics simulation.
|
|
38063
38135
|
*
|
|
@@ -38597,6 +38669,12 @@ interface ControllerPartSensor extends ControllerSensor {
|
|
|
38597
38669
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ControllerPartSensor#SearchDistance)
|
|
38598
38670
|
*/
|
|
38599
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;
|
|
38600
38678
|
/**
|
|
38601
38679
|
* A reference to the `BasePart` hit by the sensor.
|
|
38602
38680
|
*
|
|
@@ -40719,6 +40797,12 @@ interface SoundService extends Instance {
|
|
|
40719
40797
|
Enum.ListenerType.ObjectPosition,
|
|
40720
40798
|
BasePart
|
|
40721
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;
|
|
40722
40806
|
/**
|
|
40723
40807
|
* Plays a copy of a `Sound` locally, such that it will only be heard by the client calling this method.
|
|
40724
40808
|
*
|
|
@@ -41509,6 +41593,21 @@ interface StudioCameraService extends Instance {
|
|
|
41509
41593
|
*/
|
|
41510
41594
|
readonly _nominal_StudioCameraService: unique symbol;
|
|
41511
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
|
+
}
|
|
41512
41611
|
/**
|
|
41513
41612
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
41514
41613
|
*
|
|
@@ -41569,6 +41668,21 @@ interface StudioPublishService extends Instance {
|
|
|
41569
41668
|
*/
|
|
41570
41669
|
readonly _nominal_StudioPublishService: unique symbol;
|
|
41571
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
|
+
}
|
|
41572
41686
|
/**
|
|
41573
41687
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
41574
41688
|
*
|
|
@@ -41804,6 +41918,12 @@ interface StyleRule extends StyleBase {
|
|
|
41804
41918
|
* @param value Property value to set, for example `Color3.new(1, 0, 0.25)`.
|
|
41805
41919
|
*/
|
|
41806
41920
|
SetProperty(this: StyleRule, name: string, value: unknown): void;
|
|
41921
|
+
/**
|
|
41922
|
+
* - **ThreadSafety**: Unsafe
|
|
41923
|
+
*
|
|
41924
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleRule#SetPropertyTransition)
|
|
41925
|
+
*/
|
|
41926
|
+
SetPropertyTransition(this: StyleRule, property: string, transitionParams: unknown): void;
|
|
41807
41927
|
/**
|
|
41808
41928
|
* - **ThreadSafety**: Unsafe
|
|
41809
41929
|
*
|
|
@@ -41903,8 +42023,6 @@ interface StyleLink extends Instance {
|
|
|
41903
42023
|
StyleSheet: StyleSheet | undefined;
|
|
41904
42024
|
}
|
|
41905
42025
|
/**
|
|
41906
|
-
* - **Tags**: NotBrowsable
|
|
41907
|
-
*
|
|
41908
42026
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery)
|
|
41909
42027
|
*/
|
|
41910
42028
|
interface StyleQuery extends Instance {
|
|
@@ -45234,6 +45352,20 @@ interface UICorner extends UIComponent {
|
|
|
45234
45352
|
* @deprecated
|
|
45235
45353
|
*/
|
|
45236
45354
|
readonly _nominal_UICorner: unique symbol;
|
|
45355
|
+
/**
|
|
45356
|
+
* - **ThreadSafety**: ReadSafe
|
|
45357
|
+
* - **Tags**: Hidden, NotReplicated
|
|
45358
|
+
*
|
|
45359
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UICorner#BottomLeftRadius)
|
|
45360
|
+
*/
|
|
45361
|
+
set BottomLeftRadius(value: UDim);
|
|
45362
|
+
/**
|
|
45363
|
+
* - **ThreadSafety**: ReadSafe
|
|
45364
|
+
* - **Tags**: Hidden, NotReplicated
|
|
45365
|
+
*
|
|
45366
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UICorner#BottomRightRadius)
|
|
45367
|
+
*/
|
|
45368
|
+
set BottomRightRadius(value: UDim);
|
|
45237
45369
|
/**
|
|
45238
45370
|
* Determines the radius of the component.
|
|
45239
45371
|
*
|
|
@@ -45242,6 +45374,20 @@ interface UICorner extends UIComponent {
|
|
|
45242
45374
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UICorner#CornerRadius)
|
|
45243
45375
|
*/
|
|
45244
45376
|
CornerRadius: UDim;
|
|
45377
|
+
/**
|
|
45378
|
+
* - **ThreadSafety**: ReadSafe
|
|
45379
|
+
* - **Tags**: Hidden, NotReplicated
|
|
45380
|
+
*
|
|
45381
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UICorner#TopLeftRadius)
|
|
45382
|
+
*/
|
|
45383
|
+
set TopLeftRadius(value: UDim);
|
|
45384
|
+
/**
|
|
45385
|
+
* - **ThreadSafety**: ReadSafe
|
|
45386
|
+
* - **Tags**: Hidden, NotReplicated
|
|
45387
|
+
*
|
|
45388
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UICorner#TopRightRadius)
|
|
45389
|
+
*/
|
|
45390
|
+
set TopRightRadius(value: UDim);
|
|
45245
45391
|
}
|
|
45246
45392
|
/**
|
|
45247
45393
|
* Instance which facilitates and encourages interaction with UI elements in an experience.
|
|
@@ -46105,6 +46251,8 @@ interface UIScale extends UIComponent {
|
|
|
46105
46251
|
Scale: number;
|
|
46106
46252
|
}
|
|
46107
46253
|
/**
|
|
46254
|
+
* - **Tags**: NotBrowsable
|
|
46255
|
+
*
|
|
46108
46256
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow)
|
|
46109
46257
|
*/
|
|
46110
46258
|
interface UIShadow extends UIComponent {
|
|
@@ -48850,6 +48998,21 @@ interface MLSession extends RBXObject {
|
|
|
48850
48998
|
*/
|
|
48851
48999
|
ForwardAsync(this: MLSession, data: object): object;
|
|
48852
49000
|
}
|
|
49001
|
+
/**
|
|
49002
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
49003
|
+
*
|
|
49004
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/OutputLink)
|
|
49005
|
+
*/
|
|
49006
|
+
interface OutputLink extends RBXObject {
|
|
49007
|
+
/**
|
|
49008
|
+
* **DO NOT USE!**
|
|
49009
|
+
*
|
|
49010
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
49011
|
+
* @hidden
|
|
49012
|
+
* @deprecated
|
|
49013
|
+
*/
|
|
49014
|
+
readonly _nominal_OutputLink: unique symbol;
|
|
49015
|
+
}
|
|
48853
49016
|
/**
|
|
48854
49017
|
* - **Tags**: NotCreatable, NotReplicated
|
|
48855
49018
|
*
|