@rbxts/types 1.0.915 → 1.0.916
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 +138 -11
- package/include/generated/PluginSecurity.d.ts +169 -1
- package/include/generated/enums.d.ts +119 -2
- package/package.json +1 -1
|
@@ -99,6 +99,7 @@ interface Services {
|
|
|
99
99
|
InstanceExtensionsService: InstanceExtensionsService;
|
|
100
100
|
InstanceFileSyncService: InstanceFileSyncService;
|
|
101
101
|
InternalMessagingService: InternalMessagingService;
|
|
102
|
+
InternalMessagingServiceVerifier: InternalMessagingServiceVerifier;
|
|
102
103
|
InternalSyncService: InternalSyncService;
|
|
103
104
|
IXPService: IXPService;
|
|
104
105
|
JointsService: JointsService;
|
|
@@ -149,6 +150,7 @@ interface Services {
|
|
|
149
150
|
PluginManagementService: PluginManagementService;
|
|
150
151
|
PluginPolicyService: PluginPolicyService;
|
|
151
152
|
PolicyService: PolicyService;
|
|
153
|
+
Preloaded: Preloaded;
|
|
152
154
|
ProceduralBehaviorSchedulerService: ProceduralBehaviorSchedulerService;
|
|
153
155
|
ProcessInstancePhysicsService: ProcessInstancePhysicsService;
|
|
154
156
|
ProximityPromptService: ProximityPromptService;
|
|
@@ -203,6 +205,7 @@ interface Services {
|
|
|
203
205
|
StudioCameraService: StudioCameraService;
|
|
204
206
|
StudioCaptureService: StudioCaptureService;
|
|
205
207
|
StudioDeviceEmulatorService: StudioDeviceEmulatorService;
|
|
208
|
+
StudioDeviceSimulatorService: StudioDeviceSimulatorService;
|
|
206
209
|
StudioPublishService: StudioPublishService;
|
|
207
210
|
StudioScriptDebugEventListener: StudioScriptDebugEventListener;
|
|
208
211
|
StudioSdkService: StudioSdkService;
|
|
@@ -2961,6 +2964,7 @@ interface AdService extends Instance {
|
|
|
2961
2964
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdService#GetAdAvailabilityNowAsync)
|
|
2962
2965
|
* @param this A class that allows the display of mobile video ads.
|
|
2963
2966
|
* @param adFormat The format of the requested ad. For example, `RewardedVideo`.
|
|
2967
|
+
* @returns A dictionary with the `AdAvailabilityResult` for the requested ad format.
|
|
2964
2968
|
*/
|
|
2965
2969
|
GetAdAvailabilityNowAsync(this: AdService, adFormat: CastsToEnum<Enum.AdFormat>): object;
|
|
2966
2970
|
/**
|
|
@@ -17573,6 +17577,8 @@ interface GeneratedFolder extends Folder {
|
|
|
17573
17577
|
* - **ThreadSafety**: Unsafe
|
|
17574
17578
|
*
|
|
17575
17579
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GeneratedFolder#SetPrimaryPart)
|
|
17580
|
+
* @param this
|
|
17581
|
+
* @param part
|
|
17576
17582
|
*/
|
|
17577
17583
|
SetPrimaryPart(this: GeneratedFolder, part: BasePart): void;
|
|
17578
17584
|
}
|
|
@@ -17825,7 +17831,7 @@ interface GeometryService extends Instance {
|
|
|
17825
17831
|
* - `Radius` — If provided, this will be the center of the area to be fragmented. Either `Origin` and `Radius` should both be provided, or neither.
|
|
17826
17832
|
*
|
|
17827
17833
|
*
|
|
17828
|
-
* @returns An array of `Vector3` which is typically passed into `FragmentAsync()`. The output depends on the options provided. If `Origin` and `Radius` are provided, then the output array will contain several `Vector3` elements which will all be located within the radius, but the
|
|
17834
|
+
* @returns An array of `Vector3` which is typically passed into `FragmentAsync()`. The output depends on the options provided. If `Origin` and `Radius` are provided, then the output array will contain several `Vector3` elements which will all be located within the radius, but the first element of the array will be an inner array containing many `Vector3` sites which are outside the radius. If `Origin` and `Radius` are not provided, the output will simply be an array of `Vector3` positions within the extents of the input `part`.
|
|
17829
17835
|
*/
|
|
17830
17836
|
GenerateFragmentSites(this: GeometryService, part: BasePart, options?: object): Array<unknown>;
|
|
17831
17837
|
/**
|
|
@@ -26214,6 +26220,21 @@ interface InternalMessagingService extends Instance {
|
|
|
26214
26220
|
*/
|
|
26215
26221
|
readonly _nominal_InternalMessagingService: unique symbol;
|
|
26216
26222
|
}
|
|
26223
|
+
/**
|
|
26224
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
26225
|
+
*
|
|
26226
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InternalMessagingServiceVerifier)
|
|
26227
|
+
*/
|
|
26228
|
+
interface InternalMessagingServiceVerifier extends Instance {
|
|
26229
|
+
/**
|
|
26230
|
+
* **DO NOT USE!**
|
|
26231
|
+
*
|
|
26232
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
26233
|
+
* @hidden
|
|
26234
|
+
* @deprecated
|
|
26235
|
+
*/
|
|
26236
|
+
readonly _nominal_InternalMessagingServiceVerifier: unique symbol;
|
|
26237
|
+
}
|
|
26217
26238
|
/**
|
|
26218
26239
|
* - **Tags**: NotReplicated
|
|
26219
26240
|
*
|
|
@@ -27861,7 +27882,7 @@ interface LogService extends Instance {
|
|
|
27861
27882
|
*/
|
|
27862
27883
|
readonly _nominal_LogService: unique symbol;
|
|
27863
27884
|
/**
|
|
27864
|
-
* Clears
|
|
27885
|
+
* Clears Roblox Studio's **Output** window.
|
|
27865
27886
|
*
|
|
27866
27887
|
* - **ThreadSafety**: Unsafe
|
|
27867
27888
|
*
|
|
@@ -27870,14 +27891,19 @@ interface LogService extends Instance {
|
|
|
27870
27891
|
*/
|
|
27871
27892
|
ClearOutput(this: LogService): void;
|
|
27872
27893
|
/**
|
|
27894
|
+
* Logs a message at the `MessageType.MessageError` level and throws a structured error with optional context.
|
|
27895
|
+
*
|
|
27873
27896
|
* - **ThreadSafety**: Unsafe
|
|
27874
27897
|
* - **Tags**: CustomLuaState
|
|
27875
27898
|
*
|
|
27876
27899
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LogService#Error)
|
|
27900
|
+
* @param this A service that allows you to read outputted text.
|
|
27901
|
+
* @param message The message string. Supports `{key}` template placeholders when a context table is provided.
|
|
27902
|
+
* @param context An optional dictionary of key-value pairs. When provided, `{key}` placeholders in the message are replaced with the corresponding values.
|
|
27877
27903
|
*/
|
|
27878
27904
|
Error(this: LogService, message: string, context?: object): void;
|
|
27879
27905
|
/**
|
|
27880
|
-
* Returns a table of tables, each with the message string, message type, and timestamp of a message that the client displays in the
|
|
27906
|
+
* Returns a table of tables, each with the message string, message type, and timestamp of a message that the client displays in the **Output** window.
|
|
27881
27907
|
*
|
|
27882
27908
|
* - **ThreadSafety**: Unsafe
|
|
27883
27909
|
*
|
|
@@ -27886,31 +27912,52 @@ interface LogService extends Instance {
|
|
|
27886
27912
|
*/
|
|
27887
27913
|
GetLogHistory(this: LogService): Array<LogInfo>;
|
|
27888
27914
|
/**
|
|
27915
|
+
* Logs a message at the `MessageType.MessageInfo` level with optional structured context.
|
|
27916
|
+
*
|
|
27889
27917
|
* - **ThreadSafety**: Unsafe
|
|
27890
27918
|
* - **Tags**: CustomLuaState
|
|
27891
27919
|
*
|
|
27892
27920
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LogService#Info)
|
|
27921
|
+
* @param this A service that allows you to read outputted text.
|
|
27922
|
+
* @param message The message string. Supports `{key}` template placeholders when a context table is provided.
|
|
27923
|
+
* @param context An optional dictionary of key-value pairs. When provided, `{key}` placeholders in the message are replaced with the corresponding values.
|
|
27893
27924
|
*/
|
|
27894
27925
|
Info(this: LogService, message: string, context?: object): void;
|
|
27895
27926
|
/**
|
|
27927
|
+
* Logs a message at the specified level with optional structured context.
|
|
27928
|
+
*
|
|
27896
27929
|
* - **ThreadSafety**: Unsafe
|
|
27897
27930
|
* - **Tags**: CustomLuaState
|
|
27898
27931
|
*
|
|
27899
27932
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LogService#Log)
|
|
27933
|
+
* @param this A service that allows you to read outputted text.
|
|
27934
|
+
* @param messageType The `MessageType` specifying the log level.
|
|
27935
|
+
* @param message The message string. Supports `{key}` template placeholders when a context table is provided.
|
|
27936
|
+
* @param context An optional dictionary of key-value pairs. When provided, `{key}` placeholders in the message are replaced with the corresponding values.
|
|
27900
27937
|
*/
|
|
27901
27938
|
Log(this: LogService, messageType: CastsToEnum<Enum.MessageType>, message: string, context?: object): void;
|
|
27902
27939
|
/**
|
|
27940
|
+
* Logs a message at the `MessageType.MessageOutput` level with optional structured context.
|
|
27941
|
+
*
|
|
27903
27942
|
* - **ThreadSafety**: Unsafe
|
|
27904
27943
|
* - **Tags**: CustomLuaState
|
|
27905
27944
|
*
|
|
27906
27945
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LogService#Output)
|
|
27946
|
+
* @param this A service that allows you to read outputted text.
|
|
27947
|
+
* @param message The message string. Supports `{key}` template placeholders when a context table is provided.
|
|
27948
|
+
* @param context An optional dictionary of key-value pairs. When provided, `{key}` placeholders in the message are replaced with the corresponding values.
|
|
27907
27949
|
*/
|
|
27908
27950
|
Output(this: LogService, message: string, context?: object): void;
|
|
27909
27951
|
/**
|
|
27952
|
+
* Logs a message at the `MessageType.MessageWarning` level with optional structured context.
|
|
27953
|
+
*
|
|
27910
27954
|
* - **ThreadSafety**: Unsafe
|
|
27911
27955
|
* - **Tags**: CustomLuaState
|
|
27912
27956
|
*
|
|
27913
27957
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LogService#Warn)
|
|
27958
|
+
* @param this A service that allows you to read outputted text.
|
|
27959
|
+
* @param message The message string. Supports `{key}` template placeholders when a context table is provided.
|
|
27960
|
+
* @param context An optional dictionary of key-value pairs. When provided, `{key}` placeholders in the message are replaced with the corresponding values.
|
|
27914
27961
|
*/
|
|
27915
27962
|
Warn(this: LogService, message: string, context?: object): void;
|
|
27916
27963
|
/**
|
|
@@ -28304,6 +28351,12 @@ interface MarketplaceService extends Instance {
|
|
|
28304
28351
|
* @deprecated
|
|
28305
28352
|
*/
|
|
28306
28353
|
readonly _nominal_MarketplaceService: unique symbol;
|
|
28354
|
+
/**
|
|
28355
|
+
* - **ThreadSafety**: Unsafe
|
|
28356
|
+
*
|
|
28357
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#BindReceiptHandler)
|
|
28358
|
+
*/
|
|
28359
|
+
BindReceiptHandler(this: MarketplaceService, transactionType: CastsToEnum<Enum.ReceiptType>, handler: Callback, filter?: Array<unknown>): RBXScriptConnection;
|
|
28307
28360
|
/**
|
|
28308
28361
|
* Prompts a user to purchase multiple avatar items with the given `assetId` or `bundleId`.
|
|
28309
28362
|
*
|
|
@@ -28588,6 +28641,13 @@ interface MarketplaceService extends Instance {
|
|
|
28588
28641
|
* @returns Indicates whether the given player's inventory contains the given bundle.
|
|
28589
28642
|
*/
|
|
28590
28643
|
PlayerOwnsBundleAsync(this: MarketplaceService, player: Player, bundleId: number): boolean;
|
|
28644
|
+
/**
|
|
28645
|
+
* - **ThreadSafety**: Unsafe
|
|
28646
|
+
* - **Tags**: Yields
|
|
28647
|
+
*
|
|
28648
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#PromptRobuxTransferAsync)
|
|
28649
|
+
*/
|
|
28650
|
+
PromptRobuxTransferAsync(this: MarketplaceService, sender: Player, receiverUserId: number, amount: number): string;
|
|
28591
28651
|
/**
|
|
28592
28652
|
* Takes a list of product IDs and returns a personalized ordered list of those products.
|
|
28593
28653
|
*
|
|
@@ -33045,6 +33105,7 @@ interface ProceduralModel extends Model {
|
|
|
33045
33105
|
* - **ThreadSafety**: Unsafe
|
|
33046
33106
|
*
|
|
33047
33107
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ProceduralModel#ForceGeneration)
|
|
33108
|
+
* @param this
|
|
33048
33109
|
*/
|
|
33049
33110
|
ForceGeneration(this: ProceduralModel): boolean;
|
|
33050
33111
|
/**
|
|
@@ -33052,6 +33113,7 @@ interface ProceduralModel extends Model {
|
|
|
33052
33113
|
* - **Tags**: Yields
|
|
33053
33114
|
*
|
|
33054
33115
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ProceduralModel#WaitForGenerationAsync)
|
|
33116
|
+
* @param this
|
|
33055
33117
|
*/
|
|
33056
33118
|
WaitForGenerationAsync(this: ProceduralModel): boolean;
|
|
33057
33119
|
}
|
|
@@ -37070,6 +37132,21 @@ interface SunRaysEffect extends PostEffect {
|
|
|
37070
37132
|
*/
|
|
37071
37133
|
Spread: number;
|
|
37072
37134
|
}
|
|
37135
|
+
/**
|
|
37136
|
+
* - **Tags**: NotCreatable, Service
|
|
37137
|
+
*
|
|
37138
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Preloaded)
|
|
37139
|
+
*/
|
|
37140
|
+
interface Preloaded extends Instance {
|
|
37141
|
+
/**
|
|
37142
|
+
* **DO NOT USE!**
|
|
37143
|
+
*
|
|
37144
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
37145
|
+
* @hidden
|
|
37146
|
+
* @deprecated
|
|
37147
|
+
*/
|
|
37148
|
+
readonly _nominal_Preloaded: unique symbol;
|
|
37149
|
+
}
|
|
37073
37150
|
/**
|
|
37074
37151
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
37075
37152
|
*
|
|
@@ -38318,6 +38395,8 @@ interface RunService extends Instance {
|
|
|
38318
38395
|
*/
|
|
38319
38396
|
readonly Heartbeat: RBXScriptSignal<(deltaTime: number) => void>;
|
|
38320
38397
|
/**
|
|
38398
|
+
* In the server authority model, fires during prediction when the engine detects that the client has diverged from the server's authoritative state. Intended for plugin-based debugging.
|
|
38399
|
+
*
|
|
38321
38400
|
* - **ThreadSafety**: Unsafe
|
|
38322
38401
|
*
|
|
38323
38402
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#Misprediction)
|
|
@@ -38364,6 +38443,8 @@ interface RunService extends Instance {
|
|
|
38364
38443
|
*/
|
|
38365
38444
|
readonly RenderStepped: RBXScriptSignal<(deltaTime: number) => void>;
|
|
38366
38445
|
/**
|
|
38446
|
+
* In the server authority model, this fires after rolling back the predicted state due to a misprediction, but before resimulation begins.
|
|
38447
|
+
*
|
|
38367
38448
|
* - **ThreadSafety**: Unsafe
|
|
38368
38449
|
*
|
|
38369
38450
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#Rollback)
|
|
@@ -38912,6 +38993,18 @@ interface ControllerPartSensor extends ControllerSensor {
|
|
|
38912
38993
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ControllerPartSensor#HitNormal)
|
|
38913
38994
|
*/
|
|
38914
38995
|
HitNormal: Vector3;
|
|
38996
|
+
/**
|
|
38997
|
+
* - **ThreadSafety**: ReadSafe
|
|
38998
|
+
*
|
|
38999
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ControllerPartSensor#LadderSearchHeight)
|
|
39000
|
+
*/
|
|
39001
|
+
LadderSearchHeight: number;
|
|
39002
|
+
/**
|
|
39003
|
+
* - **ThreadSafety**: ReadSafe
|
|
39004
|
+
*
|
|
39005
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ControllerPartSensor#LadderSearchOffset)
|
|
39006
|
+
*/
|
|
39007
|
+
LadderSearchOffset: number;
|
|
38915
39008
|
/**
|
|
38916
39009
|
* The distance from the sensor's parent `BasePart` to use when sensing other parts.
|
|
38917
39010
|
*
|
|
@@ -41878,6 +41971,21 @@ interface StudioDeviceEmulatorService extends Instance {
|
|
|
41878
41971
|
*/
|
|
41879
41972
|
readonly _nominal_StudioDeviceEmulatorService: unique symbol;
|
|
41880
41973
|
}
|
|
41974
|
+
/**
|
|
41975
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
41976
|
+
*
|
|
41977
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioDeviceSimulatorService)
|
|
41978
|
+
*/
|
|
41979
|
+
interface StudioDeviceSimulatorService extends Instance {
|
|
41980
|
+
/**
|
|
41981
|
+
* **DO NOT USE!**
|
|
41982
|
+
*
|
|
41983
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
41984
|
+
* @hidden
|
|
41985
|
+
* @deprecated
|
|
41986
|
+
*/
|
|
41987
|
+
readonly _nominal_StudioDeviceSimulatorService: unique symbol;
|
|
41988
|
+
}
|
|
41881
41989
|
/**
|
|
41882
41990
|
* - **Tags**: NotCreatable, NotReplicated
|
|
41883
41991
|
*
|
|
@@ -42296,6 +42404,8 @@ interface StyleLink extends Instance {
|
|
|
42296
42404
|
StyleSheet: StyleSheet | undefined;
|
|
42297
42405
|
}
|
|
42298
42406
|
/**
|
|
42407
|
+
* Instance used to set conditions such as `"MaxSize"` and `"PreferredInput"` for a `StyleRule`.
|
|
42408
|
+
*
|
|
42299
42409
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery)
|
|
42300
42410
|
*/
|
|
42301
42411
|
interface StyleQuery extends Instance {
|
|
@@ -42308,6 +42418,8 @@ interface StyleQuery extends Instance {
|
|
|
42308
42418
|
*/
|
|
42309
42419
|
readonly _nominal_StyleQuery: unique symbol;
|
|
42310
42420
|
/**
|
|
42421
|
+
* A boolean that determines whether a `StyleRule.Selector` of `@` will match the `StyleQuery` name.
|
|
42422
|
+
*
|
|
42311
42423
|
* - **ThreadSafety**: ReadSafe
|
|
42312
42424
|
* - **Tags**: NotReplicated
|
|
42313
42425
|
*
|
|
@@ -42315,35 +42427,43 @@ interface StyleQuery extends Instance {
|
|
|
42315
42427
|
*/
|
|
42316
42428
|
readonly IsActive: boolean;
|
|
42317
42429
|
/**
|
|
42430
|
+
* Returns the value of a specific condition in the `StyleQuery`.
|
|
42431
|
+
*
|
|
42318
42432
|
* - **ThreadSafety**: Unsafe
|
|
42319
42433
|
*
|
|
42320
42434
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery#GetCondition)
|
|
42321
|
-
* @param this
|
|
42322
|
-
* @param name
|
|
42435
|
+
* @param this Instance used to set conditions such as `"MaxSize"` and `"PreferredInput"` for a `StyleRule`.
|
|
42436
|
+
* @param name String name of the condition, for example `"MaxSize"` or `"ViewportDisplaySize"`.
|
|
42437
|
+
* @returns Value of the condition.
|
|
42323
42438
|
*/
|
|
42324
42439
|
GetCondition(this: StyleQuery, name: string): unknown;
|
|
42325
42440
|
/**
|
|
42441
|
+
* Returns a dictionary of key-value pairs describing the conditoins set on the `StyleQuery`.
|
|
42442
|
+
*
|
|
42326
42443
|
* - **ThreadSafety**: Unsafe
|
|
42327
42444
|
*
|
|
42328
42445
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery#GetConditions)
|
|
42329
|
-
* @param this
|
|
42446
|
+
* @param this Instance used to set conditions such as `"MaxSize"` and `"PreferredInput"` for a `StyleRule`.
|
|
42447
|
+
* @returns Dictionary of key-value pairs describing the conditions set on the `StyleQuery`.
|
|
42330
42448
|
*/
|
|
42331
42449
|
GetConditions(this: StyleQuery): object;
|
|
42332
42450
|
/**
|
|
42333
42451
|
* - **ThreadSafety**: Unsafe
|
|
42334
42452
|
*
|
|
42335
42453
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery#SetCondition)
|
|
42336
|
-
* @param this
|
|
42337
|
-
* @param name
|
|
42338
|
-
* @param value
|
|
42454
|
+
* @param this Instance used to set conditions such as `"MaxSize"` and `"PreferredInput"` for a `StyleRule`.
|
|
42455
|
+
* @param name Condition name to set, for example `"MinSize"`.
|
|
42456
|
+
* @param value Condition value to set, for example `Vector2.new(100, 0)`.
|
|
42339
42457
|
*/
|
|
42340
42458
|
SetCondition(this: StyleQuery, name: string, value: unknown): void;
|
|
42341
42459
|
/**
|
|
42460
|
+
* Lets you declare and set multiple conditions of the `StyleQuery` at once.
|
|
42461
|
+
*
|
|
42342
42462
|
* - **ThreadSafety**: Unsafe
|
|
42343
42463
|
*
|
|
42344
42464
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery#SetConditions)
|
|
42345
|
-
* @param this
|
|
42346
|
-
* @param conditions
|
|
42465
|
+
* @param this Instance used to set conditions such as `"MaxSize"` and `"PreferredInput"` for a `StyleRule`.
|
|
42466
|
+
* @param conditions Dictionary of key-value pairs defining the conditions to set.
|
|
42347
42467
|
*/
|
|
42348
42468
|
SetConditions(this: StyleQuery, conditions: object): void;
|
|
42349
42469
|
}
|
|
@@ -43419,6 +43539,13 @@ interface TestService extends Instance {
|
|
|
43419
43539
|
* @param name
|
|
43420
43540
|
*/
|
|
43421
43541
|
isFeatureEnabled(this: TestService, name: string): boolean;
|
|
43542
|
+
/**
|
|
43543
|
+
* - **ThreadSafety**: Unsafe
|
|
43544
|
+
* - **Tags**: Yields
|
|
43545
|
+
*
|
|
43546
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestService#RequestValidationAsync)
|
|
43547
|
+
*/
|
|
43548
|
+
RequestValidationAsync(this: TestService, artifactType: string, artifactName: string): unknown;
|
|
43422
43549
|
/**
|
|
43423
43550
|
* Fires when the server should collect a conditional test result.
|
|
43424
43551
|
*
|
|
@@ -104,6 +104,7 @@ interface Services {
|
|
|
104
104
|
InstanceExtensionsService: InstanceExtensionsService;
|
|
105
105
|
InstanceFileSyncService: InstanceFileSyncService;
|
|
106
106
|
InternalMessagingService: InternalMessagingService;
|
|
107
|
+
InternalMessagingServiceVerifier: InternalMessagingServiceVerifier;
|
|
107
108
|
InternalSyncService: InternalSyncService;
|
|
108
109
|
IXPService: IXPService;
|
|
109
110
|
JointsService: JointsService;
|
|
@@ -162,6 +163,7 @@ interface Services {
|
|
|
162
163
|
PluginManagementService: PluginManagementService;
|
|
163
164
|
PluginPolicyService: PluginPolicyService;
|
|
164
165
|
PolicyService: PolicyService;
|
|
166
|
+
Preloaded: Preloaded;
|
|
165
167
|
ProceduralBehaviorSchedulerService: ProceduralBehaviorSchedulerService;
|
|
166
168
|
ProcessInstancePhysicsService: ProcessInstancePhysicsService;
|
|
167
169
|
ProximityPromptService: ProximityPromptService;
|
|
@@ -222,6 +224,7 @@ interface Services {
|
|
|
222
224
|
StudioCaptureService: StudioCaptureService;
|
|
223
225
|
StudioData: StudioData;
|
|
224
226
|
StudioDeviceEmulatorService: StudioDeviceEmulatorService;
|
|
227
|
+
StudioDeviceSimulatorService: StudioDeviceSimulatorService;
|
|
225
228
|
StudioPublishService: StudioPublishService;
|
|
226
229
|
StudioScriptDebugEventListener: StudioScriptDebugEventListener;
|
|
227
230
|
StudioSdkService: StudioSdkService;
|
|
@@ -7533,6 +7536,21 @@ interface InternalMessagingService extends Instance {
|
|
|
7533
7536
|
*/
|
|
7534
7537
|
readonly _nominal_InternalMessagingService: unique symbol;
|
|
7535
7538
|
}
|
|
7539
|
+
/**
|
|
7540
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
7541
|
+
*
|
|
7542
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InternalMessagingServiceVerifier)
|
|
7543
|
+
*/
|
|
7544
|
+
interface InternalMessagingServiceVerifier extends Instance {
|
|
7545
|
+
/**
|
|
7546
|
+
* **DO NOT USE!**
|
|
7547
|
+
*
|
|
7548
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
7549
|
+
* @hidden
|
|
7550
|
+
* @deprecated
|
|
7551
|
+
*/
|
|
7552
|
+
readonly _nominal_InternalMessagingServiceVerifier: unique symbol;
|
|
7553
|
+
}
|
|
7536
7554
|
/**
|
|
7537
7555
|
* - **Tags**: NotReplicated
|
|
7538
7556
|
*
|
|
@@ -11640,6 +11658,21 @@ interface SunRaysEffect extends PostEffect {
|
|
|
11640
11658
|
*/
|
|
11641
11659
|
readonly _nominal_SunRaysEffect: unique symbol;
|
|
11642
11660
|
}
|
|
11661
|
+
/**
|
|
11662
|
+
* - **Tags**: NotCreatable, Service
|
|
11663
|
+
*
|
|
11664
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Preloaded)
|
|
11665
|
+
*/
|
|
11666
|
+
interface Preloaded extends Instance {
|
|
11667
|
+
/**
|
|
11668
|
+
* **DO NOT USE!**
|
|
11669
|
+
*
|
|
11670
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
11671
|
+
* @hidden
|
|
11672
|
+
* @deprecated
|
|
11673
|
+
*/
|
|
11674
|
+
readonly _nominal_Preloaded: unique symbol;
|
|
11675
|
+
}
|
|
11643
11676
|
/**
|
|
11644
11677
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
11645
11678
|
*
|
|
@@ -14005,6 +14038,139 @@ interface StudioDeviceEmulatorService extends Instance {
|
|
|
14005
14038
|
*/
|
|
14006
14039
|
readonly _nominal_StudioDeviceEmulatorService: unique symbol;
|
|
14007
14040
|
}
|
|
14041
|
+
/**
|
|
14042
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
14043
|
+
*
|
|
14044
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioDeviceSimulatorService)
|
|
14045
|
+
*/
|
|
14046
|
+
interface StudioDeviceSimulatorService extends Instance {
|
|
14047
|
+
/**
|
|
14048
|
+
* **DO NOT USE!**
|
|
14049
|
+
*
|
|
14050
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
14051
|
+
* @hidden
|
|
14052
|
+
* @deprecated
|
|
14053
|
+
*/
|
|
14054
|
+
readonly _nominal_StudioDeviceSimulatorService: unique symbol;
|
|
14055
|
+
/**
|
|
14056
|
+
* - **ThreadSafety**: Unsafe
|
|
14057
|
+
* - **Tags**: Yields
|
|
14058
|
+
*
|
|
14059
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioDeviceSimulatorService#CreateDeviceAsync)
|
|
14060
|
+
*/
|
|
14061
|
+
CreateDeviceAsync(this: StudioDeviceSimulatorService, config: object): string;
|
|
14062
|
+
/**
|
|
14063
|
+
* - **ThreadSafety**: Unsafe
|
|
14064
|
+
* - **Tags**: Yields
|
|
14065
|
+
*
|
|
14066
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioDeviceSimulatorService#GetDeviceAsync)
|
|
14067
|
+
*/
|
|
14068
|
+
GetDeviceAsync(this: StudioDeviceSimulatorService): string;
|
|
14069
|
+
/**
|
|
14070
|
+
* - **ThreadSafety**: Unsafe
|
|
14071
|
+
* - **Tags**: Yields
|
|
14072
|
+
*
|
|
14073
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioDeviceSimulatorService#GetDeviceInfoAsync)
|
|
14074
|
+
*/
|
|
14075
|
+
GetDeviceInfoAsync(this: StudioDeviceSimulatorService, deviceId: string): object;
|
|
14076
|
+
/**
|
|
14077
|
+
* - **ThreadSafety**: Unsafe
|
|
14078
|
+
* - **Tags**: Yields
|
|
14079
|
+
*
|
|
14080
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioDeviceSimulatorService#GetDeviceListAsync)
|
|
14081
|
+
*/
|
|
14082
|
+
GetDeviceListAsync(this: StudioDeviceSimulatorService): Array<unknown>;
|
|
14083
|
+
/**
|
|
14084
|
+
* - **ThreadSafety**: Unsafe
|
|
14085
|
+
* - **Tags**: Yields
|
|
14086
|
+
*
|
|
14087
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioDeviceSimulatorService#GetOrientationAsync)
|
|
14088
|
+
*/
|
|
14089
|
+
GetOrientationAsync(this: StudioDeviceSimulatorService): Enum.ScreenOrientation;
|
|
14090
|
+
/**
|
|
14091
|
+
* - **ThreadSafety**: Unsafe
|
|
14092
|
+
* - **Tags**: Yields
|
|
14093
|
+
*
|
|
14094
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioDeviceSimulatorService#GetPixelDensityAsync)
|
|
14095
|
+
*/
|
|
14096
|
+
GetPixelDensityAsync(this: StudioDeviceSimulatorService): number;
|
|
14097
|
+
/**
|
|
14098
|
+
* - **ThreadSafety**: Unsafe
|
|
14099
|
+
* - **Tags**: Yields
|
|
14100
|
+
*
|
|
14101
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioDeviceSimulatorService#GetResolutionAsync)
|
|
14102
|
+
*/
|
|
14103
|
+
GetResolutionAsync(this: StudioDeviceSimulatorService): Vector2;
|
|
14104
|
+
/**
|
|
14105
|
+
* - **ThreadSafety**: Unsafe
|
|
14106
|
+
* - **Tags**: Yields
|
|
14107
|
+
*
|
|
14108
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioDeviceSimulatorService#GetScalingModeAsync)
|
|
14109
|
+
*/
|
|
14110
|
+
GetScalingModeAsync(this: StudioDeviceSimulatorService): Enum.DeviceSimulatorScalingMode;
|
|
14111
|
+
/**
|
|
14112
|
+
* - **ThreadSafety**: Unsafe
|
|
14113
|
+
* - **Tags**: Yields
|
|
14114
|
+
*
|
|
14115
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioDeviceSimulatorService#RemoveDeviceAsync)
|
|
14116
|
+
*/
|
|
14117
|
+
RemoveDeviceAsync(this: StudioDeviceSimulatorService, deviceId: string): void;
|
|
14118
|
+
/**
|
|
14119
|
+
* - **ThreadSafety**: Unsafe
|
|
14120
|
+
* - **Tags**: Yields
|
|
14121
|
+
*
|
|
14122
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioDeviceSimulatorService#SetDeviceAsync)
|
|
14123
|
+
*/
|
|
14124
|
+
SetDeviceAsync(this: StudioDeviceSimulatorService, deviceId: string): void;
|
|
14125
|
+
/**
|
|
14126
|
+
* - **ThreadSafety**: Unsafe
|
|
14127
|
+
* - **Tags**: Yields
|
|
14128
|
+
*
|
|
14129
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioDeviceSimulatorService#SetOrientationAsync)
|
|
14130
|
+
*/
|
|
14131
|
+
SetOrientationAsync(this: StudioDeviceSimulatorService, orientation: CastsToEnum<Enum.ScreenOrientation>): void;
|
|
14132
|
+
/**
|
|
14133
|
+
* - **ThreadSafety**: Unsafe
|
|
14134
|
+
* - **Tags**: Yields
|
|
14135
|
+
*
|
|
14136
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioDeviceSimulatorService#SetPixelDensityAsync)
|
|
14137
|
+
*/
|
|
14138
|
+
SetPixelDensityAsync(this: StudioDeviceSimulatorService, density: number): void;
|
|
14139
|
+
/**
|
|
14140
|
+
* - **ThreadSafety**: Unsafe
|
|
14141
|
+
* - **Tags**: Yields
|
|
14142
|
+
*
|
|
14143
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioDeviceSimulatorService#SetResolutionAsync)
|
|
14144
|
+
*/
|
|
14145
|
+
SetResolutionAsync(this: StudioDeviceSimulatorService, width: number, height: number): void;
|
|
14146
|
+
/**
|
|
14147
|
+
* - **ThreadSafety**: Unsafe
|
|
14148
|
+
* - **Tags**: Yields
|
|
14149
|
+
*
|
|
14150
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioDeviceSimulatorService#SetScalingModeAsync)
|
|
14151
|
+
*/
|
|
14152
|
+
SetScalingModeAsync(this: StudioDeviceSimulatorService, mode: CastsToEnum<Enum.DeviceSimulatorScalingMode>): void;
|
|
14153
|
+
/**
|
|
14154
|
+
* - **ThreadSafety**: Unsafe
|
|
14155
|
+
* - **Tags**: Yields
|
|
14156
|
+
*
|
|
14157
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioDeviceSimulatorService#StopSimulationAsync)
|
|
14158
|
+
*/
|
|
14159
|
+
StopSimulationAsync(this: StudioDeviceSimulatorService): void;
|
|
14160
|
+
/**
|
|
14161
|
+
* - **ThreadSafety**: Unsafe
|
|
14162
|
+
* - **Tags**: Yields
|
|
14163
|
+
*
|
|
14164
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioDeviceSimulatorService#UpdateDeviceAsync)
|
|
14165
|
+
*/
|
|
14166
|
+
UpdateDeviceAsync(this: StudioDeviceSimulatorService, deviceId: string, config: object): void;
|
|
14167
|
+
/**
|
|
14168
|
+
* - **ThreadSafety**: Unsafe
|
|
14169
|
+
*
|
|
14170
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioDeviceSimulatorService#ConfigurationChanged)
|
|
14171
|
+
*/
|
|
14172
|
+
readonly ConfigurationChanged: RBXScriptSignal<() => void>;
|
|
14173
|
+
}
|
|
14008
14174
|
/**
|
|
14009
14175
|
* - **Tags**: NotCreatable, NotReplicated
|
|
14010
14176
|
*
|
|
@@ -14439,6 +14605,8 @@ interface StyleLink extends Instance {
|
|
|
14439
14605
|
readonly _nominal_StyleLink: unique symbol;
|
|
14440
14606
|
}
|
|
14441
14607
|
/**
|
|
14608
|
+
* Instance used to set conditions such as `"MaxSize"` and `"PreferredInput"` for a `StyleRule`.
|
|
14609
|
+
*
|
|
14442
14610
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery)
|
|
14443
14611
|
*/
|
|
14444
14612
|
interface StyleQuery extends Instance {
|
|
@@ -16555,7 +16723,7 @@ interface PluginConnection extends RBXObject {
|
|
|
16555
16723
|
*
|
|
16556
16724
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PluginConnection#SendMessage)
|
|
16557
16725
|
*/
|
|
16558
|
-
SendMessage(this: PluginConnection, message:
|
|
16726
|
+
SendMessage(this: PluginConnection, message: unknown): void;
|
|
16559
16727
|
}
|
|
16560
16728
|
/**
|
|
16561
16729
|
* - **Tags**: NotCreatable, NotReplicated
|
|
@@ -11173,6 +11173,42 @@ declare namespace Enum {
|
|
|
11173
11173
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DeviceLevel | undefined;
|
|
11174
11174
|
}
|
|
11175
11175
|
export type DeviceLevel = DeviceLevel.Low | DeviceLevel.Medium | DeviceLevel.High;
|
|
11176
|
+
/**
|
|
11177
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DeviceSimulatorScalingMode)
|
|
11178
|
+
*/
|
|
11179
|
+
export namespace DeviceSimulatorScalingMode {
|
|
11180
|
+
/**
|
|
11181
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DeviceSimulatorScalingMode#ScaleToPhysicalSize)
|
|
11182
|
+
*/
|
|
11183
|
+
export interface ScaleToPhysicalSize extends globalThis.EnumItem {
|
|
11184
|
+
Name: "ScaleToPhysicalSize";
|
|
11185
|
+
Value: 0;
|
|
11186
|
+
EnumType: typeof globalThis.Enum.DeviceSimulatorScalingMode;
|
|
11187
|
+
}
|
|
11188
|
+
export const ScaleToPhysicalSize: ScaleToPhysicalSize;
|
|
11189
|
+
/**
|
|
11190
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DeviceSimulatorScalingMode#ActualResolution)
|
|
11191
|
+
*/
|
|
11192
|
+
export interface ActualResolution extends globalThis.EnumItem {
|
|
11193
|
+
Name: "ActualResolution";
|
|
11194
|
+
Value: 1;
|
|
11195
|
+
EnumType: typeof globalThis.Enum.DeviceSimulatorScalingMode;
|
|
11196
|
+
}
|
|
11197
|
+
export const ActualResolution: ActualResolution;
|
|
11198
|
+
/**
|
|
11199
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DeviceSimulatorScalingMode#FitToWindow)
|
|
11200
|
+
*/
|
|
11201
|
+
export interface FitToWindow extends globalThis.EnumItem {
|
|
11202
|
+
Name: "FitToWindow";
|
|
11203
|
+
Value: 2;
|
|
11204
|
+
EnumType: typeof globalThis.Enum.DeviceSimulatorScalingMode;
|
|
11205
|
+
}
|
|
11206
|
+
export const FitToWindow: FitToWindow;
|
|
11207
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DeviceSimulatorScalingMode>;
|
|
11208
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DeviceSimulatorScalingMode | undefined;
|
|
11209
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DeviceSimulatorScalingMode | undefined;
|
|
11210
|
+
}
|
|
11211
|
+
export type DeviceSimulatorScalingMode = DeviceSimulatorScalingMode.ScaleToPhysicalSize | DeviceSimulatorScalingMode.ActualResolution | DeviceSimulatorScalingMode.FitToWindow;
|
|
11176
11212
|
/**
|
|
11177
11213
|
* Device category of the client.
|
|
11178
11214
|
*
|
|
@@ -27123,6 +27159,69 @@ declare namespace Enum {
|
|
|
27123
27159
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ReadCapturesFromGalleryResult | undefined;
|
|
27124
27160
|
}
|
|
27125
27161
|
export type ReadCapturesFromGalleryResult = ReadCapturesFromGalleryResult.Success | ReadCapturesFromGalleryResult.NeedPermission;
|
|
27162
|
+
/**
|
|
27163
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReceiptDecision)
|
|
27164
|
+
*/
|
|
27165
|
+
export namespace ReceiptDecision {
|
|
27166
|
+
/**
|
|
27167
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReceiptDecision#NotProcessedYet)
|
|
27168
|
+
*/
|
|
27169
|
+
export interface NotProcessedYet extends globalThis.EnumItem {
|
|
27170
|
+
Name: "NotProcessedYet";
|
|
27171
|
+
Value: 0;
|
|
27172
|
+
EnumType: typeof globalThis.Enum.ReceiptDecision;
|
|
27173
|
+
}
|
|
27174
|
+
export const NotProcessedYet: NotProcessedYet;
|
|
27175
|
+
/**
|
|
27176
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReceiptDecision#Processed)
|
|
27177
|
+
*/
|
|
27178
|
+
export interface Processed extends globalThis.EnumItem {
|
|
27179
|
+
Name: "Processed";
|
|
27180
|
+
Value: 1;
|
|
27181
|
+
EnumType: typeof globalThis.Enum.ReceiptDecision;
|
|
27182
|
+
}
|
|
27183
|
+
export const Processed: Processed;
|
|
27184
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ReceiptDecision>;
|
|
27185
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ReceiptDecision | undefined;
|
|
27186
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ReceiptDecision | undefined;
|
|
27187
|
+
}
|
|
27188
|
+
export type ReceiptDecision = ReceiptDecision.NotProcessedYet | ReceiptDecision.Processed;
|
|
27189
|
+
/**
|
|
27190
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReceiptType)
|
|
27191
|
+
*/
|
|
27192
|
+
export namespace ReceiptType {
|
|
27193
|
+
/**
|
|
27194
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReceiptType#DeveloperProduct)
|
|
27195
|
+
*/
|
|
27196
|
+
export interface DeveloperProduct extends globalThis.EnumItem {
|
|
27197
|
+
Name: "DeveloperProduct";
|
|
27198
|
+
Value: 0;
|
|
27199
|
+
EnumType: typeof globalThis.Enum.ReceiptType;
|
|
27200
|
+
}
|
|
27201
|
+
export const DeveloperProduct: DeveloperProduct;
|
|
27202
|
+
/**
|
|
27203
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReceiptType#RobuxTransferSender)
|
|
27204
|
+
*/
|
|
27205
|
+
export interface RobuxTransferSender extends globalThis.EnumItem {
|
|
27206
|
+
Name: "RobuxTransferSender";
|
|
27207
|
+
Value: 1;
|
|
27208
|
+
EnumType: typeof globalThis.Enum.ReceiptType;
|
|
27209
|
+
}
|
|
27210
|
+
export const RobuxTransferSender: RobuxTransferSender;
|
|
27211
|
+
/**
|
|
27212
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReceiptType#RobuxTransferReceiver)
|
|
27213
|
+
*/
|
|
27214
|
+
export interface RobuxTransferReceiver extends globalThis.EnumItem {
|
|
27215
|
+
Name: "RobuxTransferReceiver";
|
|
27216
|
+
Value: 2;
|
|
27217
|
+
EnumType: typeof globalThis.Enum.ReceiptType;
|
|
27218
|
+
}
|
|
27219
|
+
export const RobuxTransferReceiver: RobuxTransferReceiver;
|
|
27220
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ReceiptType>;
|
|
27221
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ReceiptType | undefined;
|
|
27222
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ReceiptType | undefined;
|
|
27223
|
+
}
|
|
27224
|
+
export type ReceiptType = ReceiptType.DeveloperProduct | ReceiptType.RobuxTransferSender | ReceiptType.RobuxTransferReceiver;
|
|
27126
27225
|
/**
|
|
27127
27226
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RecommendationActionType)
|
|
27128
27227
|
*/
|
|
@@ -30426,11 +30525,20 @@ declare namespace Enum {
|
|
|
30426
30525
|
EnumType: typeof globalThis.Enum.SensorMode;
|
|
30427
30526
|
}
|
|
30428
30527
|
export const Ladder: Ladder;
|
|
30528
|
+
/**
|
|
30529
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SensorMode#ClassicLadder)
|
|
30530
|
+
*/
|
|
30531
|
+
export interface ClassicLadder extends globalThis.EnumItem {
|
|
30532
|
+
Name: "ClassicLadder";
|
|
30533
|
+
Value: 2;
|
|
30534
|
+
EnumType: typeof globalThis.Enum.SensorMode;
|
|
30535
|
+
}
|
|
30536
|
+
export const ClassicLadder: ClassicLadder;
|
|
30429
30537
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SensorMode>;
|
|
30430
30538
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SensorMode | undefined;
|
|
30431
30539
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SensorMode | undefined;
|
|
30432
30540
|
}
|
|
30433
|
-
export type SensorMode = SensorMode.Floor | SensorMode.Ladder;
|
|
30541
|
+
export type SensorMode = SensorMode.Floor | SensorMode.Ladder | SensorMode.ClassicLadder;
|
|
30434
30542
|
/**
|
|
30435
30543
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SensorUpdateType)
|
|
30436
30544
|
*/
|
|
@@ -38811,11 +38919,20 @@ declare namespace Enum {
|
|
|
38811
38919
|
EnumType: typeof globalThis.Enum.VoiceRccReconnectReason;
|
|
38812
38920
|
}
|
|
38813
38921
|
export const CloseRoom: CloseRoom;
|
|
38922
|
+
/**
|
|
38923
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VoiceRccReconnectReason#FAEUpdate)
|
|
38924
|
+
*/
|
|
38925
|
+
export interface FAEUpdate extends globalThis.EnumItem {
|
|
38926
|
+
Name: "FAEUpdate";
|
|
38927
|
+
Value: 3;
|
|
38928
|
+
EnumType: typeof globalThis.Enum.VoiceRccReconnectReason;
|
|
38929
|
+
}
|
|
38930
|
+
export const FAEUpdate: FAEUpdate;
|
|
38814
38931
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VoiceRccReconnectReason>;
|
|
38815
38932
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VoiceRccReconnectReason | undefined;
|
|
38816
38933
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VoiceRccReconnectReason | undefined;
|
|
38817
38934
|
}
|
|
38818
|
-
export type VoiceRccReconnectReason = VoiceRccReconnectReason.Unknown | VoiceRccReconnectReason.Migration | VoiceRccReconnectReason.CloseRoom;
|
|
38935
|
+
export type VoiceRccReconnectReason = VoiceRccReconnectReason.Unknown | VoiceRccReconnectReason.Migration | VoiceRccReconnectReason.CloseRoom | VoiceRccReconnectReason.FAEUpdate;
|
|
38819
38936
|
/**
|
|
38820
38937
|
* Controls how the engine renders volumetric audio effects.
|
|
38821
38938
|
*
|