@rbxts/types 1.0.852 → 1.0.854
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 +463 -174
- package/include/generated/PluginSecurity.d.ts +98 -14
- package/include/generated/enums.d.ts +181 -40
- package/package.json +1 -1
|
@@ -344,6 +344,7 @@ interface CreatableInstances {
|
|
|
344
344
|
Glue: Glue;
|
|
345
345
|
GroundController: GroundController;
|
|
346
346
|
Handles: Handles;
|
|
347
|
+
HandRigDescription: HandRigDescription;
|
|
347
348
|
HapticEffect: HapticEffect;
|
|
348
349
|
Hat: Hat;
|
|
349
350
|
HiddenSurfaceRemovalAsset: HiddenSurfaceRemovalAsset;
|
|
@@ -691,6 +692,7 @@ interface Objects extends Instances {
|
|
|
691
692
|
EditableMesh: EditableMesh;
|
|
692
693
|
Object: RBXObject;
|
|
693
694
|
ScreenshotCapture: ScreenshotCapture;
|
|
695
|
+
VideoCapture: VideoCapture;
|
|
694
696
|
}
|
|
695
697
|
// GENERATED ROBLOX INSTANCE CLASSES
|
|
696
698
|
/**
|
|
@@ -780,6 +782,21 @@ interface ScreenshotCapture extends Capture {
|
|
|
780
782
|
*/
|
|
781
783
|
readonly _nominal_ScreenshotCapture: unique symbol;
|
|
782
784
|
}
|
|
785
|
+
/**
|
|
786
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
787
|
+
*
|
|
788
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoCapture)
|
|
789
|
+
*/
|
|
790
|
+
interface VideoCapture extends Capture {
|
|
791
|
+
/**
|
|
792
|
+
* **DO NOT USE!**
|
|
793
|
+
*
|
|
794
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
795
|
+
* @hidden
|
|
796
|
+
* @deprecated
|
|
797
|
+
*/
|
|
798
|
+
readonly _nominal_VideoCapture: unique symbol;
|
|
799
|
+
}
|
|
783
800
|
/**
|
|
784
801
|
* - **Tags**: NotCreatable, NotReplicated
|
|
785
802
|
*
|
|
@@ -1015,6 +1032,8 @@ interface EditableMesh extends RBXObject {
|
|
|
1015
1032
|
*/
|
|
1016
1033
|
get FixedSize(): boolean;
|
|
1017
1034
|
/**
|
|
1035
|
+
* **Deprecated:**
|
|
1036
|
+
*
|
|
1018
1037
|
* - **ThreadSafety**: ReadSafe
|
|
1019
1038
|
* - **Tags**:
|
|
1020
1039
|
*
|
|
@@ -1027,8 +1046,6 @@ interface EditableMesh extends RBXObject {
|
|
|
1027
1046
|
* - **ThreadSafety**: Unsafe
|
|
1028
1047
|
*
|
|
1029
1048
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#AddBone)
|
|
1030
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1031
|
-
* @param boneProperties
|
|
1032
1049
|
*/
|
|
1033
1050
|
AddBone(this: EditableMesh, boneProperties: object): number;
|
|
1034
1051
|
/**
|
|
@@ -1162,47 +1179,36 @@ interface EditableMesh extends RBXObject {
|
|
|
1162
1179
|
* - **ThreadSafety**: Unsafe
|
|
1163
1180
|
*
|
|
1164
1181
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneByName)
|
|
1165
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1166
|
-
* @param boneName
|
|
1167
1182
|
*/
|
|
1168
1183
|
GetBoneByName(this: EditableMesh, boneName: string): number;
|
|
1169
1184
|
/**
|
|
1170
1185
|
* - **ThreadSafety**: Unsafe
|
|
1171
1186
|
*
|
|
1172
1187
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneCFrame)
|
|
1173
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1174
|
-
* @param boneId
|
|
1175
1188
|
*/
|
|
1176
1189
|
GetBoneCFrame(this: EditableMesh, boneId: number): CFrame;
|
|
1177
1190
|
/**
|
|
1178
1191
|
* - **ThreadSafety**: Unsafe
|
|
1179
1192
|
*
|
|
1180
1193
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneIsVirtual)
|
|
1181
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1182
|
-
* @param boneId
|
|
1183
1194
|
*/
|
|
1184
1195
|
GetBoneIsVirtual(this: EditableMesh, boneId: number): boolean;
|
|
1185
1196
|
/**
|
|
1186
1197
|
* - **ThreadSafety**: Unsafe
|
|
1187
1198
|
*
|
|
1188
1199
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneName)
|
|
1189
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1190
|
-
* @param boneId
|
|
1191
1200
|
*/
|
|
1192
1201
|
GetBoneName(this: EditableMesh, boneId: number): string;
|
|
1193
1202
|
/**
|
|
1194
1203
|
* - **ThreadSafety**: Unsafe
|
|
1195
1204
|
*
|
|
1196
1205
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneParent)
|
|
1197
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1198
|
-
* @param boneId
|
|
1199
1206
|
*/
|
|
1200
1207
|
GetBoneParent(this: EditableMesh, boneId: number): number;
|
|
1201
1208
|
/**
|
|
1202
1209
|
* - **ThreadSafety**: Unsafe
|
|
1203
1210
|
*
|
|
1204
1211
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBones)
|
|
1205
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1206
1212
|
*/
|
|
1207
1213
|
GetBones(this: EditableMesh): Array<unknown>;
|
|
1208
1214
|
/**
|
|
@@ -1326,8 +1332,6 @@ interface EditableMesh extends RBXObject {
|
|
|
1326
1332
|
* - **Tags**: CustomLuaState
|
|
1327
1333
|
*
|
|
1328
1334
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithColor)
|
|
1329
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1330
|
-
* @param colorId
|
|
1331
1335
|
*/
|
|
1332
1336
|
GetFacesWithColor(this: EditableMesh, colorId: number): Array<unknown>;
|
|
1333
1337
|
/**
|
|
@@ -1335,8 +1339,6 @@ interface EditableMesh extends RBXObject {
|
|
|
1335
1339
|
* - **Tags**: CustomLuaState
|
|
1336
1340
|
*
|
|
1337
1341
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithNormal)
|
|
1338
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1339
|
-
* @param normalId
|
|
1340
1342
|
*/
|
|
1341
1343
|
GetFacesWithNormal(this: EditableMesh, normalId: number): Array<unknown>;
|
|
1342
1344
|
/**
|
|
@@ -1344,38 +1346,30 @@ interface EditableMesh extends RBXObject {
|
|
|
1344
1346
|
* - **Tags**: CustomLuaState
|
|
1345
1347
|
*
|
|
1346
1348
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithUV)
|
|
1347
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1348
|
-
* @param uvId
|
|
1349
1349
|
*/
|
|
1350
1350
|
GetFacesWithUV(this: EditableMesh, uvId: number): Array<unknown>;
|
|
1351
1351
|
/**
|
|
1352
1352
|
* - **ThreadSafety**: Unsafe
|
|
1353
1353
|
*
|
|
1354
1354
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsCorrectivePose)
|
|
1355
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1356
|
-
* @param actions
|
|
1357
1355
|
*/
|
|
1358
1356
|
GetFacsCorrectivePose(this: EditableMesh, actions: Array<unknown>): unknown;
|
|
1359
1357
|
/**
|
|
1360
1358
|
* - **ThreadSafety**: Unsafe
|
|
1361
1359
|
*
|
|
1362
1360
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsCorrectivePoses)
|
|
1363
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1364
1361
|
*/
|
|
1365
1362
|
GetFacsCorrectivePoses(this: EditableMesh): Array<unknown>;
|
|
1366
1363
|
/**
|
|
1367
1364
|
* - **ThreadSafety**: Unsafe
|
|
1368
1365
|
*
|
|
1369
1366
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsPose)
|
|
1370
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1371
|
-
* @param action
|
|
1372
1367
|
*/
|
|
1373
1368
|
GetFacsPose(this: EditableMesh, action: CastsToEnum<Enum.FacsActionUnit>): unknown;
|
|
1374
1369
|
/**
|
|
1375
1370
|
* - **ThreadSafety**: Unsafe
|
|
1376
1371
|
*
|
|
1377
1372
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsPoses)
|
|
1378
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1379
1373
|
*/
|
|
1380
1374
|
GetFacsPoses(this: EditableMesh): Array<unknown>;
|
|
1381
1375
|
/**
|
|
@@ -1445,16 +1439,12 @@ interface EditableMesh extends RBXObject {
|
|
|
1445
1439
|
* - **ThreadSafety**: Unsafe
|
|
1446
1440
|
*
|
|
1447
1441
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexBoneWeights)
|
|
1448
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1449
|
-
* @param vertexId
|
|
1450
1442
|
*/
|
|
1451
1443
|
GetVertexBoneWeights(this: EditableMesh, vertexId: number): Array<unknown>;
|
|
1452
1444
|
/**
|
|
1453
1445
|
* - **ThreadSafety**: Unsafe
|
|
1454
1446
|
*
|
|
1455
1447
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexBones)
|
|
1456
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1457
|
-
* @param vertexId
|
|
1458
1448
|
*/
|
|
1459
1449
|
GetVertexBones(this: EditableMesh, vertexId: number): Array<unknown>;
|
|
1460
1450
|
/**
|
|
@@ -1462,35 +1452,24 @@ interface EditableMesh extends RBXObject {
|
|
|
1462
1452
|
* - **Tags**: CustomLuaState
|
|
1463
1453
|
*
|
|
1464
1454
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexColors)
|
|
1465
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1466
|
-
* @param vertexId
|
|
1467
1455
|
*/
|
|
1468
1456
|
GetVertexColors(this: EditableMesh, vertexId: number): Array<unknown>;
|
|
1469
1457
|
/**
|
|
1470
1458
|
* - **ThreadSafety**: Unsafe
|
|
1471
1459
|
*
|
|
1472
1460
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceColor)
|
|
1473
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1474
|
-
* @param vertexId
|
|
1475
|
-
* @param faceId
|
|
1476
1461
|
*/
|
|
1477
1462
|
GetVertexFaceColor(this: EditableMesh, vertexId: number, faceId: number): number;
|
|
1478
1463
|
/**
|
|
1479
1464
|
* - **ThreadSafety**: Unsafe
|
|
1480
1465
|
*
|
|
1481
1466
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceNormal)
|
|
1482
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1483
|
-
* @param vertexId
|
|
1484
|
-
* @param faceId
|
|
1485
1467
|
*/
|
|
1486
1468
|
GetVertexFaceNormal(this: EditableMesh, vertexId: number, faceId: number): number;
|
|
1487
1469
|
/**
|
|
1488
1470
|
* - **ThreadSafety**: Unsafe
|
|
1489
1471
|
*
|
|
1490
1472
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceUV)
|
|
1491
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1492
|
-
* @param vertexId
|
|
1493
|
-
* @param faceId
|
|
1494
1473
|
*/
|
|
1495
1474
|
GetVertexFaceUV(this: EditableMesh, vertexId: number, faceId: number): number;
|
|
1496
1475
|
/**
|
|
@@ -1498,8 +1477,6 @@ interface EditableMesh extends RBXObject {
|
|
|
1498
1477
|
* - **Tags**: CustomLuaState
|
|
1499
1478
|
*
|
|
1500
1479
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaces)
|
|
1501
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1502
|
-
* @param vertexId
|
|
1503
1480
|
*/
|
|
1504
1481
|
GetVertexFaces(this: EditableMesh, vertexId: number): Array<unknown>;
|
|
1505
1482
|
/**
|
|
@@ -1507,8 +1484,6 @@ interface EditableMesh extends RBXObject {
|
|
|
1507
1484
|
* - **Tags**: CustomLuaState
|
|
1508
1485
|
*
|
|
1509
1486
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexNormals)
|
|
1510
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1511
|
-
* @param vertexId
|
|
1512
1487
|
*/
|
|
1513
1488
|
GetVertexNormals(this: EditableMesh, vertexId: number): Array<unknown>;
|
|
1514
1489
|
/**
|
|
@@ -1516,8 +1491,6 @@ interface EditableMesh extends RBXObject {
|
|
|
1516
1491
|
* - **Tags**: CustomLuaState
|
|
1517
1492
|
*
|
|
1518
1493
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexUVs)
|
|
1519
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1520
|
-
* @param vertexId
|
|
1521
1494
|
*/
|
|
1522
1495
|
GetVertexUVs(this: EditableMesh, vertexId: number): Array<unknown>;
|
|
1523
1496
|
/**
|
|
@@ -1551,8 +1524,6 @@ interface EditableMesh extends RBXObject {
|
|
|
1551
1524
|
* - **Tags**: CustomLuaState
|
|
1552
1525
|
*
|
|
1553
1526
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithColor)
|
|
1554
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1555
|
-
* @param colorId
|
|
1556
1527
|
*/
|
|
1557
1528
|
GetVerticesWithColor(this: EditableMesh, colorId: number): Array<unknown>;
|
|
1558
1529
|
/**
|
|
@@ -1560,8 +1531,6 @@ interface EditableMesh extends RBXObject {
|
|
|
1560
1531
|
* - **Tags**: CustomLuaState
|
|
1561
1532
|
*
|
|
1562
1533
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithNormal)
|
|
1563
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1564
|
-
* @param normalId
|
|
1565
1534
|
*/
|
|
1566
1535
|
GetVerticesWithNormal(this: EditableMesh, normalId: number): Array<unknown>;
|
|
1567
1536
|
/**
|
|
@@ -1569,8 +1538,6 @@ interface EditableMesh extends RBXObject {
|
|
|
1569
1538
|
* - **Tags**: CustomLuaState
|
|
1570
1539
|
*
|
|
1571
1540
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithUV)
|
|
1572
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1573
|
-
* @param uvId
|
|
1574
1541
|
*/
|
|
1575
1542
|
GetVerticesWithUV(this: EditableMesh, uvId: number): Array<unknown>;
|
|
1576
1543
|
/**
|
|
@@ -1613,8 +1580,6 @@ interface EditableMesh extends RBXObject {
|
|
|
1613
1580
|
* - **ThreadSafety**: Unsafe
|
|
1614
1581
|
*
|
|
1615
1582
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#RemoveBone)
|
|
1616
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1617
|
-
* @param boneId
|
|
1618
1583
|
*/
|
|
1619
1584
|
RemoveBone(this: EditableMesh, boneId: number): void;
|
|
1620
1585
|
/**
|
|
@@ -1651,36 +1616,24 @@ interface EditableMesh extends RBXObject {
|
|
|
1651
1616
|
* - **ThreadSafety**: Unsafe
|
|
1652
1617
|
*
|
|
1653
1618
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetBoneCFrame)
|
|
1654
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1655
|
-
* @param boneId
|
|
1656
|
-
* @param cframe
|
|
1657
1619
|
*/
|
|
1658
1620
|
SetBoneCFrame(this: EditableMesh, boneId: number, cframe: CFrame): void;
|
|
1659
1621
|
/**
|
|
1660
1622
|
* - **ThreadSafety**: Unsafe
|
|
1661
1623
|
*
|
|
1662
1624
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetBoneIsVirtual)
|
|
1663
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1664
|
-
* @param boneId
|
|
1665
|
-
* @param virtual
|
|
1666
1625
|
*/
|
|
1667
1626
|
SetBoneIsVirtual(this: EditableMesh, boneId: number, virtual: boolean): void;
|
|
1668
1627
|
/**
|
|
1669
1628
|
* - **ThreadSafety**: Unsafe
|
|
1670
1629
|
*
|
|
1671
1630
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetBoneName)
|
|
1672
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1673
|
-
* @param boneId
|
|
1674
|
-
* @param name
|
|
1675
1631
|
*/
|
|
1676
1632
|
SetBoneName(this: EditableMesh, boneId: number, name: string): void;
|
|
1677
1633
|
/**
|
|
1678
1634
|
* - **ThreadSafety**: Unsafe
|
|
1679
1635
|
*
|
|
1680
1636
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetBoneParent)
|
|
1681
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1682
|
-
* @param boneId
|
|
1683
|
-
* @param parentBoneId
|
|
1684
1637
|
*/
|
|
1685
1638
|
SetBoneParent(this: EditableMesh, boneId: number, parentBoneId: number): void;
|
|
1686
1639
|
/**
|
|
@@ -1757,30 +1710,18 @@ interface EditableMesh extends RBXObject {
|
|
|
1757
1710
|
* - **ThreadSafety**: Unsafe
|
|
1758
1711
|
*
|
|
1759
1712
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetFacsBonePose)
|
|
1760
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1761
|
-
* @param action
|
|
1762
|
-
* @param boneId
|
|
1763
|
-
* @param cframe
|
|
1764
1713
|
*/
|
|
1765
1714
|
SetFacsBonePose(this: EditableMesh, action: CastsToEnum<Enum.FacsActionUnit>, boneId: number, cframe: CFrame): void;
|
|
1766
1715
|
/**
|
|
1767
1716
|
* - **ThreadSafety**: Unsafe
|
|
1768
1717
|
*
|
|
1769
1718
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetFacsCorrectivePose)
|
|
1770
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1771
|
-
* @param actions
|
|
1772
|
-
* @param boneIds
|
|
1773
|
-
* @param cframes
|
|
1774
1719
|
*/
|
|
1775
1720
|
SetFacsCorrectivePose(this: EditableMesh, actions: Array<unknown>, boneIds: Array<unknown>, cframes: Array<unknown>): void;
|
|
1776
1721
|
/**
|
|
1777
1722
|
* - **ThreadSafety**: Unsafe
|
|
1778
1723
|
*
|
|
1779
1724
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetFacsPose)
|
|
1780
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1781
|
-
* @param action
|
|
1782
|
-
* @param boneIds
|
|
1783
|
-
* @param cframes
|
|
1784
1725
|
*/
|
|
1785
1726
|
SetFacsPose(this: EditableMesh, action: CastsToEnum<Enum.FacsActionUnit>, boneIds: Array<unknown>, cframes: Array<unknown>): void;
|
|
1786
1727
|
/**
|
|
@@ -1820,48 +1761,30 @@ interface EditableMesh extends RBXObject {
|
|
|
1820
1761
|
* - **ThreadSafety**: Unsafe
|
|
1821
1762
|
*
|
|
1822
1763
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexBoneWeights)
|
|
1823
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1824
|
-
* @param vertexId
|
|
1825
|
-
* @param boneWeights
|
|
1826
1764
|
*/
|
|
1827
1765
|
SetVertexBoneWeights(this: EditableMesh, vertexId: number, boneWeights: Array<unknown>): void;
|
|
1828
1766
|
/**
|
|
1829
1767
|
* - **ThreadSafety**: Unsafe
|
|
1830
1768
|
*
|
|
1831
1769
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexBones)
|
|
1832
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1833
|
-
* @param vertexId
|
|
1834
|
-
* @param boneIDs
|
|
1835
1770
|
*/
|
|
1836
1771
|
SetVertexBones(this: EditableMesh, vertexId: number, boneIDs: Array<unknown>): void;
|
|
1837
1772
|
/**
|
|
1838
1773
|
* - **ThreadSafety**: Unsafe
|
|
1839
1774
|
*
|
|
1840
1775
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexFaceColor)
|
|
1841
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1842
|
-
* @param vertexId
|
|
1843
|
-
* @param faceId
|
|
1844
|
-
* @param colorId
|
|
1845
1776
|
*/
|
|
1846
1777
|
SetVertexFaceColor(this: EditableMesh, vertexId: number, faceId: number, colorId: number): void;
|
|
1847
1778
|
/**
|
|
1848
1779
|
* - **ThreadSafety**: Unsafe
|
|
1849
1780
|
*
|
|
1850
1781
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexFaceNormal)
|
|
1851
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1852
|
-
* @param vertexId
|
|
1853
|
-
* @param faceId
|
|
1854
|
-
* @param normalId
|
|
1855
1782
|
*/
|
|
1856
1783
|
SetVertexFaceNormal(this: EditableMesh, vertexId: number, faceId: number, normalId: number): void;
|
|
1857
1784
|
/**
|
|
1858
1785
|
* - **ThreadSafety**: Unsafe
|
|
1859
1786
|
*
|
|
1860
1787
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexFaceUV)
|
|
1861
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1862
|
-
* @param vertexId
|
|
1863
|
-
* @param faceId
|
|
1864
|
-
* @param uvId
|
|
1865
1788
|
*/
|
|
1866
1789
|
SetVertexFaceUV(this: EditableMesh, vertexId: number, faceId: number, uvId: number): void;
|
|
1867
1790
|
/**
|
|
@@ -2630,7 +2553,7 @@ interface AnalyticsService extends Instance {
|
|
|
2630
2553
|
* @param currency The currency used. Examples: 'gold', 'gems', 'life.'.
|
|
2631
2554
|
* @param location The event location. A dictionary that each key-value represents an entry of location data. The key-value is a string-string pair. With this you can query which are the most popular "stores" then maybe you want to increase/lower the price for the stores. See the example below:
|
|
2632
2555
|
* ```lua
|
|
2633
|
-
* local location = { ["placeDesc"] = "Dungeon1", ["levelDesc"] = "level2", ["mapDesc"] = "LeftChamberMap", ["storeName"] = "DarkSmith", ["
|
|
2556
|
+
* local location = { ["placeDesc"] = "Dungeon1", ["levelDesc"] = "level2", ["mapDesc"] = "LeftChamberMap", ["storeName"] = "DarkSmith", ["userDefinedKey"] = "0005" }
|
|
2634
2557
|
* ```
|
|
2635
2558
|
* @param customData Optional. User defined data, could be a string, a number or a table.
|
|
2636
2559
|
*
|
|
@@ -2679,11 +2602,11 @@ interface AnalyticsService extends Instance {
|
|
|
2679
2602
|
* @param progressionStatus Indicates the status of the progression.
|
|
2680
2603
|
* @param location The event location. A dictionary that each key-value represents an entry of location data. The key-value is a string-string pair. With this developers can query where is the most frequent location for a specific progression event category. For example, the category could be "LevelUp".
|
|
2681
2604
|
* ```lua
|
|
2682
|
-
* local location = { ["placeDesc"] = "Dungeon1", ["levelDesc"] = "level2", ["mapDesc"] = "LeftChamberMap", ["ProgresionType"] = "LevelUp", ["
|
|
2605
|
+
* local location = { ["placeDesc"] = "Dungeon1", ["levelDesc"] = "level2", ["mapDesc"] = "LeftChamberMap", ["ProgresionType"] = "LevelUp", ["userDefinedKey5"] = "0005" }
|
|
2683
2606
|
* ```
|
|
2684
2607
|
* @param statistics Optional. A dictionary that each key-value represents an entry of statistics data that allows developers to track any specific data that they want to collect as players progress through their game. Key-Value is a string-number pair.
|
|
2685
2608
|
* ```lua
|
|
2686
|
-
* local statistics = { ["numberOfKills"] = 111, ["numberOfExp"] = 222, ["
|
|
2609
|
+
* local statistics = { ["numberOfKills"] = 111, ["numberOfExp"] = 222, ["userDefinedKey3"] = number, ["userDefinedKey4"] = number, ["userDefinedKey5"] = number }
|
|
2687
2610
|
* ```
|
|
2688
2611
|
* @param customData Optional. User defined data, could be a string, a number or a table.
|
|
2689
2612
|
*
|
|
@@ -3684,14 +3607,6 @@ interface AssetService extends Instance {
|
|
|
3684
3607
|
* @param editableMeshOptions Table containing options for the created `EditableMesh`. Currently no options are available since `FixedSize` will always be `false` for empty editable meshes.
|
|
3685
3608
|
*/
|
|
3686
3609
|
CreateEditableMesh(this: AssetService, editableMeshOptions?: object): EditableMesh;
|
|
3687
|
-
/**
|
|
3688
|
-
* - **ThreadSafety**: Unsafe
|
|
3689
|
-
*
|
|
3690
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#CreateSurfaceAppearance)
|
|
3691
|
-
* @param this A non-replicated service that handles asset-related queries to the Roblox web API.
|
|
3692
|
-
* @param content
|
|
3693
|
-
*/
|
|
3694
|
-
CreateSurfaceAppearance(this: AssetService, content: object): SurfaceAppearance;
|
|
3695
3610
|
/**
|
|
3696
3611
|
* Uploads a new asset to Roblox from the given object.
|
|
3697
3612
|
*
|
|
@@ -4967,6 +4882,8 @@ interface AudioEmitter extends Instance {
|
|
|
4967
4882
|
*/
|
|
4968
4883
|
AudioInteractionGroup: string;
|
|
4969
4884
|
/**
|
|
4885
|
+
* Controls how detailed the audio simulation should be for this `AudioEmitter`.
|
|
4886
|
+
*
|
|
4970
4887
|
* - **ThreadSafety**: ReadSafe
|
|
4971
4888
|
*
|
|
4972
4889
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEmitter#SimulationFidelity)
|
|
@@ -5499,6 +5416,8 @@ interface AudioListener extends Instance {
|
|
|
5499
5416
|
*/
|
|
5500
5417
|
AudioInteractionGroup: string;
|
|
5501
5418
|
/**
|
|
5419
|
+
* Controls how detailed the audio simulation should be for this `AudioListener`.
|
|
5420
|
+
*
|
|
5502
5421
|
* - **ThreadSafety**: ReadSafe
|
|
5503
5422
|
*
|
|
5504
5423
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioListener#SimulationFidelity)
|
|
@@ -5889,36 +5808,43 @@ interface AudioRecorder extends Instance {
|
|
|
5889
5808
|
* - **ThreadSafety**: Unsafe
|
|
5890
5809
|
*
|
|
5891
5810
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#Clear)
|
|
5811
|
+
* @param this
|
|
5892
5812
|
*/
|
|
5893
5813
|
Clear(this: AudioRecorder): void;
|
|
5894
5814
|
/**
|
|
5895
5815
|
* - **ThreadSafety**: Unsafe
|
|
5896
5816
|
*
|
|
5897
5817
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetConnectedWires)
|
|
5818
|
+
* @param this
|
|
5819
|
+
* @param pin
|
|
5898
5820
|
*/
|
|
5899
5821
|
GetConnectedWires(this: AudioRecorder, pin: string): Array<Instance>;
|
|
5900
5822
|
/**
|
|
5901
5823
|
* - **ThreadSafety**: Unsafe
|
|
5902
5824
|
*
|
|
5903
5825
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetInputPins)
|
|
5826
|
+
* @param this
|
|
5904
5827
|
*/
|
|
5905
5828
|
GetInputPins(this: AudioRecorder): Array<unknown>;
|
|
5906
5829
|
/**
|
|
5907
5830
|
* - **ThreadSafety**: Unsafe
|
|
5908
5831
|
*
|
|
5909
5832
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetOutputPins)
|
|
5833
|
+
* @param this
|
|
5910
5834
|
*/
|
|
5911
5835
|
GetOutputPins(this: AudioRecorder): Array<unknown>;
|
|
5912
5836
|
/**
|
|
5913
5837
|
* - **ThreadSafety**: Unsafe
|
|
5914
5838
|
*
|
|
5915
5839
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetTemporaryContent)
|
|
5840
|
+
* @param this
|
|
5916
5841
|
*/
|
|
5917
5842
|
GetTemporaryContent(this: AudioRecorder): Content;
|
|
5918
5843
|
/**
|
|
5919
5844
|
* - **ThreadSafety**: Unsafe
|
|
5920
5845
|
*
|
|
5921
5846
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#Stop)
|
|
5847
|
+
* @param this
|
|
5922
5848
|
*/
|
|
5923
5849
|
Stop(this: AudioRecorder): void;
|
|
5924
5850
|
/**
|
|
@@ -5926,6 +5852,7 @@ interface AudioRecorder extends Instance {
|
|
|
5926
5852
|
* - **Tags**: Yields
|
|
5927
5853
|
*
|
|
5928
5854
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#CanRecordAsync)
|
|
5855
|
+
* @param this
|
|
5929
5856
|
*/
|
|
5930
5857
|
CanRecordAsync(this: AudioRecorder): boolean;
|
|
5931
5858
|
/**
|
|
@@ -5933,6 +5860,7 @@ interface AudioRecorder extends Instance {
|
|
|
5933
5860
|
* - **Tags**: Yields
|
|
5934
5861
|
*
|
|
5935
5862
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetUnrecordableInstancesAsync)
|
|
5863
|
+
* @param this
|
|
5936
5864
|
*/
|
|
5937
5865
|
GetUnrecordableInstancesAsync(this: AudioRecorder): Array<Instance>;
|
|
5938
5866
|
/**
|
|
@@ -5940,6 +5868,7 @@ interface AudioRecorder extends Instance {
|
|
|
5940
5868
|
* - **Tags**: Yields
|
|
5941
5869
|
*
|
|
5942
5870
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#RecordAsync)
|
|
5871
|
+
* @param this
|
|
5943
5872
|
*/
|
|
5944
5873
|
RecordAsync(this: AudioRecorder): void;
|
|
5945
5874
|
/**
|
|
@@ -6448,6 +6377,24 @@ interface AuroraService extends Instance {
|
|
|
6448
6377
|
* @deprecated
|
|
6449
6378
|
*/
|
|
6450
6379
|
readonly _nominal_AuroraService: unique symbol;
|
|
6380
|
+
/**
|
|
6381
|
+
* - **ThreadSafety**: ReadSafe
|
|
6382
|
+
*
|
|
6383
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#HashRoundingPoint)
|
|
6384
|
+
*/
|
|
6385
|
+
HashRoundingPoint: number;
|
|
6386
|
+
/**
|
|
6387
|
+
* - **ThreadSafety**: ReadSafe
|
|
6388
|
+
*
|
|
6389
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#IgnoreRotation)
|
|
6390
|
+
*/
|
|
6391
|
+
IgnoreRotation: boolean;
|
|
6392
|
+
/**
|
|
6393
|
+
* - **ThreadSafety**: ReadSafe
|
|
6394
|
+
*
|
|
6395
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#RollbackOffset)
|
|
6396
|
+
*/
|
|
6397
|
+
RollbackOffset: number;
|
|
6451
6398
|
/**
|
|
6452
6399
|
* - **ThreadSafety**: Unsafe
|
|
6453
6400
|
*
|
|
@@ -8579,9 +8526,9 @@ interface BindableFunction<T extends Callback = Callback> extends Instance {
|
|
|
8579
8526
|
OnInvoke: T | undefined;
|
|
8580
8527
|
}
|
|
8581
8528
|
/**
|
|
8582
|
-
* **Deprecated:** This class has been deprecated.
|
|
8529
|
+
* **Deprecated:** This class has been deprecated. See the [mover constraints](../../../physics/mover-constraints.md) article for an overview of `BodyMover` replacements, as well as the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
|
|
8583
8530
|
*
|
|
8584
|
-
* Base class for objects that continually exert forces to
|
|
8531
|
+
* Base class for objects that continually exert forces to assemblies.
|
|
8585
8532
|
*
|
|
8586
8533
|
* - **Tags**: NotCreatable
|
|
8587
8534
|
*
|
|
@@ -8600,7 +8547,7 @@ interface BodyMover extends Instance {
|
|
|
8600
8547
|
readonly _nominal_BodyMover: unique symbol;
|
|
8601
8548
|
}
|
|
8602
8549
|
/**
|
|
8603
|
-
* **Deprecated:** This object is deprecated and should not be used for new work. Use `AngularVelocity` instead.
|
|
8550
|
+
* **Deprecated:** This object is deprecated and should not be used for new work. Use `AngularVelocity` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
|
|
8604
8551
|
*
|
|
8605
8552
|
* Applies a torque to maintain a constant angular velocity.
|
|
8606
8553
|
*
|
|
@@ -8645,7 +8592,7 @@ interface BodyAngularVelocity extends BodyMover {
|
|
|
8645
8592
|
P: number;
|
|
8646
8593
|
}
|
|
8647
8594
|
/**
|
|
8648
|
-
* **Deprecated:** This object is deprecated and should not be used for new work. Use `VectorForce` instead.
|
|
8595
|
+
* **Deprecated:** This object is deprecated and should not be used for new work. Use `VectorForce` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
|
|
8649
8596
|
*
|
|
8650
8597
|
* Applies a constant force to an object.
|
|
8651
8598
|
*
|
|
@@ -8674,7 +8621,7 @@ interface BodyForce extends BodyMover {
|
|
|
8674
8621
|
Force: Vector3;
|
|
8675
8622
|
}
|
|
8676
8623
|
/**
|
|
8677
|
-
* **Deprecated:** This object is deprecated and should not be used for new work. Use `AlignOrientation` instead.
|
|
8624
|
+
* **Deprecated:** This object is deprecated and should not be used for new work. Use `AlignOrientation` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
|
|
8678
8625
|
*
|
|
8679
8626
|
* Applies a torque to maintain a constant orientation.
|
|
8680
8627
|
*
|
|
@@ -8727,7 +8674,7 @@ interface BodyGyro extends BodyMover {
|
|
|
8727
8674
|
P: number;
|
|
8728
8675
|
}
|
|
8729
8676
|
/**
|
|
8730
|
-
* **Deprecated:** This object is deprecated and should not be used for new work. Use `AlignPosition` instead.
|
|
8677
|
+
* **Deprecated:** This object is deprecated and should not be used for new work. Use `AlignPosition` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
|
|
8731
8678
|
*
|
|
8732
8679
|
* Applies a force to maintain a constant position.
|
|
8733
8680
|
*
|
|
@@ -8784,7 +8731,7 @@ interface BodyPosition extends BodyMover {
|
|
|
8784
8731
|
* - **ThreadSafety**: Unsafe
|
|
8785
8732
|
*
|
|
8786
8733
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyPosition#GetLastForce)
|
|
8787
|
-
* @param this **Deprecated:** This object is deprecated and should not be used for new work. Use `AlignPosition` instead.
|
|
8734
|
+
* @param this **Deprecated:** This object is deprecated and should not be used for new work. Use `AlignPosition` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
|
|
8788
8735
|
*
|
|
8789
8736
|
* Applies a force to maintain a constant position.
|
|
8790
8737
|
*/
|
|
@@ -8799,7 +8746,7 @@ interface BodyPosition extends BodyMover {
|
|
|
8799
8746
|
readonly ReachedTarget: RBXScriptSignal<() => void>;
|
|
8800
8747
|
}
|
|
8801
8748
|
/**
|
|
8802
|
-
* **Deprecated:** This object is deprecated and should not be used for new work. Use `VectorForce` instead.
|
|
8749
|
+
* **Deprecated:** This object is deprecated and should not be used for new work. Use `VectorForce` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
|
|
8803
8750
|
*
|
|
8804
8751
|
* Applies a constant force to an object at a specific point.
|
|
8805
8752
|
*
|
|
@@ -8819,7 +8766,7 @@ interface BodyThrust extends BodyMover {
|
|
|
8819
8766
|
*/
|
|
8820
8767
|
readonly _nominal_BodyThrust: unique symbol;
|
|
8821
8768
|
/**
|
|
8822
|
-
* Determines the amount of force exerted on each axis relative to the
|
|
8769
|
+
* Determines the amount of force exerted on each axis relative to the assembly.
|
|
8823
8770
|
*
|
|
8824
8771
|
* - **ThreadSafety**: ReadSafe
|
|
8825
8772
|
*
|
|
@@ -8836,7 +8783,7 @@ interface BodyThrust extends BodyMover {
|
|
|
8836
8783
|
Location: Vector3;
|
|
8837
8784
|
}
|
|
8838
8785
|
/**
|
|
8839
|
-
* **Deprecated:** This object is deprecated and should not be used for new work. Use `LinearVelocity` instead.
|
|
8786
|
+
* **Deprecated:** This object is deprecated and should not be used for new work. Use `LinearVelocity` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
|
|
8840
8787
|
*
|
|
8841
8788
|
* Applies a force to maintain a constant velocity.
|
|
8842
8789
|
*
|
|
@@ -8880,12 +8827,12 @@ interface BodyVelocity extends BodyMover {
|
|
|
8880
8827
|
*/
|
|
8881
8828
|
Velocity: Vector3;
|
|
8882
8829
|
/**
|
|
8883
|
-
* Not implemented and will always return the 0 vector.
|
|
8830
|
+
* Not implemented and will always return the `0` vector.
|
|
8884
8831
|
*
|
|
8885
8832
|
* - **ThreadSafety**: Unsafe
|
|
8886
8833
|
*
|
|
8887
8834
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyVelocity#GetLastForce)
|
|
8888
|
-
* @param this **Deprecated:** This object is deprecated and should not be used for new work. Use `LinearVelocity` instead.
|
|
8835
|
+
* @param this **Deprecated:** This object is deprecated and should not be used for new work. Use `LinearVelocity` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
|
|
8889
8836
|
*
|
|
8890
8837
|
* Applies a force to maintain a constant velocity.
|
|
8891
8838
|
*/
|
|
@@ -8896,16 +8843,16 @@ interface BodyVelocity extends BodyMover {
|
|
|
8896
8843
|
* - **ThreadSafety**: Unsafe
|
|
8897
8844
|
*
|
|
8898
8845
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyVelocity#lastForce)
|
|
8899
|
-
* @param this **Deprecated:** This object is deprecated and should not be used for new work. Use `LinearVelocity` instead.
|
|
8846
|
+
* @param this **Deprecated:** This object is deprecated and should not be used for new work. Use `LinearVelocity` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
|
|
8900
8847
|
*
|
|
8901
8848
|
* Applies a force to maintain a constant velocity.
|
|
8902
8849
|
*/
|
|
8903
8850
|
lastForce(this: BodyVelocity): Vector3;
|
|
8904
8851
|
}
|
|
8905
8852
|
/**
|
|
8906
|
-
* **Deprecated:** This object is deprecated and should not be used for new work. Use `LineForce` instead.
|
|
8853
|
+
* **Deprecated:** This object is deprecated and should not be used for new work. Use `LineForce` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
|
|
8907
8854
|
*
|
|
8908
|
-
* Applies a force so that
|
|
8855
|
+
* Applies a force so that an assembly follows and faces a target part.
|
|
8909
8856
|
*
|
|
8910
8857
|
* - **Tags**:
|
|
8911
8858
|
*
|
|
@@ -8923,7 +8870,7 @@ interface RocketPropulsion extends BodyMover {
|
|
|
8923
8870
|
*/
|
|
8924
8871
|
readonly _nominal_RocketPropulsion: unique symbol;
|
|
8925
8872
|
/**
|
|
8926
|
-
* Determines the tendency of the
|
|
8873
|
+
* Determines the tendency of the assembly to face the `Target`.
|
|
8927
8874
|
*
|
|
8928
8875
|
* - **ThreadSafety**: ReadSafe
|
|
8929
8876
|
*
|
|
@@ -8931,7 +8878,7 @@ interface RocketPropulsion extends BodyMover {
|
|
|
8931
8878
|
*/
|
|
8932
8879
|
CartoonFactor: number;
|
|
8933
8880
|
/**
|
|
8934
|
-
* Determines the maximum speed at which the
|
|
8881
|
+
* Determines the maximum speed at which the assembly will move toward the `Target`.
|
|
8935
8882
|
*
|
|
8936
8883
|
* - **ThreadSafety**: ReadSafe
|
|
8937
8884
|
*
|
|
@@ -8939,7 +8886,7 @@ interface RocketPropulsion extends BodyMover {
|
|
|
8939
8886
|
*/
|
|
8940
8887
|
MaxSpeed: number;
|
|
8941
8888
|
/**
|
|
8942
|
-
* Determines the maximum amount of thrust that will be exerted to move the
|
|
8889
|
+
* Determines the maximum amount of thrust that will be exerted to move the assembly.
|
|
8943
8890
|
*
|
|
8944
8891
|
* - **ThreadSafety**: ReadSafe
|
|
8945
8892
|
*
|
|
@@ -8947,7 +8894,7 @@ interface RocketPropulsion extends BodyMover {
|
|
|
8947
8894
|
*/
|
|
8948
8895
|
MaxThrust: number;
|
|
8949
8896
|
/**
|
|
8950
|
-
* Determines the maximum amount of torque that may be exerted to rotate the
|
|
8897
|
+
* Determines the maximum amount of torque that may be exerted to rotate the assembly towards the `Target`.
|
|
8951
8898
|
*
|
|
8952
8899
|
* - **ThreadSafety**: ReadSafe
|
|
8953
8900
|
*
|
|
@@ -8955,7 +8902,7 @@ interface RocketPropulsion extends BodyMover {
|
|
|
8955
8902
|
*/
|
|
8956
8903
|
MaxTorque: Vector3;
|
|
8957
8904
|
/**
|
|
8958
|
-
* Determines the object towards which the
|
|
8905
|
+
* Determines the object towards which the assembly should follow/face.
|
|
8959
8906
|
*
|
|
8960
8907
|
* - **ThreadSafety**: ReadSafe
|
|
8961
8908
|
*
|
|
@@ -8971,7 +8918,7 @@ interface RocketPropulsion extends BodyMover {
|
|
|
8971
8918
|
*/
|
|
8972
8919
|
TargetOffset: Vector3;
|
|
8973
8920
|
/**
|
|
8974
|
-
* Determines the maximum distance from the `Target` the
|
|
8921
|
+
* Determines the maximum distance from the `Target` at which the assembly must be in order for `ReachedTarget` to be fired.
|
|
8975
8922
|
*
|
|
8976
8923
|
* - **ThreadSafety**: ReadSafe
|
|
8977
8924
|
*
|
|
@@ -8979,7 +8926,7 @@ interface RocketPropulsion extends BodyMover {
|
|
|
8979
8926
|
*/
|
|
8980
8927
|
TargetRadius: number;
|
|
8981
8928
|
/**
|
|
8982
|
-
* Determines the dampening applied to the
|
|
8929
|
+
* Determines the dampening applied to the assembly in order to prevent it from overshooting the `Target`.
|
|
8983
8930
|
*
|
|
8984
8931
|
* - **ThreadSafety**: ReadSafe
|
|
8985
8932
|
*
|
|
@@ -9011,29 +8958,29 @@ interface RocketPropulsion extends BodyMover {
|
|
|
9011
8958
|
*/
|
|
9012
8959
|
TurnP: number;
|
|
9013
8960
|
/**
|
|
9014
|
-
* Causes the
|
|
8961
|
+
* Causes the assembly to stop moving toward its `Target`.
|
|
9015
8962
|
*
|
|
9016
8963
|
* - **ThreadSafety**: Unsafe
|
|
9017
8964
|
*
|
|
9018
8965
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RocketPropulsion#Abort)
|
|
9019
|
-
* @param this **Deprecated:** This object is deprecated and should not be used for new work. Use `LineForce` instead.
|
|
8966
|
+
* @param this **Deprecated:** This object is deprecated and should not be used for new work. Use `LineForce` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
|
|
9020
8967
|
*
|
|
9021
|
-
* Applies a force so that
|
|
8968
|
+
* Applies a force so that an assembly follows and faces a target part.
|
|
9022
8969
|
*/
|
|
9023
8970
|
Abort(this: RocketPropulsion): void;
|
|
9024
8971
|
/**
|
|
9025
|
-
* Causes the
|
|
8972
|
+
* Causes the assembly to start moving toward its `Target`.
|
|
9026
8973
|
*
|
|
9027
8974
|
* - **ThreadSafety**: Unsafe
|
|
9028
8975
|
*
|
|
9029
8976
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RocketPropulsion#Fire)
|
|
9030
|
-
* @param this **Deprecated:** This object is deprecated and should not be used for new work. Use `LineForce` instead.
|
|
8977
|
+
* @param this **Deprecated:** This object is deprecated and should not be used for new work. Use `LineForce` instead, and see the [legacy conversion notes](../../../physics/mover-constraints.md#legacy-mover-conversion).
|
|
9031
8978
|
*
|
|
9032
|
-
* Applies a force so that
|
|
8979
|
+
* Applies a force so that an assembly follows and faces a target part.
|
|
9033
8980
|
*/
|
|
9034
8981
|
Fire(this: RocketPropulsion): void;
|
|
9035
8982
|
/**
|
|
9036
|
-
*
|
|
8983
|
+
* Fires when the assembly comes within `TargetRadius` of the `Target`.
|
|
9037
8984
|
*
|
|
9038
8985
|
* - **ThreadSafety**: Unsafe
|
|
9039
8986
|
*
|
|
@@ -9198,6 +9145,13 @@ interface CaptureService extends Instance {
|
|
|
9198
9145
|
* @param onDeniedCallback An optional callback function invoked if the user denies sharing.
|
|
9199
9146
|
*/
|
|
9200
9147
|
PromptShareCapture(this: CaptureService, contentId: string, launchData: string, onAcceptedCallback: () => void, onDeniedCallback: () => void): void;
|
|
9148
|
+
/**
|
|
9149
|
+
* - **ThreadSafety**: Unsafe
|
|
9150
|
+
*
|
|
9151
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#StopVideoCapture)
|
|
9152
|
+
* @param this A service which provides control over screenshot capture features.
|
|
9153
|
+
*/
|
|
9154
|
+
StopVideoCapture(this: CaptureService): void;
|
|
9201
9155
|
/**
|
|
9202
9156
|
* - **ThreadSafety**: Unsafe
|
|
9203
9157
|
*
|
|
@@ -9207,6 +9161,16 @@ interface CaptureService extends Instance {
|
|
|
9207
9161
|
* @param captureParams
|
|
9208
9162
|
*/
|
|
9209
9163
|
TakeCapture(this: CaptureService, onCaptureReady: Callback, captureParams?: object): void;
|
|
9164
|
+
/**
|
|
9165
|
+
* - **ThreadSafety**: Unsafe
|
|
9166
|
+
* - **Tags**: Yields
|
|
9167
|
+
*
|
|
9168
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#StartVideoCaptureAsync)
|
|
9169
|
+
* @param this A service which provides control over screenshot capture features.
|
|
9170
|
+
* @param onCaptureReady
|
|
9171
|
+
* @param captureParams
|
|
9172
|
+
*/
|
|
9173
|
+
StartVideoCaptureAsync(this: CaptureService, onCaptureReady: Callback, captureParams?: object): Enum.VideoCaptureResult;
|
|
9210
9174
|
/**
|
|
9211
9175
|
* Fires immediately before a capture begins.
|
|
9212
9176
|
*
|
|
@@ -9214,7 +9178,7 @@ interface CaptureService extends Instance {
|
|
|
9214
9178
|
*
|
|
9215
9179
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#CaptureBegan)
|
|
9216
9180
|
*/
|
|
9217
|
-
readonly CaptureBegan: RBXScriptSignal<() => void>;
|
|
9181
|
+
readonly CaptureBegan: RBXScriptSignal<(captureType: Enum.CaptureType) => void>;
|
|
9218
9182
|
/**
|
|
9219
9183
|
* Fires after a capture finishes.
|
|
9220
9184
|
*
|
|
@@ -9222,7 +9186,7 @@ interface CaptureService extends Instance {
|
|
|
9222
9186
|
*
|
|
9223
9187
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#CaptureEnded)
|
|
9224
9188
|
*/
|
|
9225
|
-
readonly CaptureEnded: RBXScriptSignal<() => void>;
|
|
9189
|
+
readonly CaptureEnded: RBXScriptSignal<(captureType: Enum.CaptureType) => void>;
|
|
9226
9190
|
/**
|
|
9227
9191
|
* **Deprecated:** This event has been superseded by the `UserCaptureSaved` event.
|
|
9228
9192
|
*
|
|
@@ -10443,6 +10407,8 @@ interface CommandService extends Instance {
|
|
|
10443
10407
|
readonly _nominal_CommandService: unique symbol;
|
|
10444
10408
|
}
|
|
10445
10409
|
/**
|
|
10410
|
+
* Supports real-world purchases that you can bundle with digital benefits.
|
|
10411
|
+
*
|
|
10446
10412
|
* - **Tags**: NotCreatable, Service
|
|
10447
10413
|
*
|
|
10448
10414
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CommerceService)
|
|
@@ -10457,10 +10423,12 @@ interface CommerceService extends Instance {
|
|
|
10457
10423
|
*/
|
|
10458
10424
|
readonly _nominal_CommerceService: unique symbol;
|
|
10459
10425
|
/**
|
|
10426
|
+
* Prompts a user to purchase a commerce product using the provided `commerceProductId`. Opens a webview that guides the user through the purchasing flow.
|
|
10427
|
+
*
|
|
10460
10428
|
* - **ThreadSafety**: Unsafe
|
|
10461
10429
|
*
|
|
10462
10430
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CommerceService#PromptCommerceProductPurchase)
|
|
10463
|
-
* @param this
|
|
10431
|
+
* @param this Supports real-world purchases that you can bundle with digital benefits.
|
|
10464
10432
|
* @param user
|
|
10465
10433
|
* @param commerceProductId
|
|
10466
10434
|
*/
|
|
@@ -10469,17 +10437,19 @@ interface CommerceService extends Instance {
|
|
|
10469
10437
|
* - **ThreadSafety**: Unsafe
|
|
10470
10438
|
*
|
|
10471
10439
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CommerceService#PromptRealWorldCommerceBrowser)
|
|
10472
|
-
* @param this
|
|
10440
|
+
* @param this Supports real-world purchases that you can bundle with digital benefits.
|
|
10473
10441
|
* @param player
|
|
10474
10442
|
* @param url
|
|
10475
10443
|
*/
|
|
10476
10444
|
PromptRealWorldCommerceBrowser(this: CommerceService, player: Player, url: string): void;
|
|
10477
10445
|
/**
|
|
10446
|
+
* Retrieves information about the commerce products you are selling in experience.
|
|
10447
|
+
*
|
|
10478
10448
|
* - **ThreadSafety**: Unsafe
|
|
10479
10449
|
* - **Tags**: Yields
|
|
10480
10450
|
*
|
|
10481
10451
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CommerceService#GetCommerceProductInfoAsync)
|
|
10482
|
-
* @param this
|
|
10452
|
+
* @param this Supports real-world purchases that you can bundle with digital benefits.
|
|
10483
10453
|
* @param commerceProductId
|
|
10484
10454
|
*/
|
|
10485
10455
|
GetCommerceProductInfoAsync(this: CommerceService, commerceProductId: string): object;
|
|
@@ -10488,10 +10458,12 @@ interface CommerceService extends Instance {
|
|
|
10488
10458
|
* - **Tags**: Yields
|
|
10489
10459
|
*
|
|
10490
10460
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CommerceService#UserEligibleForRealWorldCommerceAsync)
|
|
10491
|
-
* @param this
|
|
10461
|
+
* @param this Supports real-world purchases that you can bundle with digital benefits.
|
|
10492
10462
|
*/
|
|
10493
10463
|
UserEligibleForRealWorldCommerceAsync(this: CommerceService): boolean;
|
|
10494
10464
|
/**
|
|
10465
|
+
* Fires when commerce purchase webview has closed - not an indicator that a purchase was successful.
|
|
10466
|
+
*
|
|
10495
10467
|
* - **ThreadSafety**: Unsafe
|
|
10496
10468
|
*
|
|
10497
10469
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CommerceService#PromptCommerceProductPurchaseFinished)
|
|
@@ -10821,7 +10793,7 @@ interface AlignPosition extends Constraint {
|
|
|
10821
10793
|
*/
|
|
10822
10794
|
ApplyAtCenterOfMass: boolean;
|
|
10823
10795
|
/**
|
|
10824
|
-
* Determines how the constraint force will be limited. Only used if `RigidityEnabled` is false
|
|
10796
|
+
* Determines how the constraint force will be limited. Only used if `RigidityEnabled` is `false`.
|
|
10825
10797
|
*
|
|
10826
10798
|
* - **ThreadSafety**: ReadSafe
|
|
10827
10799
|
*
|
|
@@ -10829,7 +10801,7 @@ interface AlignPosition extends Constraint {
|
|
|
10829
10801
|
*/
|
|
10830
10802
|
ForceLimitMode: Enum.ForceLimitMode;
|
|
10831
10803
|
/**
|
|
10832
|
-
* Determines the axes that the constraint uses to limit the force. Only applies when `RigidityEnabled` is false and `AlignPosition.ForceLimitMode` is `PerAxis`. .
|
|
10804
|
+
* Determines the axes that the constraint uses to limit the force. Only applies when `RigidityEnabled` is `false` and `AlignPosition.ForceLimitMode` is `PerAxis`. .
|
|
10833
10805
|
*
|
|
10834
10806
|
* - **ThreadSafety**: ReadSafe
|
|
10835
10807
|
*
|
|
@@ -10902,7 +10874,7 @@ interface AlignPosition extends Constraint {
|
|
|
10902
10874
|
RigidityEnabled: boolean;
|
|
10903
10875
|
}
|
|
10904
10876
|
/**
|
|
10905
|
-
* Applies torque on an assembly to maintain a
|
|
10877
|
+
* Applies torque on an assembly to maintain a constant angular velocity.
|
|
10906
10878
|
*
|
|
10907
10879
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AngularVelocity)
|
|
10908
10880
|
*/
|
|
@@ -11076,7 +11048,7 @@ interface BallSocketConstraint extends Constraint {
|
|
|
11076
11048
|
*/
|
|
11077
11049
|
Radius: number;
|
|
11078
11050
|
/**
|
|
11079
|
-
* How elastic `Attachments` connected by a `BallSocketConstraint` will be when they reach the end of the range specified by `UpperAngle` when `LimitsEnabled` is true
|
|
11051
|
+
* How elastic `Attachments` connected by a `BallSocketConstraint` will be when they reach the end of the range specified by `UpperAngle` when `LimitsEnabled` is `true`.
|
|
11080
11052
|
*
|
|
11081
11053
|
* - **ThreadSafety**: ReadSafe
|
|
11082
11054
|
*
|
|
@@ -11092,7 +11064,7 @@ interface BallSocketConstraint extends Constraint {
|
|
|
11092
11064
|
*/
|
|
11093
11065
|
TwistLimitsEnabled: boolean;
|
|
11094
11066
|
/**
|
|
11095
|
-
* Sets the lower twist rotation limit of the `BallSocketConstraint`, as long as `TwistLimitsEnabled` is true
|
|
11067
|
+
* Sets the lower twist rotation limit of the `BallSocketConstraint`, as long as `TwistLimitsEnabled` is `true`.
|
|
11096
11068
|
*
|
|
11097
11069
|
* - **ThreadSafety**: ReadSafe
|
|
11098
11070
|
*
|
|
@@ -11100,7 +11072,7 @@ interface BallSocketConstraint extends Constraint {
|
|
|
11100
11072
|
*/
|
|
11101
11073
|
TwistLowerAngle: number;
|
|
11102
11074
|
/**
|
|
11103
|
-
* Sets the upper twist rotation limit of the `BallSocketConstraint`, as long as `TwistLimitsEnabled` is true
|
|
11075
|
+
* Sets the upper twist rotation limit of the `BallSocketConstraint`, as long as `TwistLimitsEnabled` is `true`.
|
|
11104
11076
|
*
|
|
11105
11077
|
* - **ThreadSafety**: ReadSafe
|
|
11106
11078
|
*
|
|
@@ -11108,7 +11080,7 @@ interface BallSocketConstraint extends Constraint {
|
|
|
11108
11080
|
*/
|
|
11109
11081
|
TwistUpperAngle: number;
|
|
11110
11082
|
/**
|
|
11111
|
-
* Sets the upper rotation limit of the `BallSocketConstraint`, as long as `LimitsEnabled` is true
|
|
11083
|
+
* Sets the upper rotation limit of the `BallSocketConstraint`, as long as `LimitsEnabled` is `true`.
|
|
11112
11084
|
*
|
|
11113
11085
|
* - **ThreadSafety**: ReadSafe
|
|
11114
11086
|
*
|
|
@@ -11278,7 +11250,7 @@ interface LineForce extends Constraint {
|
|
|
11278
11250
|
*/
|
|
11279
11251
|
ApplyAtCenterOfMass: boolean;
|
|
11280
11252
|
/**
|
|
11281
|
-
* When true
|
|
11253
|
+
* When `true`, the force magnitude is multiplied by the inverse square of the distance.
|
|
11282
11254
|
*
|
|
11283
11255
|
* - **ThreadSafety**: ReadSafe
|
|
11284
11256
|
*
|
|
@@ -11311,7 +11283,7 @@ interface LineForce extends Constraint {
|
|
|
11311
11283
|
ReactionForceEnabled: boolean;
|
|
11312
11284
|
}
|
|
11313
11285
|
/**
|
|
11314
|
-
* Applies force on an assembly to maintain a
|
|
11286
|
+
* Applies force on an assembly to maintain a constant linear velocity.
|
|
11315
11287
|
*
|
|
11316
11288
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LinearVelocity)
|
|
11317
11289
|
*/
|
|
@@ -11357,7 +11329,7 @@ interface LinearVelocity extends Constraint {
|
|
|
11357
11329
|
*/
|
|
11358
11330
|
LineVelocity: number;
|
|
11359
11331
|
/**
|
|
11360
|
-
* Maximum force along each axis that the constraint can apply to achieve the vector velocity. Only used if `ForceLimitsEnabled` is true
|
|
11332
|
+
* Maximum force along each axis that the constraint can apply to achieve the vector velocity. Only used if `ForceLimitsEnabled` is `true`, `ForceLimitMode` is `PerAxis`, and `VelocityConstraintMode` is `Vector`.
|
|
11361
11333
|
*
|
|
11362
11334
|
* - **ThreadSafety**: ReadSafe
|
|
11363
11335
|
*
|
|
@@ -11373,7 +11345,7 @@ interface LinearVelocity extends Constraint {
|
|
|
11373
11345
|
*/
|
|
11374
11346
|
MaxForce: number;
|
|
11375
11347
|
/**
|
|
11376
|
-
* Maximum force along each axis that the constraint can apply to achieve the plane velocity. Only used if `ForceLimitsEnabled` is true
|
|
11348
|
+
* Maximum force along each axis that the constraint can apply to achieve the plane velocity. Only used if `ForceLimitsEnabled` is `true`, `ForceLimitMode` is `PerAxis`, and `VelocityConstraintMode` is `Plane`.
|
|
11377
11349
|
*
|
|
11378
11350
|
* - **ThreadSafety**: ReadSafe
|
|
11379
11351
|
*
|
|
@@ -11403,7 +11375,7 @@ interface LinearVelocity extends Constraint {
|
|
|
11403
11375
|
*/
|
|
11404
11376
|
ReactionForceEnabled: boolean;
|
|
11405
11377
|
/**
|
|
11406
|
-
* Sets the `ActuatorRelativeTo` property for the
|
|
11378
|
+
* Sets the `ActuatorRelativeTo` property for the constraint.
|
|
11407
11379
|
*
|
|
11408
11380
|
* - **ThreadSafety**: ReadSafe
|
|
11409
11381
|
*
|
|
@@ -11427,7 +11399,7 @@ interface LinearVelocity extends Constraint {
|
|
|
11427
11399
|
*/
|
|
11428
11400
|
VectorVelocity: Vector3;
|
|
11429
11401
|
/**
|
|
11430
|
-
* The mode of the
|
|
11402
|
+
* The mode of the constraint.
|
|
11431
11403
|
*
|
|
11432
11404
|
* - **ThreadSafety**: ReadSafe
|
|
11433
11405
|
*
|
|
@@ -20116,6 +20088,291 @@ interface GuiService extends Instance {
|
|
|
20116
20088
|
*/
|
|
20117
20089
|
readonly MenuOpened: RBXScriptSignal<() => void>;
|
|
20118
20090
|
}
|
|
20091
|
+
/**
|
|
20092
|
+
* - **Tags**: NotBrowsable
|
|
20093
|
+
*
|
|
20094
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription)
|
|
20095
|
+
*/
|
|
20096
|
+
interface HandRigDescription extends Instance {
|
|
20097
|
+
/**
|
|
20098
|
+
* **DO NOT USE!**
|
|
20099
|
+
*
|
|
20100
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
20101
|
+
* @hidden
|
|
20102
|
+
* @deprecated
|
|
20103
|
+
*/
|
|
20104
|
+
readonly _nominal_HandRigDescription: unique symbol;
|
|
20105
|
+
/**
|
|
20106
|
+
* - **ThreadSafety**: ReadSafe
|
|
20107
|
+
*
|
|
20108
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Index1)
|
|
20109
|
+
*/
|
|
20110
|
+
Index1: Instance | undefined;
|
|
20111
|
+
/**
|
|
20112
|
+
* - **ThreadSafety**: ReadSafe
|
|
20113
|
+
*
|
|
20114
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Index1TposeAdjustment)
|
|
20115
|
+
*/
|
|
20116
|
+
Index1TposeAdjustment: CFrame;
|
|
20117
|
+
/**
|
|
20118
|
+
* - **ThreadSafety**: ReadSafe
|
|
20119
|
+
*
|
|
20120
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Index2)
|
|
20121
|
+
*/
|
|
20122
|
+
Index2: Instance | undefined;
|
|
20123
|
+
/**
|
|
20124
|
+
* - **ThreadSafety**: ReadSafe
|
|
20125
|
+
*
|
|
20126
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Index2TposeAdjustment)
|
|
20127
|
+
*/
|
|
20128
|
+
Index2TposeAdjustment: CFrame;
|
|
20129
|
+
/**
|
|
20130
|
+
* - **ThreadSafety**: ReadSafe
|
|
20131
|
+
*
|
|
20132
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Index3)
|
|
20133
|
+
*/
|
|
20134
|
+
Index3: Instance | undefined;
|
|
20135
|
+
/**
|
|
20136
|
+
* - **ThreadSafety**: ReadSafe
|
|
20137
|
+
*
|
|
20138
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Index3TposeAdjustment)
|
|
20139
|
+
*/
|
|
20140
|
+
Index3TposeAdjustment: CFrame;
|
|
20141
|
+
/**
|
|
20142
|
+
* - **ThreadSafety**: ReadSafe
|
|
20143
|
+
*
|
|
20144
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#IndexRange)
|
|
20145
|
+
*/
|
|
20146
|
+
IndexRange: Vector3;
|
|
20147
|
+
/**
|
|
20148
|
+
* - **ThreadSafety**: ReadSafe
|
|
20149
|
+
*
|
|
20150
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#IndexSize)
|
|
20151
|
+
*/
|
|
20152
|
+
IndexSize: number;
|
|
20153
|
+
/**
|
|
20154
|
+
* - **ThreadSafety**: ReadSafe
|
|
20155
|
+
*
|
|
20156
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Middle1)
|
|
20157
|
+
*/
|
|
20158
|
+
Middle1: Instance | undefined;
|
|
20159
|
+
/**
|
|
20160
|
+
* - **ThreadSafety**: ReadSafe
|
|
20161
|
+
*
|
|
20162
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Middle1TposeAdjustment)
|
|
20163
|
+
*/
|
|
20164
|
+
Middle1TposeAdjustment: CFrame;
|
|
20165
|
+
/**
|
|
20166
|
+
* - **ThreadSafety**: ReadSafe
|
|
20167
|
+
*
|
|
20168
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Middle2)
|
|
20169
|
+
*/
|
|
20170
|
+
Middle2: Instance | undefined;
|
|
20171
|
+
/**
|
|
20172
|
+
* - **ThreadSafety**: ReadSafe
|
|
20173
|
+
*
|
|
20174
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Middle2TposeAdjustment)
|
|
20175
|
+
*/
|
|
20176
|
+
Middle2TposeAdjustment: CFrame;
|
|
20177
|
+
/**
|
|
20178
|
+
* - **ThreadSafety**: ReadSafe
|
|
20179
|
+
*
|
|
20180
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Middle3)
|
|
20181
|
+
*/
|
|
20182
|
+
Middle3: Instance | undefined;
|
|
20183
|
+
/**
|
|
20184
|
+
* - **ThreadSafety**: ReadSafe
|
|
20185
|
+
*
|
|
20186
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Middle3TposeAdjustment)
|
|
20187
|
+
*/
|
|
20188
|
+
Middle3TposeAdjustment: CFrame;
|
|
20189
|
+
/**
|
|
20190
|
+
* - **ThreadSafety**: ReadSafe
|
|
20191
|
+
*
|
|
20192
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#MiddleRange)
|
|
20193
|
+
*/
|
|
20194
|
+
MiddleRange: Vector3;
|
|
20195
|
+
/**
|
|
20196
|
+
* - **ThreadSafety**: ReadSafe
|
|
20197
|
+
*
|
|
20198
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#MiddleSize)
|
|
20199
|
+
*/
|
|
20200
|
+
MiddleSize: number;
|
|
20201
|
+
/**
|
|
20202
|
+
* - **ThreadSafety**: ReadSafe
|
|
20203
|
+
*
|
|
20204
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Pinky1)
|
|
20205
|
+
*/
|
|
20206
|
+
Pinky1: Instance | undefined;
|
|
20207
|
+
/**
|
|
20208
|
+
* - **ThreadSafety**: ReadSafe
|
|
20209
|
+
*
|
|
20210
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Pinky1TposeAdjustment)
|
|
20211
|
+
*/
|
|
20212
|
+
Pinky1TposeAdjustment: CFrame;
|
|
20213
|
+
/**
|
|
20214
|
+
* - **ThreadSafety**: ReadSafe
|
|
20215
|
+
*
|
|
20216
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Pinky2)
|
|
20217
|
+
*/
|
|
20218
|
+
Pinky2: Instance | undefined;
|
|
20219
|
+
/**
|
|
20220
|
+
* - **ThreadSafety**: ReadSafe
|
|
20221
|
+
*
|
|
20222
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Pinky2TposeAdjustment)
|
|
20223
|
+
*/
|
|
20224
|
+
Pinky2TposeAdjustment: CFrame;
|
|
20225
|
+
/**
|
|
20226
|
+
* - **ThreadSafety**: ReadSafe
|
|
20227
|
+
*
|
|
20228
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Pinky3)
|
|
20229
|
+
*/
|
|
20230
|
+
Pinky3: Instance | undefined;
|
|
20231
|
+
/**
|
|
20232
|
+
* - **ThreadSafety**: ReadSafe
|
|
20233
|
+
*
|
|
20234
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Pinky3TposeAdjustment)
|
|
20235
|
+
*/
|
|
20236
|
+
Pinky3TposeAdjustment: CFrame;
|
|
20237
|
+
/**
|
|
20238
|
+
* - **ThreadSafety**: ReadSafe
|
|
20239
|
+
*
|
|
20240
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#PinkyRange)
|
|
20241
|
+
*/
|
|
20242
|
+
PinkyRange: Vector3;
|
|
20243
|
+
/**
|
|
20244
|
+
* - **ThreadSafety**: ReadSafe
|
|
20245
|
+
*
|
|
20246
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#PinkySize)
|
|
20247
|
+
*/
|
|
20248
|
+
PinkySize: number;
|
|
20249
|
+
/**
|
|
20250
|
+
* - **ThreadSafety**: ReadSafe
|
|
20251
|
+
*
|
|
20252
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Ring1)
|
|
20253
|
+
*/
|
|
20254
|
+
Ring1: Instance | undefined;
|
|
20255
|
+
/**
|
|
20256
|
+
* - **ThreadSafety**: ReadSafe
|
|
20257
|
+
*
|
|
20258
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Ring1TposeAdjustment)
|
|
20259
|
+
*/
|
|
20260
|
+
Ring1TposeAdjustment: CFrame;
|
|
20261
|
+
/**
|
|
20262
|
+
* - **ThreadSafety**: ReadSafe
|
|
20263
|
+
*
|
|
20264
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Ring2)
|
|
20265
|
+
*/
|
|
20266
|
+
Ring2: Instance | undefined;
|
|
20267
|
+
/**
|
|
20268
|
+
* - **ThreadSafety**: ReadSafe
|
|
20269
|
+
*
|
|
20270
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Ring2TposeAdjustment)
|
|
20271
|
+
*/
|
|
20272
|
+
Ring2TposeAdjustment: CFrame;
|
|
20273
|
+
/**
|
|
20274
|
+
* - **ThreadSafety**: ReadSafe
|
|
20275
|
+
*
|
|
20276
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Ring3)
|
|
20277
|
+
*/
|
|
20278
|
+
Ring3: Instance | undefined;
|
|
20279
|
+
/**
|
|
20280
|
+
* - **ThreadSafety**: ReadSafe
|
|
20281
|
+
*
|
|
20282
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Ring3TposeAdjustment)
|
|
20283
|
+
*/
|
|
20284
|
+
Ring3TposeAdjustment: CFrame;
|
|
20285
|
+
/**
|
|
20286
|
+
* - **ThreadSafety**: ReadSafe
|
|
20287
|
+
*
|
|
20288
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#RingRange)
|
|
20289
|
+
*/
|
|
20290
|
+
RingRange: Vector3;
|
|
20291
|
+
/**
|
|
20292
|
+
* - **ThreadSafety**: ReadSafe
|
|
20293
|
+
*
|
|
20294
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#RingSize)
|
|
20295
|
+
*/
|
|
20296
|
+
RingSize: number;
|
|
20297
|
+
/**
|
|
20298
|
+
* - **ThreadSafety**: ReadSafe
|
|
20299
|
+
*
|
|
20300
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Side)
|
|
20301
|
+
*/
|
|
20302
|
+
Side: Enum.HandRigDescriptionSide;
|
|
20303
|
+
/**
|
|
20304
|
+
* - **ThreadSafety**: ReadSafe
|
|
20305
|
+
*
|
|
20306
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Thumb1)
|
|
20307
|
+
*/
|
|
20308
|
+
Thumb1: Instance | undefined;
|
|
20309
|
+
/**
|
|
20310
|
+
* - **ThreadSafety**: ReadSafe
|
|
20311
|
+
*
|
|
20312
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Thumb1TposeAdjustment)
|
|
20313
|
+
*/
|
|
20314
|
+
Thumb1TposeAdjustment: CFrame;
|
|
20315
|
+
/**
|
|
20316
|
+
* - **ThreadSafety**: ReadSafe
|
|
20317
|
+
*
|
|
20318
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Thumb2)
|
|
20319
|
+
*/
|
|
20320
|
+
Thumb2: Instance | undefined;
|
|
20321
|
+
/**
|
|
20322
|
+
* - **ThreadSafety**: ReadSafe
|
|
20323
|
+
*
|
|
20324
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Thumb2TposeAdjustment)
|
|
20325
|
+
*/
|
|
20326
|
+
Thumb2TposeAdjustment: CFrame;
|
|
20327
|
+
/**
|
|
20328
|
+
* - **ThreadSafety**: ReadSafe
|
|
20329
|
+
*
|
|
20330
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Thumb3)
|
|
20331
|
+
*/
|
|
20332
|
+
Thumb3: Instance | undefined;
|
|
20333
|
+
/**
|
|
20334
|
+
* - **ThreadSafety**: ReadSafe
|
|
20335
|
+
*
|
|
20336
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Thumb3TposeAdjustment)
|
|
20337
|
+
*/
|
|
20338
|
+
Thumb3TposeAdjustment: CFrame;
|
|
20339
|
+
/**
|
|
20340
|
+
* - **ThreadSafety**: ReadSafe
|
|
20341
|
+
*
|
|
20342
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#ThumbRange)
|
|
20343
|
+
*/
|
|
20344
|
+
ThumbRange: Vector3;
|
|
20345
|
+
/**
|
|
20346
|
+
* - **ThreadSafety**: ReadSafe
|
|
20347
|
+
*
|
|
20348
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#ThumbSize)
|
|
20349
|
+
*/
|
|
20350
|
+
ThumbSize: number;
|
|
20351
|
+
/**
|
|
20352
|
+
* - **ThreadSafety**: Unsafe
|
|
20353
|
+
*
|
|
20354
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#GetFingerControl)
|
|
20355
|
+
*/
|
|
20356
|
+
GetFingerControl(this: HandRigDescription, fingerIndex: number): Vector3;
|
|
20357
|
+
/**
|
|
20358
|
+
* - **ThreadSafety**: Unsafe
|
|
20359
|
+
*
|
|
20360
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#GetFingerTip)
|
|
20361
|
+
*/
|
|
20362
|
+
GetFingerTip(this: HandRigDescription, fingerIndex: number): Vector3;
|
|
20363
|
+
/**
|
|
20364
|
+
* - **ThreadSafety**: Unsafe
|
|
20365
|
+
*
|
|
20366
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#SetFingerControl)
|
|
20367
|
+
*/
|
|
20368
|
+
SetFingerControl(this: HandRigDescription, fingerIndex: number, control: Vector3): void;
|
|
20369
|
+
/**
|
|
20370
|
+
* - **ThreadSafety**: Unsafe
|
|
20371
|
+
*
|
|
20372
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#SetFingerTip)
|
|
20373
|
+
*/
|
|
20374
|
+
SetFingerTip(this: HandRigDescription, fingerIndex: number, point: Vector3): void;
|
|
20375
|
+
}
|
|
20119
20376
|
/**
|
|
20120
20377
|
* - **Tags**: NotBrowsable
|
|
20121
20378
|
*
|
|
@@ -21844,6 +22101,8 @@ interface HumanoidDescription extends Instance {
|
|
|
21844
22101
|
readonly EquippedEmotesChanged: RBXScriptSignal<(newEquippedEmotes: EquippedEmotes) => void>;
|
|
21845
22102
|
}
|
|
21846
22103
|
/**
|
|
22104
|
+
* - **Tags**: NotBrowsable
|
|
22105
|
+
*
|
|
21847
22106
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription)
|
|
21848
22107
|
*/
|
|
21849
22108
|
interface HumanoidRigDescription extends Instance {
|
|
@@ -21888,33 +22147,33 @@ interface HumanoidRigDescription extends Instance {
|
|
|
21888
22147
|
/**
|
|
21889
22148
|
* - **ThreadSafety**: ReadSafe
|
|
21890
22149
|
*
|
|
21891
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#
|
|
22150
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#HeadBase)
|
|
21892
22151
|
*/
|
|
21893
|
-
|
|
22152
|
+
HeadBase: Instance | undefined;
|
|
21894
22153
|
/**
|
|
21895
22154
|
* - **ThreadSafety**: ReadSafe
|
|
21896
22155
|
*
|
|
21897
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#
|
|
22156
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#HeadBaseRangeMax)
|
|
21898
22157
|
*/
|
|
21899
|
-
|
|
22158
|
+
HeadBaseRangeMax: Vector3;
|
|
21900
22159
|
/**
|
|
21901
22160
|
* - **ThreadSafety**: ReadSafe
|
|
21902
22161
|
*
|
|
21903
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#
|
|
22162
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#HeadBaseRangeMin)
|
|
21904
22163
|
*/
|
|
21905
|
-
|
|
22164
|
+
HeadBaseRangeMin: Vector3;
|
|
21906
22165
|
/**
|
|
21907
22166
|
* - **ThreadSafety**: ReadSafe
|
|
21908
22167
|
*
|
|
21909
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#
|
|
22168
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#HeadBaseSize)
|
|
21910
22169
|
*/
|
|
21911
|
-
|
|
22170
|
+
HeadBaseSize: number;
|
|
21912
22171
|
/**
|
|
21913
22172
|
* - **ThreadSafety**: ReadSafe
|
|
21914
22173
|
*
|
|
21915
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#
|
|
22174
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#HeadBaseTposeAdjustment)
|
|
21916
22175
|
*/
|
|
21917
|
-
|
|
22176
|
+
HeadBaseTposeAdjustment: CFrame;
|
|
21918
22177
|
/**
|
|
21919
22178
|
* - **ThreadSafety**: ReadSafe
|
|
21920
22179
|
*
|
|
@@ -22523,6 +22782,12 @@ interface HumanoidRigDescription extends Instance {
|
|
|
22523
22782
|
* @param character
|
|
22524
22783
|
*/
|
|
22525
22784
|
Automap(this: HumanoidRigDescription, character: Instance): void;
|
|
22785
|
+
/**
|
|
22786
|
+
* - **ThreadSafety**: Safe
|
|
22787
|
+
*
|
|
22788
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#GetJointFromName)
|
|
22789
|
+
*/
|
|
22790
|
+
GetJointFromName(this: HumanoidRigDescription, name: string): Instance | undefined;
|
|
22526
22791
|
/**
|
|
22527
22792
|
* - **ThreadSafety**: Safe
|
|
22528
22793
|
*
|
|
@@ -22857,7 +23122,7 @@ interface InputAction extends Instance {
|
|
|
22857
23122
|
* @param this
|
|
22858
23123
|
* @param value
|
|
22859
23124
|
*/
|
|
22860
|
-
Fire(this: InputAction,
|
|
23125
|
+
Fire(this: InputAction, state: unknown): void;
|
|
22861
23126
|
/**
|
|
22862
23127
|
* - **ThreadSafety**: Unsafe
|
|
22863
23128
|
*
|
|
@@ -25798,6 +26063,13 @@ interface MemoryStoreQueue extends Instance {
|
|
|
25798
26063
|
* @param priority Item priority. Items with higher priority are retrieved from the queue before items with lower priority.
|
|
25799
26064
|
*/
|
|
25800
26065
|
AddAsync(this: MemoryStoreQueue, value: unknown, expiration: number, priority?: number): void;
|
|
26066
|
+
/**
|
|
26067
|
+
* - **ThreadSafety**: Unsafe
|
|
26068
|
+
* - **Tags**: Yields
|
|
26069
|
+
*
|
|
26070
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MemoryStoreQueue#GetSizeAsync)
|
|
26071
|
+
*/
|
|
26072
|
+
GetSizeAsync(this: MemoryStoreQueue, excludeInvisible?: boolean): number;
|
|
25801
26073
|
/**
|
|
25802
26074
|
* Reads one or more items from the queue.
|
|
25803
26075
|
*
|
|
@@ -25935,6 +26207,13 @@ interface MemoryStoreSortedMap extends Instance {
|
|
|
25935
26207
|
value: unknown;
|
|
25936
26208
|
sortKey?: string | number;
|
|
25937
26209
|
}>;
|
|
26210
|
+
/**
|
|
26211
|
+
* - **ThreadSafety**: Unsafe
|
|
26212
|
+
* - **Tags**: Yields
|
|
26213
|
+
*
|
|
26214
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MemoryStoreSortedMap#GetSizeAsync)
|
|
26215
|
+
*/
|
|
26216
|
+
GetSizeAsync(this: MemoryStoreSortedMap): number;
|
|
25938
26217
|
/**
|
|
25939
26218
|
* Removes the provided key from the sorted map.
|
|
25940
26219
|
*
|
|
@@ -26597,6 +26876,8 @@ interface BasePart extends PVInstance {
|
|
|
26597
26876
|
*/
|
|
26598
26877
|
readonly AssemblyRootPart: BasePart | undefined;
|
|
26599
26878
|
/**
|
|
26879
|
+
* Determines whether the part will physically interact with audio simulation, similar to `CastShadow` for lighting.
|
|
26880
|
+
*
|
|
26600
26881
|
* - **ThreadSafety**: ReadSafe
|
|
26601
26882
|
*
|
|
26602
26883
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BasePart#AudioCanCollide)
|
|
@@ -32417,7 +32698,7 @@ interface PlayerScripts extends Instance {
|
|
|
32417
32698
|
*/
|
|
32418
32699
|
readonly _nominal_PlayerScripts: unique symbol;
|
|
32419
32700
|
/**
|
|
32420
|
-
* Unregisters all ComputerCameraMovementMode enums from the
|
|
32701
|
+
* Unregisters all ComputerCameraMovementMode enums from the experience's settings menu.
|
|
32421
32702
|
*
|
|
32422
32703
|
* - **ThreadSafety**: Unsafe
|
|
32423
32704
|
*
|
|
@@ -32426,7 +32707,7 @@ interface PlayerScripts extends Instance {
|
|
|
32426
32707
|
*/
|
|
32427
32708
|
ClearComputerCameraMovementModes(this: PlayerScripts): void;
|
|
32428
32709
|
/**
|
|
32429
|
-
* Unregisters all ComputerMovementMode enums from the
|
|
32710
|
+
* Unregisters all ComputerMovementMode enums from the experience's settings menu.
|
|
32430
32711
|
*
|
|
32431
32712
|
* - **ThreadSafety**: Unsafe
|
|
32432
32713
|
*
|
|
@@ -32435,7 +32716,7 @@ interface PlayerScripts extends Instance {
|
|
|
32435
32716
|
*/
|
|
32436
32717
|
ClearComputerMovementModes(this: PlayerScripts): void;
|
|
32437
32718
|
/**
|
|
32438
|
-
* Unregisters all TouchCameraMovementMode enums from the
|
|
32719
|
+
* Unregisters all TouchCameraMovementMode enums from the experience's settings menu.
|
|
32439
32720
|
*
|
|
32440
32721
|
* - **ThreadSafety**: Unsafe
|
|
32441
32722
|
*
|
|
@@ -32444,7 +32725,7 @@ interface PlayerScripts extends Instance {
|
|
|
32444
32725
|
*/
|
|
32445
32726
|
ClearTouchCameraMovementModes(this: PlayerScripts): void;
|
|
32446
32727
|
/**
|
|
32447
|
-
* Unregisters all TouchMovementMode enums from the
|
|
32728
|
+
* Unregisters all TouchMovementMode enums from the experience's settings menu.
|
|
32448
32729
|
*
|
|
32449
32730
|
* - **ThreadSafety**: Unsafe
|
|
32450
32731
|
*
|
|
@@ -33695,18 +33976,26 @@ interface ReflectionService extends Instance {
|
|
|
33695
33976
|
* - **ThreadSafety**: Unsafe
|
|
33696
33977
|
*
|
|
33697
33978
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetClass)
|
|
33979
|
+
* @param this
|
|
33980
|
+
* @param className
|
|
33981
|
+
* @param filter
|
|
33698
33982
|
*/
|
|
33699
33983
|
GetClass(this: ReflectionService, className: string, filter?: object): object | undefined;
|
|
33700
33984
|
/**
|
|
33701
33985
|
* - **ThreadSafety**: Unsafe
|
|
33702
33986
|
*
|
|
33703
33987
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetClasses)
|
|
33988
|
+
* @param this
|
|
33989
|
+
* @param filter
|
|
33704
33990
|
*/
|
|
33705
33991
|
GetClasses(this: ReflectionService, filter?: object): Array<unknown>;
|
|
33706
33992
|
/**
|
|
33707
33993
|
* - **ThreadSafety**: Unsafe
|
|
33708
33994
|
*
|
|
33709
33995
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetPropertiesOfClass)
|
|
33996
|
+
* @param this
|
|
33997
|
+
* @param className
|
|
33998
|
+
* @param filter
|
|
33710
33999
|
*/
|
|
33711
34000
|
GetPropertiesOfClass(this: ReflectionService, className: string, filter?: object): Array<unknown>;
|
|
33712
34001
|
}
|
|
@@ -35146,7 +35435,7 @@ interface DataModel extends ServiceProvider<Services> {
|
|
|
35146
35435
|
/**
|
|
35147
35436
|
* **Deprecated:** This item is deprecated . Do not use it for new work.
|
|
35148
35437
|
*
|
|
35149
|
-
* Fires when SetGearSettings is called with a different value for
|
|
35438
|
+
* Fires when SetGearSettings is called with a different value for `allowedGenres`.
|
|
35150
35439
|
*
|
|
35151
35440
|
* - **ThreadSafety**: Unsafe
|
|
35152
35441
|
* - **Tags**:
|
|
@@ -36091,7 +36380,7 @@ interface CompressorSoundEffect extends SoundEffect {
|
|
|
36091
36380
|
*/
|
|
36092
36381
|
Attack: number;
|
|
36093
36382
|
/**
|
|
36094
|
-
* The overall amplification applied to the effect
|
|
36383
|
+
* The overall amplification applied to the effect's Sound or SoundGroup after attenuation of sounds above the threshold.
|
|
36095
36384
|
*
|
|
36096
36385
|
* - **ThreadSafety**: ReadSafe
|
|
36097
36386
|
*
|
|
@@ -39607,7 +39896,7 @@ interface TextChatService extends Instance {
|
|
|
39607
39896
|
*/
|
|
39608
39897
|
readonly _nominal_TextChatService: unique symbol;
|
|
39609
39898
|
/**
|
|
39610
|
-
* Determines
|
|
39899
|
+
* Determines whether a user has chat translation enabled.
|
|
39611
39900
|
*
|
|
39612
39901
|
* - **ThreadSafety**: ReadSafe
|
|
39613
39902
|
* - **Tags**: NotReplicated
|
|
@@ -40916,7 +41205,7 @@ interface UIDragDetector extends UIComponent {
|
|
|
40916
41205
|
*
|
|
40917
41206
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIDragDetector#SetDragStyleFunction)
|
|
40918
41207
|
* @param this Instance which facilitates and encourages interaction with UI elements in an experience.
|
|
40919
|
-
* @param function Function for monitoring `DragContinue` signals. This function receives the
|
|
41208
|
+
* @param function Function for monitoring `DragContinue` signals. This function receives the signal's screen space input position and returns a `UDim2` and float containing the desired motion of the drag in the desired space and relativity. If this function returns `nil`, the object will not be moved.
|
|
40920
41209
|
*/
|
|
40921
41210
|
SetDragStyleFunction(this: UIDragDetector, callback: (inputPosition: UDim2) => UDim2 | void): void;
|
|
40922
41211
|
/**
|