@rbxts/types 1.0.940 → 1.0.942

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;
@@ -675,6 +676,7 @@ interface Instances extends Services, CreatableInstances {
675
676
  LuaSourceContainer: LuaSourceContainer;
676
677
  ManualSurfaceJointInstance: ManualSurfaceJointInstance;
677
678
  MaterialImportData: MaterialImportData;
679
+ MemoryStoreDistributedCounter: MemoryStoreDistributedCounter;
678
680
  MemoryStoreHashMap: MemoryStoreHashMap;
679
681
  MemoryStoreHashMapPages: MemoryStoreHashMapPages;
680
682
  MemoryStoreQueue: MemoryStoreQueue;
@@ -766,6 +768,7 @@ interface Objects extends Instances {
766
768
  AnimationNode: AnimationNode;
767
769
  Capture: Capture;
768
770
  ConfigSnapshot: ConfigSnapshot;
771
+ DataModelDiff: DataModelDiff;
769
772
  EditableImage: EditableImage;
770
773
  EditableMesh: EditableMesh;
771
774
  ExecutedRemoteCommand: ExecutedRemoteCommand;
@@ -1026,6 +1029,21 @@ interface ConfigSnapshot extends RBXObject {
1026
1029
  */
1027
1030
  readonly UpdateAvailable: RBXScriptSignal<() => void>;
1028
1031
  }
1032
+ /**
1033
+ * - **Tags**: NotCreatable
1034
+ *
1035
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModelDiff)
1036
+ */
1037
+ interface DataModelDiff extends RBXObject {
1038
+ /**
1039
+ * **DO NOT USE!**
1040
+ *
1041
+ * This field exists to force TypeScript to recognize this as a nominal type
1042
+ * @hidden
1043
+ * @deprecated
1044
+ */
1045
+ readonly _nominal_DataModelDiff: unique symbol;
1046
+ }
1029
1047
  /**
1030
1048
  * Object which allows for the runtime creation and manipulation of images.
1031
1049
  *
@@ -1285,7 +1303,69 @@ interface EditableMesh extends RBXObject {
1285
1303
  AddVertex(this: EditableMesh, p: Vector3): number;
1286
1304
  /**
1287
1305
  * - **ThreadSafety**: Unsafe
1288
- * - **Tags**: NotBrowsable
1306
+ * - **Tags**: CustomLuaState
1307
+ *
1308
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchAdd)
1309
+ */
1310
+ BatchAdd(this: EditableMesh, attr: CastsToEnum<Enum.MeshAttribute>, data: Array<unknown>): Array<unknown>;
1311
+ /**
1312
+ * - **ThreadSafety**: Safe
1313
+ * - **Tags**: CustomLuaState
1314
+ *
1315
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchGetFaceAttributes)
1316
+ */
1317
+ BatchGetFaceAttributes(this: EditableMesh, attr: CastsToEnum<Enum.MeshAttribute>, faceIds: Array<unknown>): Array<unknown>;
1318
+ /**
1319
+ * - **ThreadSafety**: Safe
1320
+ * - **Tags**: CustomLuaState
1321
+ *
1322
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchGetValues)
1323
+ */
1324
+ BatchGetValues(this: EditableMesh, ids: Array<unknown>): unknown;
1325
+ /**
1326
+ * - **ThreadSafety**: Safe
1327
+ * - **Tags**: CustomLuaState
1328
+ *
1329
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchGetVertexAttributes)
1330
+ */
1331
+ BatchGetVertexAttributes(this: EditableMesh, attr: CastsToEnum<Enum.MeshAttribute>, vertexIds: Array<unknown>): Array<unknown>;
1332
+ /**
1333
+ * - **ThreadSafety**: Safe
1334
+ * - **Tags**: CustomLuaState
1335
+ *
1336
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchGetVertexFaceAttributes)
1337
+ */
1338
+ BatchGetVertexFaceAttributes(this: EditableMesh, attr: CastsToEnum<Enum.MeshAttribute>, vertexIds: Array<unknown>, faceIds: Array<unknown>): Array<unknown>;
1339
+ /**
1340
+ * - **ThreadSafety**: Unsafe
1341
+ * - **Tags**: CustomLuaState
1342
+ *
1343
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchRemove)
1344
+ */
1345
+ BatchRemove(this: EditableMesh, ids: Array<unknown>): void;
1346
+ /**
1347
+ * - **ThreadSafety**: Unsafe
1348
+ * - **Tags**: CustomLuaState
1349
+ *
1350
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchSetFaceAttributes)
1351
+ */
1352
+ BatchSetFaceAttributes(this: EditableMesh, faceIds: Array<unknown>, attrIdArrays: Array<unknown>): void;
1353
+ /**
1354
+ * - **ThreadSafety**: Unsafe
1355
+ * - **Tags**: CustomLuaState
1356
+ *
1357
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchSetValues)
1358
+ */
1359
+ BatchSetValues(this: EditableMesh, ids: Array<unknown>, values: Array<unknown>): void;
1360
+ /**
1361
+ * - **ThreadSafety**: Unsafe
1362
+ * - **Tags**: CustomLuaState
1363
+ *
1364
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchSetVertexFaceAttributes)
1365
+ */
1366
+ BatchSetVertexFaceAttributes(this: EditableMesh, vertexIds: Array<unknown>, faceIds: Array<unknown>, attrIds: Array<unknown>): void;
1367
+ /**
1368
+ * - **ThreadSafety**: Unsafe
1289
1369
  *
1290
1370
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#Clear)
1291
1371
  */
@@ -1302,7 +1382,7 @@ interface EditableMesh extends RBXObject {
1302
1382
  /**
1303
1383
  * Finds the closest point on the mesh's surface.
1304
1384
  *
1305
- * - **ThreadSafety**: Unsafe
1385
+ * - **ThreadSafety**: Safe
1306
1386
  *
1307
1387
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#FindClosestPointOnSurface)
1308
1388
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1317,7 +1397,7 @@ interface EditableMesh extends RBXObject {
1317
1397
  /**
1318
1398
  * Finds the closest vertex to a specific point in space.
1319
1399
  *
1320
- * - **ThreadSafety**: Unsafe
1400
+ * - **ThreadSafety**: Safe
1321
1401
  *
1322
1402
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#FindClosestVertex)
1323
1403
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1328,7 +1408,7 @@ interface EditableMesh extends RBXObject {
1328
1408
  /**
1329
1409
  * Finds all vertices within a specific sphere.
1330
1410
  *
1331
- * - **ThreadSafety**: Unsafe
1411
+ * - **ThreadSafety**: Safe
1332
1412
  *
1333
1413
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#FindVerticesWithinSphere)
1334
1414
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1340,7 +1420,7 @@ interface EditableMesh extends RBXObject {
1340
1420
  /**
1341
1421
  * Returns a list of faces adjacent to a given face.
1342
1422
  *
1343
- * - **ThreadSafety**: Unsafe
1423
+ * - **ThreadSafety**: Safe
1344
1424
  *
1345
1425
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetAdjacentFaces)
1346
1426
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1351,7 +1431,7 @@ interface EditableMesh extends RBXObject {
1351
1431
  /**
1352
1432
  * Returns a list of vertices adjacent to a given vertex.
1353
1433
  *
1354
- * - **ThreadSafety**: Unsafe
1434
+ * - **ThreadSafety**: Safe
1355
1435
  *
1356
1436
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetAdjacentVertices)
1357
1437
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1362,7 +1442,7 @@ interface EditableMesh extends RBXObject {
1362
1442
  /**
1363
1443
  * Finds the bone ID of the bone with the given name.
1364
1444
  *
1365
- * - **ThreadSafety**: Unsafe
1445
+ * - **ThreadSafety**: Safe
1366
1446
  *
1367
1447
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneByName)
1368
1448
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1373,7 +1453,7 @@ interface EditableMesh extends RBXObject {
1373
1453
  /**
1374
1454
  * Returns the initial `CFrame` of the bone in the bind pose of the mesh.
1375
1455
  *
1376
- * - **ThreadSafety**: Unsafe
1456
+ * - **ThreadSafety**: Safe
1377
1457
  *
1378
1458
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneCFrame)
1379
1459
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1384,7 +1464,7 @@ interface EditableMesh extends RBXObject {
1384
1464
  /**
1385
1465
  * Returns `true` if the bone is virtual.
1386
1466
  *
1387
- * - **ThreadSafety**: Unsafe
1467
+ * - **ThreadSafety**: Safe
1388
1468
  *
1389
1469
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneIsVirtual)
1390
1470
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1395,7 +1475,7 @@ interface EditableMesh extends RBXObject {
1395
1475
  /**
1396
1476
  * Returns the bone name.
1397
1477
  *
1398
- * - **ThreadSafety**: Unsafe
1478
+ * - **ThreadSafety**: Safe
1399
1479
  *
1400
1480
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneName)
1401
1481
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1406,7 +1486,7 @@ interface EditableMesh extends RBXObject {
1406
1486
  /**
1407
1487
  * Returns the parent bone ID, if any.
1408
1488
  *
1409
- * - **ThreadSafety**: Unsafe
1489
+ * - **ThreadSafety**: Safe
1410
1490
  *
1411
1491
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneParent)
1412
1492
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1417,7 +1497,7 @@ interface EditableMesh extends RBXObject {
1417
1497
  /**
1418
1498
  * Returns all bones of the mesh.
1419
1499
  *
1420
- * - **ThreadSafety**: Unsafe
1500
+ * - **ThreadSafety**: Safe
1421
1501
  *
1422
1502
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBones)
1423
1503
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1425,7 +1505,7 @@ interface EditableMesh extends RBXObject {
1425
1505
  */
1426
1506
  GetBones(this: EditableMesh): Array<unknown>;
1427
1507
  /**
1428
- * - **ThreadSafety**: Unsafe
1508
+ * - **ThreadSafety**: Safe
1429
1509
  *
1430
1510
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetCenter)
1431
1511
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1435,7 +1515,7 @@ interface EditableMesh extends RBXObject {
1435
1515
  /**
1436
1516
  * Returns the color for the given color ID.
1437
1517
  *
1438
- * - **ThreadSafety**: Unsafe
1518
+ * - **ThreadSafety**: Safe
1439
1519
  *
1440
1520
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetColor)
1441
1521
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1446,7 +1526,7 @@ interface EditableMesh extends RBXObject {
1446
1526
  /**
1447
1527
  * Returns the color alpha (transparency) at the given color ID.
1448
1528
  *
1449
- * - **ThreadSafety**: Unsafe
1529
+ * - **ThreadSafety**: Safe
1450
1530
  *
1451
1531
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetColorAlpha)
1452
1532
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1457,7 +1537,7 @@ interface EditableMesh extends RBXObject {
1457
1537
  /**
1458
1538
  * Returns all colors of the mesh.
1459
1539
  *
1460
- * - **ThreadSafety**: Unsafe
1540
+ * - **ThreadSafety**: Safe
1461
1541
  * - **Tags**: CustomLuaState
1462
1542
  *
1463
1543
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetColors)
@@ -1468,7 +1548,7 @@ interface EditableMesh extends RBXObject {
1468
1548
  /**
1469
1549
  * Returns the face's color IDs for the vertices on the face.
1470
1550
  *
1471
- * - **ThreadSafety**: Unsafe
1551
+ * - **ThreadSafety**: Safe
1472
1552
  * - **Tags**: CustomLuaState
1473
1553
  *
1474
1554
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFaceColors)
@@ -1480,7 +1560,7 @@ interface EditableMesh extends RBXObject {
1480
1560
  /**
1481
1561
  * Returns the face's normal IDs for the vertices on the face.
1482
1562
  *
1483
- * - **ThreadSafety**: Unsafe
1563
+ * - **ThreadSafety**: Safe
1484
1564
  * - **Tags**: CustomLuaState
1485
1565
  *
1486
1566
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFaceNormals)
@@ -1492,7 +1572,7 @@ interface EditableMesh extends RBXObject {
1492
1572
  /**
1493
1573
  * Returns the face's UV IDs for the vertices on the face.
1494
1574
  *
1495
- * - **ThreadSafety**: Unsafe
1575
+ * - **ThreadSafety**: Safe
1496
1576
  * - **Tags**: CustomLuaState
1497
1577
  *
1498
1578
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFaceUVs)
@@ -1504,7 +1584,7 @@ interface EditableMesh extends RBXObject {
1504
1584
  /**
1505
1585
  * Returns the face's vertex IDs.
1506
1586
  *
1507
- * - **ThreadSafety**: Unsafe
1587
+ * - **ThreadSafety**: Safe
1508
1588
  * - **Tags**: CustomLuaState
1509
1589
  *
1510
1590
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFaceVertices)
@@ -1516,7 +1596,7 @@ interface EditableMesh extends RBXObject {
1516
1596
  /**
1517
1597
  * Returns all faces of the mesh.
1518
1598
  *
1519
- * - **ThreadSafety**: Unsafe
1599
+ * - **ThreadSafety**: Safe
1520
1600
  * - **Tags**: CustomLuaState
1521
1601
  *
1522
1602
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFaces)
@@ -1529,7 +1609,7 @@ interface EditableMesh extends RBXObject {
1529
1609
  *
1530
1610
  * Returns a list of faces that use a given attribute ID.
1531
1611
  *
1532
- * - **ThreadSafety**: Unsafe
1612
+ * - **ThreadSafety**: Safe
1533
1613
  * - **Tags**:
1534
1614
  *
1535
1615
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithAttribute)
@@ -1543,7 +1623,7 @@ interface EditableMesh extends RBXObject {
1543
1623
  /**
1544
1624
  * Returns an array of face IDs that use the given color ID.
1545
1625
  *
1546
- * - **ThreadSafety**: Unsafe
1626
+ * - **ThreadSafety**: Safe
1547
1627
  * - **Tags**: CustomLuaState
1548
1628
  *
1549
1629
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithColor)
@@ -1555,7 +1635,7 @@ interface EditableMesh extends RBXObject {
1555
1635
  /**
1556
1636
  * Returns an array of face IDs that use the given normal ID.
1557
1637
  *
1558
- * - **ThreadSafety**: Unsafe
1638
+ * - **ThreadSafety**: Safe
1559
1639
  * - **Tags**: CustomLuaState
1560
1640
  *
1561
1641
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithNormal)
@@ -1567,7 +1647,7 @@ interface EditableMesh extends RBXObject {
1567
1647
  /**
1568
1648
  * Returns an array of face IDs that use the given UV ID.
1569
1649
  *
1570
- * - **ThreadSafety**: Unsafe
1650
+ * - **ThreadSafety**: Safe
1571
1651
  * - **Tags**: CustomLuaState
1572
1652
  *
1573
1653
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithUV)
@@ -1579,7 +1659,7 @@ interface EditableMesh extends RBXObject {
1579
1659
  /**
1580
1660
  * Returns bone IDs and bone `CFrames` for all bones in a specific FACS corrective pose.
1581
1661
  *
1582
- * - **ThreadSafety**: Unsafe
1662
+ * - **ThreadSafety**: Safe
1583
1663
  *
1584
1664
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsCorrectivePose)
1585
1665
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1590,7 +1670,7 @@ interface EditableMesh extends RBXObject {
1590
1670
  /**
1591
1671
  * Returns all FACS corrective poses that are in use.
1592
1672
  *
1593
- * - **ThreadSafety**: Unsafe
1673
+ * - **ThreadSafety**: Safe
1594
1674
  *
1595
1675
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsCorrectivePoses)
1596
1676
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1600,7 +1680,7 @@ interface EditableMesh extends RBXObject {
1600
1680
  /**
1601
1681
  * Returns bone IDs and bone `CFrames` for all bones in a specific FACS action unit.
1602
1682
  *
1603
- * - **ThreadSafety**: Unsafe
1683
+ * - **ThreadSafety**: Safe
1604
1684
  *
1605
1685
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsPose)
1606
1686
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1611,7 +1691,7 @@ interface EditableMesh extends RBXObject {
1611
1691
  /**
1612
1692
  * Returns all FACS action units that have poses defined.
1613
1693
  *
1614
- * - **ThreadSafety**: Unsafe
1694
+ * - **ThreadSafety**: Safe
1615
1695
  *
1616
1696
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsPoses)
1617
1697
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1621,7 +1701,7 @@ interface EditableMesh extends RBXObject {
1621
1701
  /**
1622
1702
  * Returns the normal vector for the given normal ID.
1623
1703
  *
1624
- * - **ThreadSafety**: Unsafe
1704
+ * - **ThreadSafety**: Safe
1625
1705
  *
1626
1706
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetNormal)
1627
1707
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1632,7 +1712,7 @@ interface EditableMesh extends RBXObject {
1632
1712
  /**
1633
1713
  * Returns all normals of the mesh.
1634
1714
  *
1635
- * - **ThreadSafety**: Unsafe
1715
+ * - **ThreadSafety**: Safe
1636
1716
  * - **Tags**: CustomLuaState
1637
1717
  *
1638
1718
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetNormals)
@@ -1643,7 +1723,7 @@ interface EditableMesh extends RBXObject {
1643
1723
  /**
1644
1724
  * Gets the position of a vertex.
1645
1725
  *
1646
- * - **ThreadSafety**: Unsafe
1726
+ * - **ThreadSafety**: Safe
1647
1727
  *
1648
1728
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetPosition)
1649
1729
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1652,7 +1732,7 @@ interface EditableMesh extends RBXObject {
1652
1732
  */
1653
1733
  GetPosition(this: EditableMesh, vertexId: number): Vector3;
1654
1734
  /**
1655
- * - **ThreadSafety**: Unsafe
1735
+ * - **ThreadSafety**: Safe
1656
1736
  *
1657
1737
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetSize)
1658
1738
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1662,7 +1742,7 @@ interface EditableMesh extends RBXObject {
1662
1742
  /**
1663
1743
  * Returns UV coordinates at the given UV ID.
1664
1744
  *
1665
- * - **ThreadSafety**: Unsafe
1745
+ * - **ThreadSafety**: Safe
1666
1746
  *
1667
1747
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetUV)
1668
1748
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1673,7 +1753,7 @@ interface EditableMesh extends RBXObject {
1673
1753
  /**
1674
1754
  * Returns all UVs of the mesh.
1675
1755
  *
1676
- * - **ThreadSafety**: Unsafe
1756
+ * - **ThreadSafety**: Safe
1677
1757
  * - **Tags**: CustomLuaState
1678
1758
  *
1679
1759
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetUVs)
@@ -1684,7 +1764,7 @@ interface EditableMesh extends RBXObject {
1684
1764
  /**
1685
1765
  * Returns skinning blend weights for each bone that is associated with the vertex.
1686
1766
  *
1687
- * - **ThreadSafety**: Unsafe
1767
+ * - **ThreadSafety**: Safe
1688
1768
  *
1689
1769
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexBoneWeights)
1690
1770
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1695,7 +1775,7 @@ interface EditableMesh extends RBXObject {
1695
1775
  /**
1696
1776
  * Returns all bone IDs that are associated with the vertex for skinning.
1697
1777
  *
1698
- * - **ThreadSafety**: Unsafe
1778
+ * - **ThreadSafety**: Safe
1699
1779
  *
1700
1780
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexBones)
1701
1781
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1706,7 +1786,7 @@ interface EditableMesh extends RBXObject {
1706
1786
  /**
1707
1787
  * Returns the color IDs of the faces attached to the given vertex.
1708
1788
  *
1709
- * - **ThreadSafety**: Unsafe
1789
+ * - **ThreadSafety**: Safe
1710
1790
  * - **Tags**: CustomLuaState
1711
1791
  *
1712
1792
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexColors)
@@ -1718,7 +1798,7 @@ interface EditableMesh extends RBXObject {
1718
1798
  /**
1719
1799
  * Returns the color ID of a vertex/face pair.
1720
1800
  *
1721
- * - **ThreadSafety**: Unsafe
1801
+ * - **ThreadSafety**: Safe
1722
1802
  *
1723
1803
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceColor)
1724
1804
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1730,7 +1810,7 @@ interface EditableMesh extends RBXObject {
1730
1810
  /**
1731
1811
  * Returns the normal ID of a vertex/face pair.
1732
1812
  *
1733
- * - **ThreadSafety**: Unsafe
1813
+ * - **ThreadSafety**: Safe
1734
1814
  *
1735
1815
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceNormal)
1736
1816
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1742,7 +1822,7 @@ interface EditableMesh extends RBXObject {
1742
1822
  /**
1743
1823
  * Returns the UV ID of a vertex/face pair.
1744
1824
  *
1745
- * - **ThreadSafety**: Unsafe
1825
+ * - **ThreadSafety**: Safe
1746
1826
  *
1747
1827
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceUV)
1748
1828
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1754,7 +1834,7 @@ interface EditableMesh extends RBXObject {
1754
1834
  /**
1755
1835
  * Returns the face IDs of the faces attached to the given vertex.
1756
1836
  *
1757
- * - **ThreadSafety**: Unsafe
1837
+ * - **ThreadSafety**: Safe
1758
1838
  * - **Tags**: CustomLuaState
1759
1839
  *
1760
1840
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaces)
@@ -1766,7 +1846,7 @@ interface EditableMesh extends RBXObject {
1766
1846
  /**
1767
1847
  * Returns the normal IDs of the faces attached to the given vertex.
1768
1848
  *
1769
- * - **ThreadSafety**: Unsafe
1849
+ * - **ThreadSafety**: Safe
1770
1850
  * - **Tags**: CustomLuaState
1771
1851
  *
1772
1852
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexNormals)
@@ -1778,7 +1858,7 @@ interface EditableMesh extends RBXObject {
1778
1858
  /**
1779
1859
  * Returns the UV IDs of the faces attached to the given vertex.
1780
1860
  *
1781
- * - **ThreadSafety**: Unsafe
1861
+ * - **ThreadSafety**: Safe
1782
1862
  * - **Tags**: CustomLuaState
1783
1863
  *
1784
1864
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexUVs)
@@ -1790,7 +1870,7 @@ interface EditableMesh extends RBXObject {
1790
1870
  /**
1791
1871
  * Returns all vertices as a list of stable vertex IDs.
1792
1872
  *
1793
- * - **ThreadSafety**: Unsafe
1873
+ * - **ThreadSafety**: Safe
1794
1874
  *
1795
1875
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertices)
1796
1876
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1802,7 +1882,7 @@ interface EditableMesh extends RBXObject {
1802
1882
  *
1803
1883
  * Returns a list of vertices that use a given attribute ID.
1804
1884
  *
1805
- * - **ThreadSafety**: Unsafe
1885
+ * - **ThreadSafety**: Safe
1806
1886
  * - **Tags**:
1807
1887
  *
1808
1888
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithAttribute)
@@ -1816,7 +1896,7 @@ interface EditableMesh extends RBXObject {
1816
1896
  /**
1817
1897
  * Returns an array of vertex IDs that use the given color ID.
1818
1898
  *
1819
- * - **ThreadSafety**: Unsafe
1899
+ * - **ThreadSafety**: Safe
1820
1900
  * - **Tags**: CustomLuaState
1821
1901
  *
1822
1902
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithColor)
@@ -1828,7 +1908,7 @@ interface EditableMesh extends RBXObject {
1828
1908
  /**
1829
1909
  * Returns an array of vertex IDs that use the given normal ID.
1830
1910
  *
1831
- * - **ThreadSafety**: Unsafe
1911
+ * - **ThreadSafety**: Safe
1832
1912
  * - **Tags**: CustomLuaState
1833
1913
  *
1834
1914
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithNormal)
@@ -1840,7 +1920,7 @@ interface EditableMesh extends RBXObject {
1840
1920
  /**
1841
1921
  * Returns an array of vertex IDs that use the given UV ID.
1842
1922
  *
1843
- * - **ThreadSafety**: Unsafe
1923
+ * - **ThreadSafety**: Safe
1844
1924
  * - **Tags**: CustomLuaState
1845
1925
  *
1846
1926
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithUV)
@@ -1872,7 +1952,7 @@ interface EditableMesh extends RBXObject {
1872
1952
  */
1873
1953
  MergeVertices(this: EditableMesh, mergeTolerance: number): unknown;
1874
1954
  /**
1875
- * - **ThreadSafety**: Unsafe
1955
+ * - **ThreadSafety**: Safe
1876
1956
  *
1877
1957
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#RaycastLocal)
1878
1958
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -3984,6 +4064,8 @@ interface Animator extends Instance {
3984
4064
  */
3985
4065
  readonly _nominal_Animator: unique symbol;
3986
4066
  /**
4067
+ * Indicates whether animation evaluation was throttled (skipped) this frame for this `Animator`.
4068
+ *
3987
4069
  * - **ThreadSafety**: Safe
3988
4070
  * - **Tags**: NotReplicated
3989
4071
  *
@@ -3991,6 +4073,8 @@ interface Animator extends Instance {
3991
4073
  */
3992
4074
  readonly EvaluationThrottled: boolean;
3993
4075
  /**
4076
+ * Controls whether animation LOD throttling is allowed for this `Animator`. When set to `false`, animations always evaluate at full fidelity.
4077
+ *
3994
4078
  * - **ThreadSafety**: ReadSafe
3995
4079
  *
3996
4080
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Animator#PreferLodEnabled)
@@ -4017,7 +4101,7 @@ interface Animator extends Instance {
4017
4101
  *
4018
4102
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Animator#ApplyJointVelocities)
4019
4103
  * @param this Responsible for the playback and replication of `Animations`.
4020
- * @param motors
4104
+ * @param motors An array of `Motor6D` instances to compute and apply velocities for.
4021
4105
  */
4022
4106
  ApplyJointVelocities(this: Animator, motors: Array<Motor6D>): void;
4023
4107
  /**
@@ -4054,8 +4138,6 @@ interface Animator extends Instance {
4054
4138
  * - **ThreadSafety**: Unsafe
4055
4139
  *
4056
4140
  * [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
4141
  */
4060
4142
  RegisterEvaluationParallelCallback(this: Animator, callback: Callback): void;
4061
4143
  /**
@@ -8309,6 +8391,12 @@ interface AvatarCreationService extends Instance {
8309
8391
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#AvatarModerationCompleted)
8310
8392
  */
8311
8393
  readonly AvatarModerationCompleted: RBXScriptSignal<(outfitId: number, moderationStatus: Enum.ModerationStatus) => void>;
8394
+ /**
8395
+ * - **ThreadSafety**: Unsafe
8396
+ *
8397
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#AvatarOutfitModerationCompleted)
8398
+ */
8399
+ readonly AvatarOutfitModerationCompleted: RBXScriptSignal<(outfitId: number, moderationStatus: Enum.ModerationStatus, outfitType: Enum.OutfitType) => void>;
8312
8400
  }
8313
8401
  /**
8314
8402
  * A service to support developer Avatar Editors.
@@ -9264,12 +9352,24 @@ interface MaterialImportData extends BaseImportData {
9264
9352
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialImportData#DiffuseFilePath)
9265
9353
  */
9266
9354
  DiffuseFilePath: string;
9355
+ /**
9356
+ * - **ThreadSafety**: ReadSafe
9357
+ *
9358
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialImportData#DiffuseVersionedAssetId)
9359
+ */
9360
+ DiffuseVersionedAssetId: number;
9267
9361
  /**
9268
9362
  * - **ThreadSafety**: ReadSafe
9269
9363
  *
9270
9364
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialImportData#EmissiveFilePath)
9271
9365
  */
9272
9366
  EmissiveFilePath: string;
9367
+ /**
9368
+ * - **ThreadSafety**: ReadSafe
9369
+ *
9370
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialImportData#EmissiveVersionedAssetId)
9371
+ */
9372
+ EmissiveVersionedAssetId: number;
9273
9373
  /**
9274
9374
  * - **ThreadSafety**: ReadSafe
9275
9375
  * - **Tags**: NotReplicated
@@ -9283,18 +9383,36 @@ interface MaterialImportData extends BaseImportData {
9283
9383
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialImportData#MetalnessFilePath)
9284
9384
  */
9285
9385
  MetalnessFilePath: string;
9386
+ /**
9387
+ * - **ThreadSafety**: ReadSafe
9388
+ *
9389
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialImportData#MetalnessVersionedAssetId)
9390
+ */
9391
+ MetalnessVersionedAssetId: number;
9286
9392
  /**
9287
9393
  * - **ThreadSafety**: ReadSafe
9288
9394
  *
9289
9395
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialImportData#NormalFilePath)
9290
9396
  */
9291
9397
  NormalFilePath: string;
9398
+ /**
9399
+ * - **ThreadSafety**: ReadSafe
9400
+ *
9401
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialImportData#NormalVersionedAssetId)
9402
+ */
9403
+ NormalVersionedAssetId: number;
9292
9404
  /**
9293
9405
  * - **ThreadSafety**: ReadSafe
9294
9406
  *
9295
9407
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialImportData#RoughnessFilePath)
9296
9408
  */
9297
9409
  RoughnessFilePath: string;
9410
+ /**
9411
+ * - **ThreadSafety**: ReadSafe
9412
+ *
9413
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialImportData#RoughnessVersionedAssetId)
9414
+ */
9415
+ RoughnessVersionedAssetId: number;
9298
9416
  }
9299
9417
  /**
9300
9418
  * - **Tags**: NotCreatable, NotReplicated
@@ -9439,6 +9557,12 @@ interface MeshImportData extends BaseImportData {
9439
9557
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MeshImportData#UseImportedPivot)
9440
9558
  */
9441
9559
  UseImportedPivot: boolean;
9560
+ /**
9561
+ * - **ThreadSafety**: ReadSafe
9562
+ *
9563
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MeshImportData#VersionedAssetId)
9564
+ */
9565
+ VersionedAssetId: number;
9442
9566
  }
9443
9567
  /**
9444
9568
  * - **Tags**: NotCreatable, NotReplicated
@@ -9594,12 +9718,6 @@ interface RootImportData extends BaseImportData {
9594
9718
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RootImportData#UsesCages)
9595
9719
  */
9596
9720
  UsesCages: boolean;
9597
- /**
9598
- * - **ThreadSafety**: ReadSafe
9599
- *
9600
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RootImportData#ValidateUgcBody)
9601
- */
9602
- ValidateUgcBody: boolean;
9603
9721
  /**
9604
9722
  * - **ThreadSafety**: ReadSafe
9605
9723
  *
@@ -10086,6 +10204,8 @@ interface WrapLayer extends BaseWrap {
10086
10204
  */
10087
10205
  readonly _nominal_WrapLayer: unique symbol;
10088
10206
  /**
10207
+ * Determines whether this WrapLayer automatically transfers skinning data from the underlying body mesh to the clothing mesh.
10208
+ *
10089
10209
  * - **ThreadSafety**: ReadSafe
10090
10210
  *
10091
10211
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapLayer#AutoSkin)
@@ -18509,10 +18629,16 @@ interface GlobalDataStore extends Instance {
18509
18629
  */
18510
18630
  OnUpdate(this: GlobalDataStore, key: string, callback: Callback): RBXScriptConnection;
18511
18631
  /**
18632
+ * Returns the values of multiple keys from the data store in a single request.
18633
+ *
18512
18634
  * - **ThreadSafety**: Unsafe
18513
18635
  * - **Tags**: Yields
18514
18636
  *
18515
18637
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GlobalDataStore#BatchGetAsync)
18638
+ * @param this An object that exposes methods to access a single data store.
18639
+ * @param keys An array of key name strings to retrieve. The maximum number of keys per request is determined by a server-side limit (default 100).
18640
+ * @param options
18641
+ * @returns A dictionary mapping each requested key (string) to a table containing a `value` field with the key's current value. Keys that don't exist or have no value are omitted from the result.
18516
18642
  */
18517
18643
  BatchGetAsync(this: GlobalDataStore, keys: Array<unknown>, options?: object): object;
18518
18644
  /**
@@ -20385,6 +20511,119 @@ interface TextLabel extends GuiLabel {
20385
20511
  */
20386
20512
  TextYAlignment: Enum.TextYAlignment;
20387
20513
  }
20514
+ /**
20515
+ * A `GuiObject` that automatically displays the keybinding for an action as text or an image.
20516
+ *
20517
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel)
20518
+ */
20519
+ interface InputActionLabel extends GuiObject {
20520
+ /**
20521
+ * **DO NOT USE!**
20522
+ *
20523
+ * This field exists to force TypeScript to recognize this as a nominal type
20524
+ * @hidden
20525
+ * @deprecated
20526
+ */
20527
+ readonly _nominal_InputActionLabel: unique symbol;
20528
+ /**
20529
+ * Determines the font used to render text.
20530
+ *
20531
+ * - **ThreadSafety**: ReadSafe
20532
+ *
20533
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#FontFace)
20534
+ */
20535
+ FontFace: Font;
20536
+ /**
20537
+ * Determines how rendered label images will be colorized.
20538
+ *
20539
+ * - **ThreadSafety**: ReadSafe
20540
+ *
20541
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#ImageColor3)
20542
+ */
20543
+ ImageColor3: Color3;
20544
+ /**
20545
+ * Determines the transparency of rendered label images.
20546
+ *
20547
+ * - **ThreadSafety**: ReadSafe
20548
+ *
20549
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#ImageTransparency)
20550
+ */
20551
+ ImageTransparency: number;
20552
+ /**
20553
+ * The `InputAction` whose preferred binding this label displays.
20554
+ *
20555
+ * - **ThreadSafety**: ReadSafe
20556
+ *
20557
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#InputAction)
20558
+ */
20559
+ InputAction: InputAction | undefined;
20560
+ /**
20561
+ * Read-only. The resolved image content currently being displayed.
20562
+ *
20563
+ * - **ThreadSafety**: ReadSafe
20564
+ * - **Tags**: NotReplicated
20565
+ *
20566
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#ResolvedImageContent)
20567
+ */
20568
+ readonly ResolvedImageContent: Content;
20569
+ /**
20570
+ * The resolved key name string currently being displayed.
20571
+ *
20572
+ * - **ThreadSafety**: ReadSafe
20573
+ * - **Tags**: NotReplicated
20574
+ *
20575
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#ResolvedText)
20576
+ */
20577
+ readonly ResolvedText: string;
20578
+ /**
20579
+ * Determines the color of rendered text.
20580
+ *
20581
+ * - **ThreadSafety**: ReadSafe
20582
+ *
20583
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#TextColor3)
20584
+ */
20585
+ TextColor3: Color3;
20586
+ /**
20587
+ * Determines the line height of text in offsets.
20588
+ *
20589
+ * - **ThreadSafety**: ReadSafe
20590
+ *
20591
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#TextSize)
20592
+ */
20593
+ TextSize: number;
20594
+ /**
20595
+ * Determines the transparency of rendered text.
20596
+ *
20597
+ * - **ThreadSafety**: ReadSafe
20598
+ *
20599
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#TextTransparency)
20600
+ */
20601
+ TextTransparency: number;
20602
+ /**
20603
+ * Determines if text wraps to multiple lines within the label's space.
20604
+ *
20605
+ * - **ThreadSafety**: ReadSafe
20606
+ *
20607
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#TextWrapped)
20608
+ */
20609
+ TextWrapped: boolean;
20610
+ /**
20611
+ * Determines the horizontal alignment of rendered text.
20612
+ *
20613
+ * - **ThreadSafety**: ReadSafe
20614
+ *
20615
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#TextXAlignment)
20616
+ */
20617
+ TextXAlignment: Enum.TextXAlignment;
20618
+ /**
20619
+ * Determines the vertical alignment of rendered text.
20620
+ *
20621
+ * - **ThreadSafety**: ReadSafe
20622
+ *
20623
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#TextYAlignment)
20624
+ */
20625
+ TextYAlignment: Enum.TextYAlignment;
20626
+ }
20388
20627
  /**
20389
20628
  * - **Tags**: NotReplicated
20390
20629
  *
@@ -23479,6 +23718,8 @@ interface HarmonyService extends Instance {
23479
23718
  readonly _nominal_HarmonyService: unique symbol;
23480
23719
  }
23481
23720
  /**
23721
+ * Provides methods which return Luau heap memory usage summaries on client and server.
23722
+ *
23482
23723
  * - **Tags**: NotCreatable, Service
23483
23724
  *
23484
23725
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HeapProfilerService)
@@ -28717,7 +28958,7 @@ interface BaseScript extends LuaSourceContainer {
28717
28958
  */
28718
28959
  readonly _nominal_BaseScript: unique symbol;
28719
28960
  /**
28720
- * Determines whether a `BaseScript` will run or not.
28961
+ * Determines whether a `BaseScript` runs or not.
28721
28962
  *
28722
28963
  * - **ThreadSafety**: ReadSafe
28723
28964
  *
@@ -28725,7 +28966,7 @@ interface BaseScript extends LuaSourceContainer {
28725
28966
  */
28726
28967
  Disabled: boolean;
28727
28968
  /**
28728
- * Determines whether a `BaseScript` will run or not.
28969
+ * Determines whether a `BaseScript` runs or not.
28729
28970
  *
28730
28971
  * - **ThreadSafety**: ReadSafe
28731
28972
  * - **Tags**: NotReplicated
@@ -28747,7 +28988,7 @@ interface BaseScript extends LuaSourceContainer {
28747
28988
  */
28748
28989
  LinkedSource: ContentId;
28749
28990
  /**
28750
- * Determines the context under which the script will run.
28991
+ * Determines the context under which the script runs.
28751
28992
  *
28752
28993
  * - **ThreadSafety**: ReadSafe
28753
28994
  *
@@ -29709,6 +29950,35 @@ interface MaterialVariant extends Instance {
29709
29950
  */
29710
29951
  StudsPerTile: number;
29711
29952
  }
29953
+ /**
29954
+ * - **Tags**: NotCreatable, NotReplicated
29955
+ *
29956
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MemoryStoreDistributedCounter)
29957
+ */
29958
+ interface MemoryStoreDistributedCounter extends Instance {
29959
+ /**
29960
+ * **DO NOT USE!**
29961
+ *
29962
+ * This field exists to force TypeScript to recognize this as a nominal type
29963
+ * @hidden
29964
+ * @deprecated
29965
+ */
29966
+ readonly _nominal_MemoryStoreDistributedCounter: unique symbol;
29967
+ /**
29968
+ * - **ThreadSafety**: Unsafe
29969
+ * - **Tags**: Yields
29970
+ *
29971
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MemoryStoreDistributedCounter#GetAsync)
29972
+ */
29973
+ GetAsync(this: MemoryStoreDistributedCounter): number;
29974
+ /**
29975
+ * - **ThreadSafety**: Unsafe
29976
+ * - **Tags**: Yields
29977
+ *
29978
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MemoryStoreDistributedCounter#IncrementAsync)
29979
+ */
29980
+ IncrementAsync(this: MemoryStoreDistributedCounter, delta: number, expiration: number): number;
29981
+ }
29712
29982
  /**
29713
29983
  * Provides access to a hash map within `MemoryStoreService`.
29714
29984
  *
@@ -29873,6 +30143,12 @@ interface MemoryStoreService extends Instance {
29873
30143
  * @deprecated
29874
30144
  */
29875
30145
  readonly _nominal_MemoryStoreService: unique symbol;
30146
+ /**
30147
+ * - **ThreadSafety**: Unsafe
30148
+ *
30149
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MemoryStoreService#GetDistributedCounter)
30150
+ */
30151
+ GetDistributedCounter(this: MemoryStoreService, name: string): MemoryStoreDistributedCounter;
29876
30152
  /**
29877
30153
  * Returns a `MemoryStoreHashMap` instance for the provided name.
29878
30154
  *
@@ -31436,6 +31712,12 @@ interface BasePart extends PVInstance {
31436
31712
  * @param position The position, in world space, to apply the impulse.
31437
31713
  */
31438
31714
  ApplyImpulseAtPosition(this: BasePart, impulse: Vector3, position: Vector3): void;
31715
+ /**
31716
+ * - **ThreadSafety**: Unsafe
31717
+ *
31718
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BasePart#BindToCollisionSummaries)
31719
+ */
31720
+ BindToCollisionSummaries(this: BasePart, callback: Callback): RBXScriptConnection;
31439
31721
  /**
31440
31722
  * **Deprecated:** This method is deprecated. To break specific joints, iterate over the part's connections using `BasePart:GetJoints()` and call `Instance:Destroy()` on the joints you want to remove.
31441
31723
  *
@@ -31496,13 +31778,13 @@ interface BasePart extends PVInstance {
31496
31778
  */
31497
31779
  GetConnectedParts(this: BasePart, recursive?: boolean): Array<BasePart>;
31498
31780
  /**
31499
- * Return all Joints or Constraints that is connected to this Part.
31781
+ * Return all joints or constraints that are connected to this part.
31500
31782
  *
31501
31783
  * - **ThreadSafety**: Safe
31502
31784
  *
31503
31785
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BasePart#GetJoints)
31504
31786
  * @param this The abstract base class for in-world objects that physically interact.
31505
- * @returns An array of all Joints or Constraints connected to the Part.
31787
+ * @returns An array of all `JointInstances` or `Constraints` connected to this `BasePart`.
31506
31788
  */
31507
31789
  GetJoints(this: BasePart): Array<Constraint | JointInstance>;
31508
31790
  /**
@@ -31659,12 +31941,7 @@ interface BasePart extends PVInstance {
31659
31941
  */
31660
31942
  TorqueToAngularAcceleration(this: BasePart, torque: Vector3, angVelocity?: Vector3): Vector3;
31661
31943
  /**
31662
- * Note: It is highly recommended to use the newer `GeometryService:IntersectAsync` instead of this function. As well as having better performance and more features, the new function differs as follows: - The output is an array of instances rather than a single instance.
31663
- * - The input parts do not need to be parented to the scene, allowing for background operations.
31664
- * - When the `SplitApart` option is set to `true` (default), each distinct body will be returned in its own `PartOperation`.
31665
- * - All the returned parts are in the coordinate space of the main part, so their `PVInstance.Origin` positions are the same as the main part's. This keeps the vertices of the mesh in the same position relative to the object as before the operation, but it does also mean the `(0, 0, 0)` of a returned part is not necessarily at the center of its body.
31666
- *
31667
- * Creates a new `IntersectOperation` from the overlapping geometry of the part and the other parts in the given array.
31944
+ * Creates a new `IntersectOperation` from the overlapping geometry of the part and the other parts in the given array.
31668
31945
  *
31669
31946
  * - **ThreadSafety**: Unsafe
31670
31947
  * - **Tags**: Yields
@@ -31678,12 +31955,7 @@ interface BasePart extends PVInstance {
31678
31955
  */
31679
31956
  IntersectAsync(this: BasePart, parts: Array<Instance>, collisionfidelity?: CastsToEnum<Enum.CollisionFidelity>, renderFidelity?: CastsToEnum<Enum.RenderFidelity>): Instance | undefined;
31680
31957
  /**
31681
- * Note: It is highly recommended to use the newer `GeometryService:UnionAsync` instead of this function. As well as having better performance and more features, the new function differs as follows: - The output is an array of instances rather than a single instance.
31682
- * - The input parts do not need to be parented to the scene, allowing for background operations.
31683
- * - When the `SplitApart` option is set to `true` (default), each distinct body will be returned in its own `PartOperation`.
31684
- * - All the returned parts are in the coordinate space of the main part, so their `PVInstance.Origin` positions are the same as the main part's. This keeps the vertices of the mesh in the same position relative to the object as before the operation, but it does also mean the `(0, 0, 0)` of a returned part is not necessarily at the center of its body.
31685
- *
31686
- * Creates a new `UnionOperation` from the part, minus the geometry occupied by the parts in the given array.
31958
+ * Creates a new `UnionOperation` from the part, minus the geometry occupied by the parts in the given array.
31687
31959
  *
31688
31960
  * - **ThreadSafety**: Unsafe
31689
31961
  * - **Tags**: Yields
@@ -31697,15 +31969,7 @@ interface BasePart extends PVInstance {
31697
31969
  */
31698
31970
  SubtractAsync(this: BasePart, parts: Array<BasePart>, collisionfidelity?: CastsToEnum<Enum.CollisionFidelity>): UnionOperation | undefined;
31699
31971
  /**
31700
- * Note: It is highly recommended to use the newer `GeometryService:UnionAsync` instead of this function. As well as having better performance and more features, the new function differs as follows: - The output is an array of instances rather than a single instance.
31701
- * - The input parts do not need to be parented to the scene, allowing for background operations.
31702
- * - When the `SplitApart` option is set to `true` (default), each distinct body will be returned in its own `PartOperation`.
31703
- * - All the returned parts are in the coordinate space of the main part, so their `PVInstance.Origin` positions are the same as the main part's. This keeps the vertices of the mesh in the same position relative to the object as before the operation, but it does also mean the `(0, 0, 0)` of a returned part is not necessarily at the center of its body.
31704
- * ```
31705
- * Creates a new `UnionOperation` from the part, plus the geometry
31706
- * ```
31707
- *
31708
- * occupied by the parts in the given array.
31972
+ * Creates a new `UnionOperation` from the part, plus the geometry occupied by the parts in the given array.
31709
31973
  *
31710
31974
  * - **ThreadSafety**: Unsafe
31711
31975
  * - **Tags**: Yields
@@ -36307,7 +36571,7 @@ interface Player extends Instance {
36307
36571
  * @param this An object that represents a presently connected client to the experience.
36308
36572
  * @returns A boolean indicating whether the player is verified.
36309
36573
  */
36310
- IsVerified(this: Player): boolean;
36574
+ IsVerified(this: Player, level?: CastsToEnum<Enum.VerifiedLevel>): boolean;
36311
36575
  /**
36312
36576
  * Forcibly disconnect a player from the experience, optionally providing a message.
36313
36577
  *
@@ -44765,13 +45029,20 @@ interface TestService extends Instance {
44765
45029
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestService#CaptureScreenshotAsync)
44766
45030
  */
44767
45031
  CaptureScreenshotAsync(this: TestService, artifactName?: string, options?: object): unknown;
45032
+ /**
45033
+ * - **ThreadSafety**: Unsafe
45034
+ * - **Tags**: Yields
45035
+ *
45036
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestService#FetchTestControlsAsync)
45037
+ */
45038
+ FetchTestControlsAsync(this: TestService, category: string): unknown;
44768
45039
  /**
44769
45040
  * - **ThreadSafety**: Unsafe
44770
45041
  * - **Tags**: Yields
44771
45042
  *
44772
45043
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestService#RequestValidationAsync)
44773
45044
  */
44774
- RequestValidationAsync(this: TestService, artifactType: string, artifactName: string): unknown;
45045
+ RequestValidationAsync(this: TestService, artifactType: string, artifactName: string, timeoutSeconds?: number): unknown;
44775
45046
  /**
44776
45047
  * - **ThreadSafety**: Unsafe
44777
45048
  * - **Tags**: Yields
@@ -47405,12 +47676,14 @@ interface UIGradient extends UIComponent {
47405
47676
  Rotation: number;
47406
47677
  /**
47407
47678
  * - **ThreadSafety**: ReadSafe
47679
+ * - **Tags**: NotBrowsable
47408
47680
  *
47409
47681
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIGradient#Scale)
47410
47682
  */
47411
47683
  Scale: number;
47412
47684
  /**
47413
47685
  * - **ThreadSafety**: ReadSafe
47686
+ * - **Tags**: NotBrowsable
47414
47687
  *
47415
47688
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIGradient#TileMode)
47416
47689
  */
@@ -47425,6 +47698,7 @@ interface UIGradient extends UIComponent {
47425
47698
  Transparency: NumberSequence;
47426
47699
  /**
47427
47700
  * - **ThreadSafety**: ReadSafe
47701
+ * - **Tags**: NotBrowsable
47428
47702
  *
47429
47703
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIGradient#Type)
47430
47704
  */
@@ -47965,6 +48239,18 @@ interface UIShadow extends UIComponent {
47965
48239
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow#Enabled)
47966
48240
  */
47967
48241
  Enabled: boolean;
48242
+ /**
48243
+ * - **ThreadSafety**: ReadSafe
48244
+ *
48245
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow#Inset)
48246
+ */
48247
+ Inset: boolean;
48248
+ /**
48249
+ * - **ThreadSafety**: ReadSafe
48250
+ *
48251
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow#Mode)
48252
+ */
48253
+ Mode: Enum.ApplyShadowMode;
47968
48254
  /**
47969
48255
  * Moves the shadow relative to the parent's position.
47970
48256
  *
@@ -47973,6 +48259,12 @@ interface UIShadow extends UIComponent {
47973
48259
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow#Offset)
47974
48260
  */
47975
48261
  Offset: UDim2;
48262
+ /**
48263
+ * - **ThreadSafety**: ReadSafe
48264
+ *
48265
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow#ShowBehindParent)
48266
+ */
48267
+ ShowBehindParent: boolean;
47976
48268
  /**
47977
48269
  * Expands or shrinks the shadow relative to the parent's size.
47978
48270
  *
@@ -48147,7 +48439,7 @@ interface UnvalidatedAssetService extends Instance {
48147
48439
  readonly _nominal_UnvalidatedAssetService: unique symbol;
48148
48440
  }
48149
48441
  /**
48150
- * The UserGameSettings is a singleton class found inside of the `UserSettings` singleton. It holds various persistent settings relating to how the user wants to control their camera, and their character.
48442
+ * `UserGameSettings` is a singleton class found inside of the `UserSettings` singleton. It holds various persistent settings relating to how the user wants to control their camera, and their character.
48151
48443
  *
48152
48444
  * - **Tags**: NotCreatable, Service, NotReplicated
48153
48445
  *
@@ -48272,7 +48564,7 @@ interface UserGameSettings extends Instance {
48272
48564
  * - **ThreadSafety**: Unsafe
48273
48565
  *
48274
48566
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings#GetCameraYInvertValue)
48275
- * @param this The UserGameSettings is a singleton class found inside of the `UserSettings` singleton. It holds various persistent settings relating to how the user wants to control their camera, and their character.
48567
+ * @param this `UserGameSettings` is a singleton class found inside of the `UserSettings` singleton. It holds various persistent settings relating to how the user wants to control their camera, and their character.
48276
48568
  */
48277
48569
  GetCameraYInvertValue(this: UserGameSettings): number;
48278
48570
  /**
@@ -48281,7 +48573,7 @@ interface UserGameSettings extends Instance {
48281
48573
  * - **ThreadSafety**: Unsafe
48282
48574
  *
48283
48575
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings#GetOnboardingCompleted)
48284
- * @param this The UserGameSettings is a singleton class found inside of the `UserSettings` singleton. It holds various persistent settings relating to how the user wants to control their camera, and their character.
48576
+ * @param this `UserGameSettings` is a singleton class found inside of the `UserSettings` singleton. It holds various persistent settings relating to how the user wants to control their camera, and their character.
48285
48577
  * @param onboardingId The onboarding ID to inquire about.
48286
48578
  * @returns Whether or not the onboarding in particular has been completed yet.
48287
48579
  */
@@ -48292,7 +48584,7 @@ interface UserGameSettings extends Instance {
48292
48584
  * - **ThreadSafety**: Unsafe
48293
48585
  *
48294
48586
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings#InFullScreen)
48295
- * @param this The UserGameSettings is a singleton class found inside of the `UserSettings` singleton. It holds various persistent settings relating to how the user wants to control their camera, and their character.
48587
+ * @param this `UserGameSettings` is a singleton class found inside of the `UserSettings` singleton. It holds various persistent settings relating to how the user wants to control their camera, and their character.
48296
48588
  */
48297
48589
  InFullScreen(this: UserGameSettings): boolean;
48298
48590
  /**
@@ -48301,7 +48593,7 @@ interface UserGameSettings extends Instance {
48301
48593
  * - **ThreadSafety**: Unsafe
48302
48594
  *
48303
48595
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings#InStudioMode)
48304
- * @param this The UserGameSettings is a singleton class found inside of the `UserSettings` singleton. It holds various persistent settings relating to how the user wants to control their camera, and their character.
48596
+ * @param this `UserGameSettings` is a singleton class found inside of the `UserSettings` singleton. It holds various persistent settings relating to how the user wants to control their camera, and their character.
48305
48597
  */
48306
48598
  InStudioMode(this: UserGameSettings): boolean;
48307
48599
  /**
@@ -48310,7 +48602,7 @@ interface UserGameSettings extends Instance {
48310
48602
  * - **ThreadSafety**: Unsafe
48311
48603
  *
48312
48604
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings#SetCameraYInvertVisible)
48313
- * @param this The UserGameSettings is a singleton class found inside of the `UserSettings` singleton. It holds various persistent settings relating to how the user wants to control their camera, and their character.
48605
+ * @param this `UserGameSettings` is a singleton class found inside of the `UserSettings` singleton. It holds various persistent settings relating to how the user wants to control their camera, and their character.
48314
48606
  */
48315
48607
  SetCameraYInvertVisible(this: UserGameSettings): void;
48316
48608
  /**
@@ -48319,7 +48611,7 @@ interface UserGameSettings extends Instance {
48319
48611
  * - **ThreadSafety**: Unsafe
48320
48612
  *
48321
48613
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings#SetGamepadCameraSensitivityVisible)
48322
- * @param this The UserGameSettings is a singleton class found inside of the `UserSettings` singleton. It holds various persistent settings relating to how the user wants to control their camera, and their character.
48614
+ * @param this `UserGameSettings` is a singleton class found inside of the `UserSettings` singleton. It holds various persistent settings relating to how the user wants to control their camera, and their character.
48323
48615
  */
48324
48616
  SetGamepadCameraSensitivityVisible(this: UserGameSettings): void;
48325
48617
  /**
@@ -48328,7 +48620,7 @@ interface UserGameSettings extends Instance {
48328
48620
  * - **ThreadSafety**: Unsafe
48329
48621
  *
48330
48622
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings#SetOnboardingCompleted)
48331
- * @param this The UserGameSettings is a singleton class found inside of the `UserSettings` singleton. It holds various persistent settings relating to how the user wants to control their camera, and their character.
48623
+ * @param this `UserGameSettings` is a singleton class found inside of the `UserSettings` singleton. It holds various persistent settings relating to how the user wants to control their camera, and their character.
48332
48624
  * @param onboardingId The onboarding ID to set as completed.
48333
48625
  */
48334
48626
  SetOnboardingCompleted(this: UserGameSettings, onboardingId: string): void;