@rbxts/types 1.0.940 → 1.0.941
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.
|
@@ -420,6 +420,7 @@ interface CreatableInstances {
|
|
|
420
420
|
ImageHandleAdornment: ImageHandleAdornment;
|
|
421
421
|
ImageLabel: ImageLabel;
|
|
422
422
|
InputAction: InputAction;
|
|
423
|
+
InputActionLabel: InputActionLabel;
|
|
423
424
|
InputBinding: InputBinding;
|
|
424
425
|
InputContext: InputContext;
|
|
425
426
|
IntConstrainedValue: IntConstrainedValue;
|
|
@@ -1283,6 +1284,69 @@ interface EditableMesh extends RBXObject {
|
|
|
1283
1284
|
* @returns Stable vertex ID of the new vertex.
|
|
1284
1285
|
*/
|
|
1285
1286
|
AddVertex(this: EditableMesh, p: Vector3): number;
|
|
1287
|
+
/**
|
|
1288
|
+
* - **ThreadSafety**: Unsafe
|
|
1289
|
+
* - **Tags**: CustomLuaState
|
|
1290
|
+
*
|
|
1291
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchAdd)
|
|
1292
|
+
*/
|
|
1293
|
+
BatchAdd(this: EditableMesh, attr: CastsToEnum<Enum.MeshAttribute>, data: Array<unknown>): Array<unknown>;
|
|
1294
|
+
/**
|
|
1295
|
+
* - **ThreadSafety**: Unsafe
|
|
1296
|
+
* - **Tags**: CustomLuaState
|
|
1297
|
+
*
|
|
1298
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchGetFaceAttributes)
|
|
1299
|
+
*/
|
|
1300
|
+
BatchGetFaceAttributes(this: EditableMesh, attr: CastsToEnum<Enum.MeshAttribute>, faceIds: Array<unknown>): Array<unknown>;
|
|
1301
|
+
/**
|
|
1302
|
+
* - **ThreadSafety**: Unsafe
|
|
1303
|
+
* - **Tags**: CustomLuaState
|
|
1304
|
+
*
|
|
1305
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchGetValues)
|
|
1306
|
+
*/
|
|
1307
|
+
BatchGetValues(this: EditableMesh, ids: Array<unknown>): unknown;
|
|
1308
|
+
/**
|
|
1309
|
+
* - **ThreadSafety**: Unsafe
|
|
1310
|
+
* - **Tags**: CustomLuaState
|
|
1311
|
+
*
|
|
1312
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchGetVertexAttributes)
|
|
1313
|
+
*/
|
|
1314
|
+
BatchGetVertexAttributes(this: EditableMesh, attr: CastsToEnum<Enum.MeshAttribute>, vertexIds: Array<unknown>): Array<unknown>;
|
|
1315
|
+
/**
|
|
1316
|
+
* - **ThreadSafety**: Unsafe
|
|
1317
|
+
* - **Tags**: CustomLuaState
|
|
1318
|
+
*
|
|
1319
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchGetVertexFaceAttributes)
|
|
1320
|
+
*/
|
|
1321
|
+
BatchGetVertexFaceAttributes(this: EditableMesh, attr: CastsToEnum<Enum.MeshAttribute>, vertexIds: Array<unknown>, faceIds: Array<unknown>): Array<unknown>;
|
|
1322
|
+
/**
|
|
1323
|
+
* - **ThreadSafety**: Unsafe
|
|
1324
|
+
* - **Tags**: CustomLuaState
|
|
1325
|
+
*
|
|
1326
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchRemove)
|
|
1327
|
+
*/
|
|
1328
|
+
BatchRemove(this: EditableMesh, ids: Array<unknown>): void;
|
|
1329
|
+
/**
|
|
1330
|
+
* - **ThreadSafety**: Unsafe
|
|
1331
|
+
* - **Tags**: CustomLuaState
|
|
1332
|
+
*
|
|
1333
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchSetFaceAttributes)
|
|
1334
|
+
*/
|
|
1335
|
+
BatchSetFaceAttributes(this: EditableMesh, faceIds: Array<unknown>, attrIdArrays: Array<unknown>): void;
|
|
1336
|
+
/**
|
|
1337
|
+
* - **ThreadSafety**: Unsafe
|
|
1338
|
+
* - **Tags**: CustomLuaState
|
|
1339
|
+
*
|
|
1340
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchSetValues)
|
|
1341
|
+
*/
|
|
1342
|
+
BatchSetValues(this: EditableMesh, ids: Array<unknown>, values: Array<unknown>): void;
|
|
1343
|
+
/**
|
|
1344
|
+
* - **ThreadSafety**: Unsafe
|
|
1345
|
+
* - **Tags**: CustomLuaState
|
|
1346
|
+
*
|
|
1347
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchSetVertexFaceAttributes)
|
|
1348
|
+
*/
|
|
1349
|
+
BatchSetVertexFaceAttributes(this: EditableMesh, vertexIds: Array<unknown>, faceIds: Array<unknown>, attrIds: Array<unknown>): void;
|
|
1286
1350
|
/**
|
|
1287
1351
|
* - **ThreadSafety**: Unsafe
|
|
1288
1352
|
* - **Tags**: NotBrowsable
|
|
@@ -3984,6 +4048,8 @@ interface Animator extends Instance {
|
|
|
3984
4048
|
*/
|
|
3985
4049
|
readonly _nominal_Animator: unique symbol;
|
|
3986
4050
|
/**
|
|
4051
|
+
* Indicates whether animation evaluation was throttled (skipped) this frame for this `Animator`.
|
|
4052
|
+
*
|
|
3987
4053
|
* - **ThreadSafety**: Safe
|
|
3988
4054
|
* - **Tags**: NotReplicated
|
|
3989
4055
|
*
|
|
@@ -3991,6 +4057,8 @@ interface Animator extends Instance {
|
|
|
3991
4057
|
*/
|
|
3992
4058
|
readonly EvaluationThrottled: boolean;
|
|
3993
4059
|
/**
|
|
4060
|
+
* Controls whether animation LOD throttling is allowed for this `Animator`. When set to `false`, animations always evaluate at full fidelity.
|
|
4061
|
+
*
|
|
3994
4062
|
* - **ThreadSafety**: ReadSafe
|
|
3995
4063
|
*
|
|
3996
4064
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Animator#PreferLodEnabled)
|
|
@@ -4017,7 +4085,7 @@ interface Animator extends Instance {
|
|
|
4017
4085
|
*
|
|
4018
4086
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Animator#ApplyJointVelocities)
|
|
4019
4087
|
* @param this Responsible for the playback and replication of `Animations`.
|
|
4020
|
-
* @param motors
|
|
4088
|
+
* @param motors An array of `Motor6D` instances to compute and apply velocities for.
|
|
4021
4089
|
*/
|
|
4022
4090
|
ApplyJointVelocities(this: Animator, motors: Array<Motor6D>): void;
|
|
4023
4091
|
/**
|
|
@@ -4054,8 +4122,6 @@ interface Animator extends Instance {
|
|
|
4054
4122
|
* - **ThreadSafety**: Unsafe
|
|
4055
4123
|
*
|
|
4056
4124
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Animator#RegisterEvaluationParallelCallback)
|
|
4057
|
-
* @param this Responsible for the playback and replication of `Animations`.
|
|
4058
|
-
* @param callback
|
|
4059
4125
|
*/
|
|
4060
4126
|
RegisterEvaluationParallelCallback(this: Animator, callback: Callback): void;
|
|
4061
4127
|
/**
|
|
@@ -8309,6 +8375,12 @@ interface AvatarCreationService extends Instance {
|
|
|
8309
8375
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#AvatarModerationCompleted)
|
|
8310
8376
|
*/
|
|
8311
8377
|
readonly AvatarModerationCompleted: RBXScriptSignal<(outfitId: number, moderationStatus: Enum.ModerationStatus) => void>;
|
|
8378
|
+
/**
|
|
8379
|
+
* - **ThreadSafety**: Unsafe
|
|
8380
|
+
*
|
|
8381
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#AvatarOutfitModerationCompleted)
|
|
8382
|
+
*/
|
|
8383
|
+
readonly AvatarOutfitModerationCompleted: RBXScriptSignal<(outfitId: number, moderationStatus: Enum.ModerationStatus, outfitType: Enum.OutfitType) => void>;
|
|
8312
8384
|
}
|
|
8313
8385
|
/**
|
|
8314
8386
|
* A service to support developer Avatar Editors.
|
|
@@ -9264,12 +9336,24 @@ interface MaterialImportData extends BaseImportData {
|
|
|
9264
9336
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialImportData#DiffuseFilePath)
|
|
9265
9337
|
*/
|
|
9266
9338
|
DiffuseFilePath: string;
|
|
9339
|
+
/**
|
|
9340
|
+
* - **ThreadSafety**: ReadSafe
|
|
9341
|
+
*
|
|
9342
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialImportData#DiffuseVersionedAssetId)
|
|
9343
|
+
*/
|
|
9344
|
+
DiffuseVersionedAssetId: number;
|
|
9267
9345
|
/**
|
|
9268
9346
|
* - **ThreadSafety**: ReadSafe
|
|
9269
9347
|
*
|
|
9270
9348
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialImportData#EmissiveFilePath)
|
|
9271
9349
|
*/
|
|
9272
9350
|
EmissiveFilePath: string;
|
|
9351
|
+
/**
|
|
9352
|
+
* - **ThreadSafety**: ReadSafe
|
|
9353
|
+
*
|
|
9354
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialImportData#EmissiveVersionedAssetId)
|
|
9355
|
+
*/
|
|
9356
|
+
EmissiveVersionedAssetId: number;
|
|
9273
9357
|
/**
|
|
9274
9358
|
* - **ThreadSafety**: ReadSafe
|
|
9275
9359
|
* - **Tags**: NotReplicated
|
|
@@ -9283,18 +9367,36 @@ interface MaterialImportData extends BaseImportData {
|
|
|
9283
9367
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialImportData#MetalnessFilePath)
|
|
9284
9368
|
*/
|
|
9285
9369
|
MetalnessFilePath: string;
|
|
9370
|
+
/**
|
|
9371
|
+
* - **ThreadSafety**: ReadSafe
|
|
9372
|
+
*
|
|
9373
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialImportData#MetalnessVersionedAssetId)
|
|
9374
|
+
*/
|
|
9375
|
+
MetalnessVersionedAssetId: number;
|
|
9286
9376
|
/**
|
|
9287
9377
|
* - **ThreadSafety**: ReadSafe
|
|
9288
9378
|
*
|
|
9289
9379
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialImportData#NormalFilePath)
|
|
9290
9380
|
*/
|
|
9291
9381
|
NormalFilePath: string;
|
|
9382
|
+
/**
|
|
9383
|
+
* - **ThreadSafety**: ReadSafe
|
|
9384
|
+
*
|
|
9385
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialImportData#NormalVersionedAssetId)
|
|
9386
|
+
*/
|
|
9387
|
+
NormalVersionedAssetId: number;
|
|
9292
9388
|
/**
|
|
9293
9389
|
* - **ThreadSafety**: ReadSafe
|
|
9294
9390
|
*
|
|
9295
9391
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialImportData#RoughnessFilePath)
|
|
9296
9392
|
*/
|
|
9297
9393
|
RoughnessFilePath: string;
|
|
9394
|
+
/**
|
|
9395
|
+
* - **ThreadSafety**: ReadSafe
|
|
9396
|
+
*
|
|
9397
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialImportData#RoughnessVersionedAssetId)
|
|
9398
|
+
*/
|
|
9399
|
+
RoughnessVersionedAssetId: number;
|
|
9298
9400
|
}
|
|
9299
9401
|
/**
|
|
9300
9402
|
* - **Tags**: NotCreatable, NotReplicated
|
|
@@ -9439,6 +9541,12 @@ interface MeshImportData extends BaseImportData {
|
|
|
9439
9541
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MeshImportData#UseImportedPivot)
|
|
9440
9542
|
*/
|
|
9441
9543
|
UseImportedPivot: boolean;
|
|
9544
|
+
/**
|
|
9545
|
+
* - **ThreadSafety**: ReadSafe
|
|
9546
|
+
*
|
|
9547
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MeshImportData#VersionedAssetId)
|
|
9548
|
+
*/
|
|
9549
|
+
VersionedAssetId: number;
|
|
9442
9550
|
}
|
|
9443
9551
|
/**
|
|
9444
9552
|
* - **Tags**: NotCreatable, NotReplicated
|
|
@@ -20385,6 +20493,93 @@ interface TextLabel extends GuiLabel {
|
|
|
20385
20493
|
*/
|
|
20386
20494
|
TextYAlignment: Enum.TextYAlignment;
|
|
20387
20495
|
}
|
|
20496
|
+
/**
|
|
20497
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel)
|
|
20498
|
+
*/
|
|
20499
|
+
interface InputActionLabel extends GuiObject {
|
|
20500
|
+
/**
|
|
20501
|
+
* **DO NOT USE!**
|
|
20502
|
+
*
|
|
20503
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
20504
|
+
* @hidden
|
|
20505
|
+
* @deprecated
|
|
20506
|
+
*/
|
|
20507
|
+
readonly _nominal_InputActionLabel: unique symbol;
|
|
20508
|
+
/**
|
|
20509
|
+
* - **ThreadSafety**: ReadSafe
|
|
20510
|
+
*
|
|
20511
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#FontFace)
|
|
20512
|
+
*/
|
|
20513
|
+
FontFace: Font;
|
|
20514
|
+
/**
|
|
20515
|
+
* - **ThreadSafety**: ReadSafe
|
|
20516
|
+
*
|
|
20517
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#ImageColor3)
|
|
20518
|
+
*/
|
|
20519
|
+
ImageColor3: Color3;
|
|
20520
|
+
/**
|
|
20521
|
+
* - **ThreadSafety**: ReadSafe
|
|
20522
|
+
*
|
|
20523
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#ImageTransparency)
|
|
20524
|
+
*/
|
|
20525
|
+
ImageTransparency: number;
|
|
20526
|
+
/**
|
|
20527
|
+
* - **ThreadSafety**: ReadSafe
|
|
20528
|
+
*
|
|
20529
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#InputAction)
|
|
20530
|
+
*/
|
|
20531
|
+
InputAction: InputAction | undefined;
|
|
20532
|
+
/**
|
|
20533
|
+
* - **ThreadSafety**: ReadSafe
|
|
20534
|
+
* - **Tags**: NotReplicated
|
|
20535
|
+
*
|
|
20536
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#ResolvedImageContent)
|
|
20537
|
+
*/
|
|
20538
|
+
readonly ResolvedImageContent: Content;
|
|
20539
|
+
/**
|
|
20540
|
+
* - **ThreadSafety**: ReadSafe
|
|
20541
|
+
* - **Tags**: NotReplicated
|
|
20542
|
+
*
|
|
20543
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#ResolvedText)
|
|
20544
|
+
*/
|
|
20545
|
+
readonly ResolvedText: string;
|
|
20546
|
+
/**
|
|
20547
|
+
* - **ThreadSafety**: ReadSafe
|
|
20548
|
+
*
|
|
20549
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#TextColor3)
|
|
20550
|
+
*/
|
|
20551
|
+
TextColor3: Color3;
|
|
20552
|
+
/**
|
|
20553
|
+
* - **ThreadSafety**: ReadSafe
|
|
20554
|
+
*
|
|
20555
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#TextSize)
|
|
20556
|
+
*/
|
|
20557
|
+
TextSize: number;
|
|
20558
|
+
/**
|
|
20559
|
+
* - **ThreadSafety**: ReadSafe
|
|
20560
|
+
*
|
|
20561
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#TextTransparency)
|
|
20562
|
+
*/
|
|
20563
|
+
TextTransparency: number;
|
|
20564
|
+
/**
|
|
20565
|
+
* - **ThreadSafety**: ReadSafe
|
|
20566
|
+
*
|
|
20567
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#TextWrapped)
|
|
20568
|
+
*/
|
|
20569
|
+
TextWrapped: boolean;
|
|
20570
|
+
/**
|
|
20571
|
+
* - **ThreadSafety**: ReadSafe
|
|
20572
|
+
*
|
|
20573
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#TextXAlignment)
|
|
20574
|
+
*/
|
|
20575
|
+
TextXAlignment: Enum.TextXAlignment;
|
|
20576
|
+
/**
|
|
20577
|
+
* - **ThreadSafety**: ReadSafe
|
|
20578
|
+
*
|
|
20579
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#TextYAlignment)
|
|
20580
|
+
*/
|
|
20581
|
+
TextYAlignment: Enum.TextYAlignment;
|
|
20582
|
+
}
|
|
20388
20583
|
/**
|
|
20389
20584
|
* - **Tags**: NotReplicated
|
|
20390
20585
|
*
|
|
@@ -44765,13 +44960,20 @@ interface TestService extends Instance {
|
|
|
44765
44960
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestService#CaptureScreenshotAsync)
|
|
44766
44961
|
*/
|
|
44767
44962
|
CaptureScreenshotAsync(this: TestService, artifactName?: string, options?: object): unknown;
|
|
44963
|
+
/**
|
|
44964
|
+
* - **ThreadSafety**: Unsafe
|
|
44965
|
+
* - **Tags**: Yields
|
|
44966
|
+
*
|
|
44967
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestService#FetchTestControlsAsync)
|
|
44968
|
+
*/
|
|
44969
|
+
FetchTestControlsAsync(this: TestService, category: string): unknown;
|
|
44768
44970
|
/**
|
|
44769
44971
|
* - **ThreadSafety**: Unsafe
|
|
44770
44972
|
* - **Tags**: Yields
|
|
44771
44973
|
*
|
|
44772
44974
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestService#RequestValidationAsync)
|
|
44773
44975
|
*/
|
|
44774
|
-
RequestValidationAsync(this: TestService, artifactType: string, artifactName: string): unknown;
|
|
44976
|
+
RequestValidationAsync(this: TestService, artifactType: string, artifactName: string, timeoutSeconds?: number): unknown;
|
|
44775
44977
|
/**
|
|
44776
44978
|
* - **ThreadSafety**: Unsafe
|
|
44777
44979
|
* - **Tags**: Yields
|
|
@@ -47405,12 +47607,14 @@ interface UIGradient extends UIComponent {
|
|
|
47405
47607
|
Rotation: number;
|
|
47406
47608
|
/**
|
|
47407
47609
|
* - **ThreadSafety**: ReadSafe
|
|
47610
|
+
* - **Tags**: NotBrowsable
|
|
47408
47611
|
*
|
|
47409
47612
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIGradient#Scale)
|
|
47410
47613
|
*/
|
|
47411
47614
|
Scale: number;
|
|
47412
47615
|
/**
|
|
47413
47616
|
* - **ThreadSafety**: ReadSafe
|
|
47617
|
+
* - **Tags**: NotBrowsable
|
|
47414
47618
|
*
|
|
47415
47619
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIGradient#TileMode)
|
|
47416
47620
|
*/
|
|
@@ -47425,6 +47629,7 @@ interface UIGradient extends UIComponent {
|
|
|
47425
47629
|
Transparency: NumberSequence;
|
|
47426
47630
|
/**
|
|
47427
47631
|
* - **ThreadSafety**: ReadSafe
|
|
47632
|
+
* - **Tags**: NotBrowsable
|
|
47428
47633
|
*
|
|
47429
47634
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIGradient#Type)
|
|
47430
47635
|
*/
|
|
@@ -47965,6 +48170,12 @@ interface UIShadow extends UIComponent {
|
|
|
47965
48170
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow#Enabled)
|
|
47966
48171
|
*/
|
|
47967
48172
|
Enabled: boolean;
|
|
48173
|
+
/**
|
|
48174
|
+
* - **ThreadSafety**: ReadSafe
|
|
48175
|
+
*
|
|
48176
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow#Mode)
|
|
48177
|
+
*/
|
|
48178
|
+
Mode: Enum.ApplyShadowMode;
|
|
47968
48179
|
/**
|
|
47969
48180
|
* Moves the shadow relative to the parent's position.
|
|
47970
48181
|
*
|
|
@@ -442,6 +442,7 @@ interface CreatableInstances {
|
|
|
442
442
|
ImageHandleAdornment: ImageHandleAdornment;
|
|
443
443
|
ImageLabel: ImageLabel;
|
|
444
444
|
InputAction: InputAction;
|
|
445
|
+
InputActionLabel: InputActionLabel;
|
|
445
446
|
InputBinding: InputBinding;
|
|
446
447
|
InputContext: InputContext;
|
|
447
448
|
IntConstrainedValue: IntConstrainedValue;
|
|
@@ -6471,6 +6472,19 @@ interface TextLabel extends GuiLabel {
|
|
|
6471
6472
|
*/
|
|
6472
6473
|
readonly _nominal_TextLabel: unique symbol;
|
|
6473
6474
|
}
|
|
6475
|
+
/**
|
|
6476
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel)
|
|
6477
|
+
*/
|
|
6478
|
+
interface InputActionLabel extends GuiObject {
|
|
6479
|
+
/**
|
|
6480
|
+
* **DO NOT USE!**
|
|
6481
|
+
*
|
|
6482
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
6483
|
+
* @hidden
|
|
6484
|
+
* @deprecated
|
|
6485
|
+
*/
|
|
6486
|
+
readonly _nominal_InputActionLabel: unique symbol;
|
|
6487
|
+
}
|
|
6474
6488
|
/**
|
|
6475
6489
|
* - **Tags**: NotReplicated
|
|
6476
6490
|
*
|
|
@@ -2743,6 +2743,33 @@ declare namespace Enum {
|
|
|
2743
2743
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AppUpdateStatus | undefined;
|
|
2744
2744
|
}
|
|
2745
2745
|
export type AppUpdateStatus = AppUpdateStatus.Unknown | AppUpdateStatus.NotSupported | AppUpdateStatus.Failed | AppUpdateStatus.NotAvailable | AppUpdateStatus.Available | AppUpdateStatus.AvailableBoundChannel | AppUpdateStatus.AvailableBetaProgram;
|
|
2746
|
+
/**
|
|
2747
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ApplyShadowMode)
|
|
2748
|
+
*/
|
|
2749
|
+
export namespace ApplyShadowMode {
|
|
2750
|
+
/**
|
|
2751
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ApplyShadowMode#Shape)
|
|
2752
|
+
*/
|
|
2753
|
+
export interface Shape extends globalThis.EnumItem {
|
|
2754
|
+
Name: "Shape";
|
|
2755
|
+
Value: 0;
|
|
2756
|
+
EnumType: typeof globalThis.Enum.ApplyShadowMode;
|
|
2757
|
+
}
|
|
2758
|
+
export const Shape: Shape;
|
|
2759
|
+
/**
|
|
2760
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ApplyShadowMode#Text)
|
|
2761
|
+
*/
|
|
2762
|
+
export interface Text extends globalThis.EnumItem {
|
|
2763
|
+
Name: "Text";
|
|
2764
|
+
Value: 1;
|
|
2765
|
+
EnumType: typeof globalThis.Enum.ApplyShadowMode;
|
|
2766
|
+
}
|
|
2767
|
+
export const Text: Text;
|
|
2768
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ApplyShadowMode>;
|
|
2769
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ApplyShadowMode | undefined;
|
|
2770
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ApplyShadowMode | undefined;
|
|
2771
|
+
}
|
|
2772
|
+
export type ApplyShadowMode = ApplyShadowMode.Shape | ApplyShadowMode.Text;
|
|
2746
2773
|
/**
|
|
2747
2774
|
* Used by `UIStroke.ApplyStrokeMode` to determine where to apply the stroke.
|
|
2748
2775
|
*
|
|
@@ -3583,15 +3610,6 @@ declare namespace Enum {
|
|
|
3583
3610
|
EnumType: typeof globalThis.Enum.AssetType;
|
|
3584
3611
|
}
|
|
3585
3612
|
export const EyeMakeup: EyeMakeup;
|
|
3586
|
-
/**
|
|
3587
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#VoxelFragment)
|
|
3588
|
-
*/
|
|
3589
|
-
export interface VoxelFragment extends globalThis.EnumItem {
|
|
3590
|
-
Name: "VoxelFragment";
|
|
3591
|
-
Value: 91;
|
|
3592
|
-
EnumType: typeof globalThis.Enum.AssetType;
|
|
3593
|
-
}
|
|
3594
|
-
export const VoxelFragment: VoxelFragment;
|
|
3595
3613
|
/**
|
|
3596
3614
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#AvatarBackground)
|
|
3597
3615
|
*/
|
|
@@ -3614,7 +3632,7 @@ declare namespace Enum {
|
|
|
3614
3632
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AssetType | undefined;
|
|
3615
3633
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AssetType | undefined;
|
|
3616
3634
|
}
|
|
3617
|
-
export type AssetType = AssetType.Image | AssetType.TShirt | AssetType.Audio | AssetType.Mesh | AssetType.Lua | AssetType.Hat | AssetType.Place | AssetType.Model | AssetType.Shirt | AssetType.Pants | AssetType.Decal | AssetType.Head | AssetType.Face | AssetType.Gear | AssetType.Badge | AssetType.Animation | AssetType.Torso | AssetType.RightArm | AssetType.LeftArm | AssetType.LeftLeg | AssetType.RightLeg | AssetType.Package | AssetType.GamePass | AssetType.Plugin | AssetType.MeshPart | AssetType.HairAccessory | AssetType.FaceAccessory | AssetType.NeckAccessory | AssetType.ShoulderAccessory | AssetType.FrontAccessory | AssetType.BackAccessory | AssetType.WaistAccessory | AssetType.ClimbAnimation | AssetType.DeathAnimation | AssetType.FallAnimation | AssetType.IdleAnimation | AssetType.JumpAnimation | AssetType.RunAnimation | AssetType.SwimAnimation | AssetType.WalkAnimation | AssetType.PoseAnimation | AssetType.EarAccessory | AssetType.EyeAccessory | AssetType.EmoteAnimation | AssetType.Video | AssetType.TShirtAccessory | AssetType.ShirtAccessory | AssetType.PantsAccessory | AssetType.JacketAccessory | AssetType.SweaterAccessory | AssetType.ShortsAccessory | AssetType.LeftShoeAccessory | AssetType.RightShoeAccessory | AssetType.DressSkirtAccessory | AssetType.FontFamily | AssetType.EyebrowAccessory | AssetType.EyelashAccessory | AssetType.MoodAnimation | AssetType.DynamicHead | AssetType.FaceMakeup | AssetType.LipMakeup | AssetType.EyeMakeup | AssetType.
|
|
3635
|
+
export type AssetType = AssetType.Image | AssetType.TShirt | AssetType.Audio | AssetType.Mesh | AssetType.Lua | AssetType.Hat | AssetType.Place | AssetType.Model | AssetType.Shirt | AssetType.Pants | AssetType.Decal | AssetType.Head | AssetType.Face | AssetType.Gear | AssetType.Badge | AssetType.Animation | AssetType.Torso | AssetType.RightArm | AssetType.LeftArm | AssetType.LeftLeg | AssetType.RightLeg | AssetType.Package | AssetType.GamePass | AssetType.Plugin | AssetType.MeshPart | AssetType.HairAccessory | AssetType.FaceAccessory | AssetType.NeckAccessory | AssetType.ShoulderAccessory | AssetType.FrontAccessory | AssetType.BackAccessory | AssetType.WaistAccessory | AssetType.ClimbAnimation | AssetType.DeathAnimation | AssetType.FallAnimation | AssetType.IdleAnimation | AssetType.JumpAnimation | AssetType.RunAnimation | AssetType.SwimAnimation | AssetType.WalkAnimation | AssetType.PoseAnimation | AssetType.EarAccessory | AssetType.EyeAccessory | AssetType.EmoteAnimation | AssetType.Video | AssetType.TShirtAccessory | AssetType.ShirtAccessory | AssetType.PantsAccessory | AssetType.JacketAccessory | AssetType.SweaterAccessory | AssetType.ShortsAccessory | AssetType.LeftShoeAccessory | AssetType.RightShoeAccessory | AssetType.DressSkirtAccessory | AssetType.FontFamily | AssetType.EyebrowAccessory | AssetType.EyelashAccessory | AssetType.MoodAnimation | AssetType.DynamicHead | AssetType.FaceMakeup | AssetType.LipMakeup | AssetType.EyeMakeup | AssetType.AvatarBackground | AssetType.TextDocument;
|
|
3618
3636
|
/**
|
|
3619
3637
|
* Determines the asset type verification mode.
|
|
3620
3638
|
*
|
|
@@ -15833,6 +15851,42 @@ declare namespace Enum {
|
|
|
15833
15851
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.GearType | undefined;
|
|
15834
15852
|
}
|
|
15835
15853
|
export type GearType = GearType.MeleeWeapons | GearType.RangedWeapons | GearType.Explosives | GearType.PowerUps | GearType.NavigationEnhancers | GearType.MusicalInstruments | GearType.SocialItems | GearType.BuildingTools | GearType.Transport;
|
|
15854
|
+
/**
|
|
15855
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GenerateMomentTextResult)
|
|
15856
|
+
*/
|
|
15857
|
+
export namespace GenerateMomentTextResult {
|
|
15858
|
+
/**
|
|
15859
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GenerateMomentTextResult#Success)
|
|
15860
|
+
*/
|
|
15861
|
+
export interface Success extends globalThis.EnumItem {
|
|
15862
|
+
Name: "Success";
|
|
15863
|
+
Value: 0;
|
|
15864
|
+
EnumType: typeof globalThis.Enum.GenerateMomentTextResult;
|
|
15865
|
+
}
|
|
15866
|
+
export const Success: Success;
|
|
15867
|
+
/**
|
|
15868
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GenerateMomentTextResult#Pending)
|
|
15869
|
+
*/
|
|
15870
|
+
export interface Pending extends globalThis.EnumItem {
|
|
15871
|
+
Name: "Pending";
|
|
15872
|
+
Value: 1;
|
|
15873
|
+
EnumType: typeof globalThis.Enum.GenerateMomentTextResult;
|
|
15874
|
+
}
|
|
15875
|
+
export const Pending: Pending;
|
|
15876
|
+
/**
|
|
15877
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/GenerateMomentTextResult#Failed)
|
|
15878
|
+
*/
|
|
15879
|
+
export interface Failed extends globalThis.EnumItem {
|
|
15880
|
+
Name: "Failed";
|
|
15881
|
+
Value: 2;
|
|
15882
|
+
EnumType: typeof globalThis.Enum.GenerateMomentTextResult;
|
|
15883
|
+
}
|
|
15884
|
+
export const Failed: Failed;
|
|
15885
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.GenerateMomentTextResult>;
|
|
15886
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.GenerateMomentTextResult | undefined;
|
|
15887
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.GenerateMomentTextResult | undefined;
|
|
15888
|
+
}
|
|
15889
|
+
export type GenerateMomentTextResult = GenerateMomentTextResult.Success | GenerateMomentTextResult.Pending | GenerateMomentTextResult.Failed;
|
|
15836
15890
|
/**
|
|
15837
15891
|
* **Deprecated:**
|
|
15838
15892
|
*
|
|
@@ -18249,11 +18303,20 @@ declare namespace Enum {
|
|
|
18249
18303
|
EnumType: typeof globalThis.Enum.InternalVideoUsage;
|
|
18250
18304
|
}
|
|
18251
18305
|
export const HomeCarousel: HomeCarousel;
|
|
18306
|
+
/**
|
|
18307
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InternalVideoUsage#FeatureTileAd)
|
|
18308
|
+
*/
|
|
18309
|
+
export interface FeatureTileAd extends globalThis.EnumItem {
|
|
18310
|
+
Name: "FeatureTileAd";
|
|
18311
|
+
Value: 3;
|
|
18312
|
+
EnumType: typeof globalThis.Enum.InternalVideoUsage;
|
|
18313
|
+
}
|
|
18314
|
+
export const FeatureTileAd: FeatureTileAd;
|
|
18252
18315
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.InternalVideoUsage>;
|
|
18253
18316
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.InternalVideoUsage | undefined;
|
|
18254
18317
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.InternalVideoUsage | undefined;
|
|
18255
18318
|
}
|
|
18256
|
-
export type InternalVideoUsage = InternalVideoUsage.Default | InternalVideoUsage.WatchPage | InternalVideoUsage.HomeCarousel;
|
|
18319
|
+
export type InternalVideoUsage = InternalVideoUsage.Default | InternalVideoUsage.WatchPage | InternalVideoUsage.HomeCarousel | InternalVideoUsage.FeatureTileAd;
|
|
18257
18320
|
/**
|
|
18258
18321
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InterpolationThrottlingMode)
|
|
18259
18322
|
*/
|
|
@@ -23511,6 +23574,60 @@ declare namespace Enum {
|
|
|
23511
23574
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MembershipType | undefined;
|
|
23512
23575
|
}
|
|
23513
23576
|
export type MembershipType = MembershipType.None | MembershipType.BuildersClub | MembershipType.TurboBuildersClub | MembershipType.OutrageousBuildersClub | MembershipType.Premium;
|
|
23577
|
+
/**
|
|
23578
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MeshAttribute)
|
|
23579
|
+
*/
|
|
23580
|
+
export namespace MeshAttribute {
|
|
23581
|
+
/**
|
|
23582
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MeshAttribute#Vertex)
|
|
23583
|
+
*/
|
|
23584
|
+
export interface Vertex extends globalThis.EnumItem {
|
|
23585
|
+
Name: "Vertex";
|
|
23586
|
+
Value: 0;
|
|
23587
|
+
EnumType: typeof globalThis.Enum.MeshAttribute;
|
|
23588
|
+
}
|
|
23589
|
+
export const Vertex: Vertex;
|
|
23590
|
+
/**
|
|
23591
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MeshAttribute#Normal)
|
|
23592
|
+
*/
|
|
23593
|
+
export interface Normal extends globalThis.EnumItem {
|
|
23594
|
+
Name: "Normal";
|
|
23595
|
+
Value: 1;
|
|
23596
|
+
EnumType: typeof globalThis.Enum.MeshAttribute;
|
|
23597
|
+
}
|
|
23598
|
+
export const Normal: Normal;
|
|
23599
|
+
/**
|
|
23600
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MeshAttribute#Color)
|
|
23601
|
+
*/
|
|
23602
|
+
export interface Color extends globalThis.EnumItem {
|
|
23603
|
+
Name: "Color";
|
|
23604
|
+
Value: 2;
|
|
23605
|
+
EnumType: typeof globalThis.Enum.MeshAttribute;
|
|
23606
|
+
}
|
|
23607
|
+
export const Color: Color;
|
|
23608
|
+
/**
|
|
23609
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MeshAttribute#UV)
|
|
23610
|
+
*/
|
|
23611
|
+
export interface UV extends globalThis.EnumItem {
|
|
23612
|
+
Name: "UV";
|
|
23613
|
+
Value: 3;
|
|
23614
|
+
EnumType: typeof globalThis.Enum.MeshAttribute;
|
|
23615
|
+
}
|
|
23616
|
+
export const UV: UV;
|
|
23617
|
+
/**
|
|
23618
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MeshAttribute#Face)
|
|
23619
|
+
*/
|
|
23620
|
+
export interface Face extends globalThis.EnumItem {
|
|
23621
|
+
Name: "Face";
|
|
23622
|
+
Value: 4;
|
|
23623
|
+
EnumType: typeof globalThis.Enum.MeshAttribute;
|
|
23624
|
+
}
|
|
23625
|
+
export const Face: Face;
|
|
23626
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.MeshAttribute>;
|
|
23627
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.MeshAttribute | undefined;
|
|
23628
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MeshAttribute | undefined;
|
|
23629
|
+
}
|
|
23630
|
+
export type MeshAttribute = MeshAttribute.Vertex | MeshAttribute.Normal | MeshAttribute.Color | MeshAttribute.UV | MeshAttribute.Face;
|
|
23514
23631
|
/**
|
|
23515
23632
|
* The level of detail of `MeshParts` displayed in Studio.
|
|
23516
23633
|
*
|
|
@@ -39565,6 +39682,42 @@ declare namespace Enum {
|
|
|
39565
39682
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UserInputType | undefined;
|
|
39566
39683
|
}
|
|
39567
39684
|
export type UserInputType = UserInputType.MouseButton1 | UserInputType.MouseButton2 | UserInputType.MouseButton3 | UserInputType.MouseWheel | UserInputType.MouseMovement | UserInputType.Touch | UserInputType.Keyboard | UserInputType.Focus | UserInputType.Accelerometer | UserInputType.Gyro | UserInputType.Gamepad1 | UserInputType.Gamepad2 | UserInputType.Gamepad3 | UserInputType.Gamepad4 | UserInputType.Gamepad5 | UserInputType.Gamepad6 | UserInputType.Gamepad7 | UserInputType.Gamepad8 | UserInputType.TextInput | UserInputType.InputMethod | UserInputType.None;
|
|
39685
|
+
/**
|
|
39686
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserNewReturningStatus)
|
|
39687
|
+
*/
|
|
39688
|
+
export namespace UserNewReturningStatus {
|
|
39689
|
+
/**
|
|
39690
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserNewReturningStatus#Unknown)
|
|
39691
|
+
*/
|
|
39692
|
+
export interface Unknown extends globalThis.EnumItem {
|
|
39693
|
+
Name: "Unknown";
|
|
39694
|
+
Value: 0;
|
|
39695
|
+
EnumType: typeof globalThis.Enum.UserNewReturningStatus;
|
|
39696
|
+
}
|
|
39697
|
+
export const Unknown: Unknown;
|
|
39698
|
+
/**
|
|
39699
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserNewReturningStatus#New)
|
|
39700
|
+
*/
|
|
39701
|
+
export interface New extends globalThis.EnumItem {
|
|
39702
|
+
Name: "New";
|
|
39703
|
+
Value: 1;
|
|
39704
|
+
EnumType: typeof globalThis.Enum.UserNewReturningStatus;
|
|
39705
|
+
}
|
|
39706
|
+
export const New: New;
|
|
39707
|
+
/**
|
|
39708
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserNewReturningStatus#Returning)
|
|
39709
|
+
*/
|
|
39710
|
+
export interface Returning extends globalThis.EnumItem {
|
|
39711
|
+
Name: "Returning";
|
|
39712
|
+
Value: 2;
|
|
39713
|
+
EnumType: typeof globalThis.Enum.UserNewReturningStatus;
|
|
39714
|
+
}
|
|
39715
|
+
export const Returning: Returning;
|
|
39716
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UserNewReturningStatus>;
|
|
39717
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.UserNewReturningStatus | undefined;
|
|
39718
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UserNewReturningStatus | undefined;
|
|
39719
|
+
}
|
|
39720
|
+
export type UserNewReturningStatus = UserNewReturningStatus.Unknown | UserNewReturningStatus.New | UserNewReturningStatus.Returning;
|
|
39568
39721
|
/**
|
|
39569
39722
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserReturnStatus)
|
|
39570
39723
|
*/
|