@rbxts/types 1.0.941 → 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.
- package/include/generated/None.d.ts +176 -95
- package/include/generated/PluginSecurity.d.ts +178 -14
- package/include/generated/enums.d.ts +176 -0
- package/package.json +1 -1
|
@@ -676,6 +676,7 @@ interface Instances extends Services, CreatableInstances {
|
|
|
676
676
|
LuaSourceContainer: LuaSourceContainer;
|
|
677
677
|
ManualSurfaceJointInstance: ManualSurfaceJointInstance;
|
|
678
678
|
MaterialImportData: MaterialImportData;
|
|
679
|
+
MemoryStoreDistributedCounter: MemoryStoreDistributedCounter;
|
|
679
680
|
MemoryStoreHashMap: MemoryStoreHashMap;
|
|
680
681
|
MemoryStoreHashMapPages: MemoryStoreHashMapPages;
|
|
681
682
|
MemoryStoreQueue: MemoryStoreQueue;
|
|
@@ -767,6 +768,7 @@ interface Objects extends Instances {
|
|
|
767
768
|
AnimationNode: AnimationNode;
|
|
768
769
|
Capture: Capture;
|
|
769
770
|
ConfigSnapshot: ConfigSnapshot;
|
|
771
|
+
DataModelDiff: DataModelDiff;
|
|
770
772
|
EditableImage: EditableImage;
|
|
771
773
|
EditableMesh: EditableMesh;
|
|
772
774
|
ExecutedRemoteCommand: ExecutedRemoteCommand;
|
|
@@ -1027,6 +1029,21 @@ interface ConfigSnapshot extends RBXObject {
|
|
|
1027
1029
|
*/
|
|
1028
1030
|
readonly UpdateAvailable: RBXScriptSignal<() => void>;
|
|
1029
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
|
+
}
|
|
1030
1047
|
/**
|
|
1031
1048
|
* Object which allows for the runtime creation and manipulation of images.
|
|
1032
1049
|
*
|
|
@@ -1292,28 +1309,28 @@ interface EditableMesh extends RBXObject {
|
|
|
1292
1309
|
*/
|
|
1293
1310
|
BatchAdd(this: EditableMesh, attr: CastsToEnum<Enum.MeshAttribute>, data: Array<unknown>): Array<unknown>;
|
|
1294
1311
|
/**
|
|
1295
|
-
* - **ThreadSafety**:
|
|
1312
|
+
* - **ThreadSafety**: Safe
|
|
1296
1313
|
* - **Tags**: CustomLuaState
|
|
1297
1314
|
*
|
|
1298
1315
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchGetFaceAttributes)
|
|
1299
1316
|
*/
|
|
1300
1317
|
BatchGetFaceAttributes(this: EditableMesh, attr: CastsToEnum<Enum.MeshAttribute>, faceIds: Array<unknown>): Array<unknown>;
|
|
1301
1318
|
/**
|
|
1302
|
-
* - **ThreadSafety**:
|
|
1319
|
+
* - **ThreadSafety**: Safe
|
|
1303
1320
|
* - **Tags**: CustomLuaState
|
|
1304
1321
|
*
|
|
1305
1322
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchGetValues)
|
|
1306
1323
|
*/
|
|
1307
1324
|
BatchGetValues(this: EditableMesh, ids: Array<unknown>): unknown;
|
|
1308
1325
|
/**
|
|
1309
|
-
* - **ThreadSafety**:
|
|
1326
|
+
* - **ThreadSafety**: Safe
|
|
1310
1327
|
* - **Tags**: CustomLuaState
|
|
1311
1328
|
*
|
|
1312
1329
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchGetVertexAttributes)
|
|
1313
1330
|
*/
|
|
1314
1331
|
BatchGetVertexAttributes(this: EditableMesh, attr: CastsToEnum<Enum.MeshAttribute>, vertexIds: Array<unknown>): Array<unknown>;
|
|
1315
1332
|
/**
|
|
1316
|
-
* - **ThreadSafety**:
|
|
1333
|
+
* - **ThreadSafety**: Safe
|
|
1317
1334
|
* - **Tags**: CustomLuaState
|
|
1318
1335
|
*
|
|
1319
1336
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchGetVertexFaceAttributes)
|
|
@@ -1349,7 +1366,6 @@ interface EditableMesh extends RBXObject {
|
|
|
1349
1366
|
BatchSetVertexFaceAttributes(this: EditableMesh, vertexIds: Array<unknown>, faceIds: Array<unknown>, attrIds: Array<unknown>): void;
|
|
1350
1367
|
/**
|
|
1351
1368
|
* - **ThreadSafety**: Unsafe
|
|
1352
|
-
* - **Tags**: NotBrowsable
|
|
1353
1369
|
*
|
|
1354
1370
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#Clear)
|
|
1355
1371
|
*/
|
|
@@ -1366,7 +1382,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1366
1382
|
/**
|
|
1367
1383
|
* Finds the closest point on the mesh's surface.
|
|
1368
1384
|
*
|
|
1369
|
-
* - **ThreadSafety**:
|
|
1385
|
+
* - **ThreadSafety**: Safe
|
|
1370
1386
|
*
|
|
1371
1387
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#FindClosestPointOnSurface)
|
|
1372
1388
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1381,7 +1397,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1381
1397
|
/**
|
|
1382
1398
|
* Finds the closest vertex to a specific point in space.
|
|
1383
1399
|
*
|
|
1384
|
-
* - **ThreadSafety**:
|
|
1400
|
+
* - **ThreadSafety**: Safe
|
|
1385
1401
|
*
|
|
1386
1402
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#FindClosestVertex)
|
|
1387
1403
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1392,7 +1408,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1392
1408
|
/**
|
|
1393
1409
|
* Finds all vertices within a specific sphere.
|
|
1394
1410
|
*
|
|
1395
|
-
* - **ThreadSafety**:
|
|
1411
|
+
* - **ThreadSafety**: Safe
|
|
1396
1412
|
*
|
|
1397
1413
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#FindVerticesWithinSphere)
|
|
1398
1414
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1404,7 +1420,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1404
1420
|
/**
|
|
1405
1421
|
* Returns a list of faces adjacent to a given face.
|
|
1406
1422
|
*
|
|
1407
|
-
* - **ThreadSafety**:
|
|
1423
|
+
* - **ThreadSafety**: Safe
|
|
1408
1424
|
*
|
|
1409
1425
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetAdjacentFaces)
|
|
1410
1426
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1415,7 +1431,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1415
1431
|
/**
|
|
1416
1432
|
* Returns a list of vertices adjacent to a given vertex.
|
|
1417
1433
|
*
|
|
1418
|
-
* - **ThreadSafety**:
|
|
1434
|
+
* - **ThreadSafety**: Safe
|
|
1419
1435
|
*
|
|
1420
1436
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetAdjacentVertices)
|
|
1421
1437
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1426,7 +1442,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1426
1442
|
/**
|
|
1427
1443
|
* Finds the bone ID of the bone with the given name.
|
|
1428
1444
|
*
|
|
1429
|
-
* - **ThreadSafety**:
|
|
1445
|
+
* - **ThreadSafety**: Safe
|
|
1430
1446
|
*
|
|
1431
1447
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneByName)
|
|
1432
1448
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1437,7 +1453,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1437
1453
|
/**
|
|
1438
1454
|
* Returns the initial `CFrame` of the bone in the bind pose of the mesh.
|
|
1439
1455
|
*
|
|
1440
|
-
* - **ThreadSafety**:
|
|
1456
|
+
* - **ThreadSafety**: Safe
|
|
1441
1457
|
*
|
|
1442
1458
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneCFrame)
|
|
1443
1459
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1448,7 +1464,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1448
1464
|
/**
|
|
1449
1465
|
* Returns `true` if the bone is virtual.
|
|
1450
1466
|
*
|
|
1451
|
-
* - **ThreadSafety**:
|
|
1467
|
+
* - **ThreadSafety**: Safe
|
|
1452
1468
|
*
|
|
1453
1469
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneIsVirtual)
|
|
1454
1470
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1459,7 +1475,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1459
1475
|
/**
|
|
1460
1476
|
* Returns the bone name.
|
|
1461
1477
|
*
|
|
1462
|
-
* - **ThreadSafety**:
|
|
1478
|
+
* - **ThreadSafety**: Safe
|
|
1463
1479
|
*
|
|
1464
1480
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneName)
|
|
1465
1481
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1470,7 +1486,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1470
1486
|
/**
|
|
1471
1487
|
* Returns the parent bone ID, if any.
|
|
1472
1488
|
*
|
|
1473
|
-
* - **ThreadSafety**:
|
|
1489
|
+
* - **ThreadSafety**: Safe
|
|
1474
1490
|
*
|
|
1475
1491
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneParent)
|
|
1476
1492
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1481,7 +1497,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1481
1497
|
/**
|
|
1482
1498
|
* Returns all bones of the mesh.
|
|
1483
1499
|
*
|
|
1484
|
-
* - **ThreadSafety**:
|
|
1500
|
+
* - **ThreadSafety**: Safe
|
|
1485
1501
|
*
|
|
1486
1502
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBones)
|
|
1487
1503
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1489,7 +1505,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1489
1505
|
*/
|
|
1490
1506
|
GetBones(this: EditableMesh): Array<unknown>;
|
|
1491
1507
|
/**
|
|
1492
|
-
* - **ThreadSafety**:
|
|
1508
|
+
* - **ThreadSafety**: Safe
|
|
1493
1509
|
*
|
|
1494
1510
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetCenter)
|
|
1495
1511
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1499,7 +1515,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1499
1515
|
/**
|
|
1500
1516
|
* Returns the color for the given color ID.
|
|
1501
1517
|
*
|
|
1502
|
-
* - **ThreadSafety**:
|
|
1518
|
+
* - **ThreadSafety**: Safe
|
|
1503
1519
|
*
|
|
1504
1520
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetColor)
|
|
1505
1521
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1510,7 +1526,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1510
1526
|
/**
|
|
1511
1527
|
* Returns the color alpha (transparency) at the given color ID.
|
|
1512
1528
|
*
|
|
1513
|
-
* - **ThreadSafety**:
|
|
1529
|
+
* - **ThreadSafety**: Safe
|
|
1514
1530
|
*
|
|
1515
1531
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetColorAlpha)
|
|
1516
1532
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1521,7 +1537,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1521
1537
|
/**
|
|
1522
1538
|
* Returns all colors of the mesh.
|
|
1523
1539
|
*
|
|
1524
|
-
* - **ThreadSafety**:
|
|
1540
|
+
* - **ThreadSafety**: Safe
|
|
1525
1541
|
* - **Tags**: CustomLuaState
|
|
1526
1542
|
*
|
|
1527
1543
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetColors)
|
|
@@ -1532,7 +1548,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1532
1548
|
/**
|
|
1533
1549
|
* Returns the face's color IDs for the vertices on the face.
|
|
1534
1550
|
*
|
|
1535
|
-
* - **ThreadSafety**:
|
|
1551
|
+
* - **ThreadSafety**: Safe
|
|
1536
1552
|
* - **Tags**: CustomLuaState
|
|
1537
1553
|
*
|
|
1538
1554
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFaceColors)
|
|
@@ -1544,7 +1560,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1544
1560
|
/**
|
|
1545
1561
|
* Returns the face's normal IDs for the vertices on the face.
|
|
1546
1562
|
*
|
|
1547
|
-
* - **ThreadSafety**:
|
|
1563
|
+
* - **ThreadSafety**: Safe
|
|
1548
1564
|
* - **Tags**: CustomLuaState
|
|
1549
1565
|
*
|
|
1550
1566
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFaceNormals)
|
|
@@ -1556,7 +1572,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1556
1572
|
/**
|
|
1557
1573
|
* Returns the face's UV IDs for the vertices on the face.
|
|
1558
1574
|
*
|
|
1559
|
-
* - **ThreadSafety**:
|
|
1575
|
+
* - **ThreadSafety**: Safe
|
|
1560
1576
|
* - **Tags**: CustomLuaState
|
|
1561
1577
|
*
|
|
1562
1578
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFaceUVs)
|
|
@@ -1568,7 +1584,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1568
1584
|
/**
|
|
1569
1585
|
* Returns the face's vertex IDs.
|
|
1570
1586
|
*
|
|
1571
|
-
* - **ThreadSafety**:
|
|
1587
|
+
* - **ThreadSafety**: Safe
|
|
1572
1588
|
* - **Tags**: CustomLuaState
|
|
1573
1589
|
*
|
|
1574
1590
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFaceVertices)
|
|
@@ -1580,7 +1596,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1580
1596
|
/**
|
|
1581
1597
|
* Returns all faces of the mesh.
|
|
1582
1598
|
*
|
|
1583
|
-
* - **ThreadSafety**:
|
|
1599
|
+
* - **ThreadSafety**: Safe
|
|
1584
1600
|
* - **Tags**: CustomLuaState
|
|
1585
1601
|
*
|
|
1586
1602
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFaces)
|
|
@@ -1593,7 +1609,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1593
1609
|
*
|
|
1594
1610
|
* Returns a list of faces that use a given attribute ID.
|
|
1595
1611
|
*
|
|
1596
|
-
* - **ThreadSafety**:
|
|
1612
|
+
* - **ThreadSafety**: Safe
|
|
1597
1613
|
* - **Tags**:
|
|
1598
1614
|
*
|
|
1599
1615
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithAttribute)
|
|
@@ -1607,7 +1623,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1607
1623
|
/**
|
|
1608
1624
|
* Returns an array of face IDs that use the given color ID.
|
|
1609
1625
|
*
|
|
1610
|
-
* - **ThreadSafety**:
|
|
1626
|
+
* - **ThreadSafety**: Safe
|
|
1611
1627
|
* - **Tags**: CustomLuaState
|
|
1612
1628
|
*
|
|
1613
1629
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithColor)
|
|
@@ -1619,7 +1635,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1619
1635
|
/**
|
|
1620
1636
|
* Returns an array of face IDs that use the given normal ID.
|
|
1621
1637
|
*
|
|
1622
|
-
* - **ThreadSafety**:
|
|
1638
|
+
* - **ThreadSafety**: Safe
|
|
1623
1639
|
* - **Tags**: CustomLuaState
|
|
1624
1640
|
*
|
|
1625
1641
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithNormal)
|
|
@@ -1631,7 +1647,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1631
1647
|
/**
|
|
1632
1648
|
* Returns an array of face IDs that use the given UV ID.
|
|
1633
1649
|
*
|
|
1634
|
-
* - **ThreadSafety**:
|
|
1650
|
+
* - **ThreadSafety**: Safe
|
|
1635
1651
|
* - **Tags**: CustomLuaState
|
|
1636
1652
|
*
|
|
1637
1653
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithUV)
|
|
@@ -1643,7 +1659,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1643
1659
|
/**
|
|
1644
1660
|
* Returns bone IDs and bone `CFrames` for all bones in a specific FACS corrective pose.
|
|
1645
1661
|
*
|
|
1646
|
-
* - **ThreadSafety**:
|
|
1662
|
+
* - **ThreadSafety**: Safe
|
|
1647
1663
|
*
|
|
1648
1664
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsCorrectivePose)
|
|
1649
1665
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1654,7 +1670,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1654
1670
|
/**
|
|
1655
1671
|
* Returns all FACS corrective poses that are in use.
|
|
1656
1672
|
*
|
|
1657
|
-
* - **ThreadSafety**:
|
|
1673
|
+
* - **ThreadSafety**: Safe
|
|
1658
1674
|
*
|
|
1659
1675
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsCorrectivePoses)
|
|
1660
1676
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1664,7 +1680,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1664
1680
|
/**
|
|
1665
1681
|
* Returns bone IDs and bone `CFrames` for all bones in a specific FACS action unit.
|
|
1666
1682
|
*
|
|
1667
|
-
* - **ThreadSafety**:
|
|
1683
|
+
* - **ThreadSafety**: Safe
|
|
1668
1684
|
*
|
|
1669
1685
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsPose)
|
|
1670
1686
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1675,7 +1691,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1675
1691
|
/**
|
|
1676
1692
|
* Returns all FACS action units that have poses defined.
|
|
1677
1693
|
*
|
|
1678
|
-
* - **ThreadSafety**:
|
|
1694
|
+
* - **ThreadSafety**: Safe
|
|
1679
1695
|
*
|
|
1680
1696
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsPoses)
|
|
1681
1697
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1685,7 +1701,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1685
1701
|
/**
|
|
1686
1702
|
* Returns the normal vector for the given normal ID.
|
|
1687
1703
|
*
|
|
1688
|
-
* - **ThreadSafety**:
|
|
1704
|
+
* - **ThreadSafety**: Safe
|
|
1689
1705
|
*
|
|
1690
1706
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetNormal)
|
|
1691
1707
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1696,7 +1712,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1696
1712
|
/**
|
|
1697
1713
|
* Returns all normals of the mesh.
|
|
1698
1714
|
*
|
|
1699
|
-
* - **ThreadSafety**:
|
|
1715
|
+
* - **ThreadSafety**: Safe
|
|
1700
1716
|
* - **Tags**: CustomLuaState
|
|
1701
1717
|
*
|
|
1702
1718
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetNormals)
|
|
@@ -1707,7 +1723,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1707
1723
|
/**
|
|
1708
1724
|
* Gets the position of a vertex.
|
|
1709
1725
|
*
|
|
1710
|
-
* - **ThreadSafety**:
|
|
1726
|
+
* - **ThreadSafety**: Safe
|
|
1711
1727
|
*
|
|
1712
1728
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetPosition)
|
|
1713
1729
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1716,7 +1732,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1716
1732
|
*/
|
|
1717
1733
|
GetPosition(this: EditableMesh, vertexId: number): Vector3;
|
|
1718
1734
|
/**
|
|
1719
|
-
* - **ThreadSafety**:
|
|
1735
|
+
* - **ThreadSafety**: Safe
|
|
1720
1736
|
*
|
|
1721
1737
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetSize)
|
|
1722
1738
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1726,7 +1742,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1726
1742
|
/**
|
|
1727
1743
|
* Returns UV coordinates at the given UV ID.
|
|
1728
1744
|
*
|
|
1729
|
-
* - **ThreadSafety**:
|
|
1745
|
+
* - **ThreadSafety**: Safe
|
|
1730
1746
|
*
|
|
1731
1747
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetUV)
|
|
1732
1748
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1737,7 +1753,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1737
1753
|
/**
|
|
1738
1754
|
* Returns all UVs of the mesh.
|
|
1739
1755
|
*
|
|
1740
|
-
* - **ThreadSafety**:
|
|
1756
|
+
* - **ThreadSafety**: Safe
|
|
1741
1757
|
* - **Tags**: CustomLuaState
|
|
1742
1758
|
*
|
|
1743
1759
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetUVs)
|
|
@@ -1748,7 +1764,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1748
1764
|
/**
|
|
1749
1765
|
* Returns skinning blend weights for each bone that is associated with the vertex.
|
|
1750
1766
|
*
|
|
1751
|
-
* - **ThreadSafety**:
|
|
1767
|
+
* - **ThreadSafety**: Safe
|
|
1752
1768
|
*
|
|
1753
1769
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexBoneWeights)
|
|
1754
1770
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1759,7 +1775,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1759
1775
|
/**
|
|
1760
1776
|
* Returns all bone IDs that are associated with the vertex for skinning.
|
|
1761
1777
|
*
|
|
1762
|
-
* - **ThreadSafety**:
|
|
1778
|
+
* - **ThreadSafety**: Safe
|
|
1763
1779
|
*
|
|
1764
1780
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexBones)
|
|
1765
1781
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1770,7 +1786,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1770
1786
|
/**
|
|
1771
1787
|
* Returns the color IDs of the faces attached to the given vertex.
|
|
1772
1788
|
*
|
|
1773
|
-
* - **ThreadSafety**:
|
|
1789
|
+
* - **ThreadSafety**: Safe
|
|
1774
1790
|
* - **Tags**: CustomLuaState
|
|
1775
1791
|
*
|
|
1776
1792
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexColors)
|
|
@@ -1782,7 +1798,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1782
1798
|
/**
|
|
1783
1799
|
* Returns the color ID of a vertex/face pair.
|
|
1784
1800
|
*
|
|
1785
|
-
* - **ThreadSafety**:
|
|
1801
|
+
* - **ThreadSafety**: Safe
|
|
1786
1802
|
*
|
|
1787
1803
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceColor)
|
|
1788
1804
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1794,7 +1810,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1794
1810
|
/**
|
|
1795
1811
|
* Returns the normal ID of a vertex/face pair.
|
|
1796
1812
|
*
|
|
1797
|
-
* - **ThreadSafety**:
|
|
1813
|
+
* - **ThreadSafety**: Safe
|
|
1798
1814
|
*
|
|
1799
1815
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceNormal)
|
|
1800
1816
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1806,7 +1822,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1806
1822
|
/**
|
|
1807
1823
|
* Returns the UV ID of a vertex/face pair.
|
|
1808
1824
|
*
|
|
1809
|
-
* - **ThreadSafety**:
|
|
1825
|
+
* - **ThreadSafety**: Safe
|
|
1810
1826
|
*
|
|
1811
1827
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceUV)
|
|
1812
1828
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1818,7 +1834,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1818
1834
|
/**
|
|
1819
1835
|
* Returns the face IDs of the faces attached to the given vertex.
|
|
1820
1836
|
*
|
|
1821
|
-
* - **ThreadSafety**:
|
|
1837
|
+
* - **ThreadSafety**: Safe
|
|
1822
1838
|
* - **Tags**: CustomLuaState
|
|
1823
1839
|
*
|
|
1824
1840
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaces)
|
|
@@ -1830,7 +1846,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1830
1846
|
/**
|
|
1831
1847
|
* Returns the normal IDs of the faces attached to the given vertex.
|
|
1832
1848
|
*
|
|
1833
|
-
* - **ThreadSafety**:
|
|
1849
|
+
* - **ThreadSafety**: Safe
|
|
1834
1850
|
* - **Tags**: CustomLuaState
|
|
1835
1851
|
*
|
|
1836
1852
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexNormals)
|
|
@@ -1842,7 +1858,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1842
1858
|
/**
|
|
1843
1859
|
* Returns the UV IDs of the faces attached to the given vertex.
|
|
1844
1860
|
*
|
|
1845
|
-
* - **ThreadSafety**:
|
|
1861
|
+
* - **ThreadSafety**: Safe
|
|
1846
1862
|
* - **Tags**: CustomLuaState
|
|
1847
1863
|
*
|
|
1848
1864
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexUVs)
|
|
@@ -1854,7 +1870,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1854
1870
|
/**
|
|
1855
1871
|
* Returns all vertices as a list of stable vertex IDs.
|
|
1856
1872
|
*
|
|
1857
|
-
* - **ThreadSafety**:
|
|
1873
|
+
* - **ThreadSafety**: Safe
|
|
1858
1874
|
*
|
|
1859
1875
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertices)
|
|
1860
1876
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -1866,7 +1882,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1866
1882
|
*
|
|
1867
1883
|
* Returns a list of vertices that use a given attribute ID.
|
|
1868
1884
|
*
|
|
1869
|
-
* - **ThreadSafety**:
|
|
1885
|
+
* - **ThreadSafety**: Safe
|
|
1870
1886
|
* - **Tags**:
|
|
1871
1887
|
*
|
|
1872
1888
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithAttribute)
|
|
@@ -1880,7 +1896,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1880
1896
|
/**
|
|
1881
1897
|
* Returns an array of vertex IDs that use the given color ID.
|
|
1882
1898
|
*
|
|
1883
|
-
* - **ThreadSafety**:
|
|
1899
|
+
* - **ThreadSafety**: Safe
|
|
1884
1900
|
* - **Tags**: CustomLuaState
|
|
1885
1901
|
*
|
|
1886
1902
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithColor)
|
|
@@ -1892,7 +1908,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1892
1908
|
/**
|
|
1893
1909
|
* Returns an array of vertex IDs that use the given normal ID.
|
|
1894
1910
|
*
|
|
1895
|
-
* - **ThreadSafety**:
|
|
1911
|
+
* - **ThreadSafety**: Safe
|
|
1896
1912
|
* - **Tags**: CustomLuaState
|
|
1897
1913
|
*
|
|
1898
1914
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithNormal)
|
|
@@ -1904,7 +1920,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1904
1920
|
/**
|
|
1905
1921
|
* Returns an array of vertex IDs that use the given UV ID.
|
|
1906
1922
|
*
|
|
1907
|
-
* - **ThreadSafety**:
|
|
1923
|
+
* - **ThreadSafety**: Safe
|
|
1908
1924
|
* - **Tags**: CustomLuaState
|
|
1909
1925
|
*
|
|
1910
1926
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithUV)
|
|
@@ -1936,7 +1952,7 @@ interface EditableMesh extends RBXObject {
|
|
|
1936
1952
|
*/
|
|
1937
1953
|
MergeVertices(this: EditableMesh, mergeTolerance: number): unknown;
|
|
1938
1954
|
/**
|
|
1939
|
-
* - **ThreadSafety**:
|
|
1955
|
+
* - **ThreadSafety**: Safe
|
|
1940
1956
|
*
|
|
1941
1957
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#RaycastLocal)
|
|
1942
1958
|
* @param this Object which allows for the runtime creation and manipulation of meshes.
|
|
@@ -9702,12 +9718,6 @@ interface RootImportData extends BaseImportData {
|
|
|
9702
9718
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RootImportData#UsesCages)
|
|
9703
9719
|
*/
|
|
9704
9720
|
UsesCages: boolean;
|
|
9705
|
-
/**
|
|
9706
|
-
* - **ThreadSafety**: ReadSafe
|
|
9707
|
-
*
|
|
9708
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RootImportData#ValidateUgcBody)
|
|
9709
|
-
*/
|
|
9710
|
-
ValidateUgcBody: boolean;
|
|
9711
9721
|
/**
|
|
9712
9722
|
* - **ThreadSafety**: ReadSafe
|
|
9713
9723
|
*
|
|
@@ -10194,6 +10204,8 @@ interface WrapLayer extends BaseWrap {
|
|
|
10194
10204
|
*/
|
|
10195
10205
|
readonly _nominal_WrapLayer: unique symbol;
|
|
10196
10206
|
/**
|
|
10207
|
+
* Determines whether this WrapLayer automatically transfers skinning data from the underlying body mesh to the clothing mesh.
|
|
10208
|
+
*
|
|
10197
10209
|
* - **ThreadSafety**: ReadSafe
|
|
10198
10210
|
*
|
|
10199
10211
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapLayer#AutoSkin)
|
|
@@ -18617,10 +18629,16 @@ interface GlobalDataStore extends Instance {
|
|
|
18617
18629
|
*/
|
|
18618
18630
|
OnUpdate(this: GlobalDataStore, key: string, callback: Callback): RBXScriptConnection;
|
|
18619
18631
|
/**
|
|
18632
|
+
* Returns the values of multiple keys from the data store in a single request.
|
|
18633
|
+
*
|
|
18620
18634
|
* - **ThreadSafety**: Unsafe
|
|
18621
18635
|
* - **Tags**: Yields
|
|
18622
18636
|
*
|
|
18623
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.
|
|
18624
18642
|
*/
|
|
18625
18643
|
BatchGetAsync(this: GlobalDataStore, keys: Array<unknown>, options?: object): object;
|
|
18626
18644
|
/**
|
|
@@ -20494,6 +20512,8 @@ interface TextLabel extends GuiLabel {
|
|
|
20494
20512
|
TextYAlignment: Enum.TextYAlignment;
|
|
20495
20513
|
}
|
|
20496
20514
|
/**
|
|
20515
|
+
* A `GuiObject` that automatically displays the keybinding for an action as text or an image.
|
|
20516
|
+
*
|
|
20497
20517
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel)
|
|
20498
20518
|
*/
|
|
20499
20519
|
interface InputActionLabel extends GuiObject {
|
|
@@ -20506,30 +20526,40 @@ interface InputActionLabel extends GuiObject {
|
|
|
20506
20526
|
*/
|
|
20507
20527
|
readonly _nominal_InputActionLabel: unique symbol;
|
|
20508
20528
|
/**
|
|
20529
|
+
* Determines the font used to render text.
|
|
20530
|
+
*
|
|
20509
20531
|
* - **ThreadSafety**: ReadSafe
|
|
20510
20532
|
*
|
|
20511
20533
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#FontFace)
|
|
20512
20534
|
*/
|
|
20513
20535
|
FontFace: Font;
|
|
20514
20536
|
/**
|
|
20537
|
+
* Determines how rendered label images will be colorized.
|
|
20538
|
+
*
|
|
20515
20539
|
* - **ThreadSafety**: ReadSafe
|
|
20516
20540
|
*
|
|
20517
20541
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#ImageColor3)
|
|
20518
20542
|
*/
|
|
20519
20543
|
ImageColor3: Color3;
|
|
20520
20544
|
/**
|
|
20545
|
+
* Determines the transparency of rendered label images.
|
|
20546
|
+
*
|
|
20521
20547
|
* - **ThreadSafety**: ReadSafe
|
|
20522
20548
|
*
|
|
20523
20549
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#ImageTransparency)
|
|
20524
20550
|
*/
|
|
20525
20551
|
ImageTransparency: number;
|
|
20526
20552
|
/**
|
|
20553
|
+
* The `InputAction` whose preferred binding this label displays.
|
|
20554
|
+
*
|
|
20527
20555
|
* - **ThreadSafety**: ReadSafe
|
|
20528
20556
|
*
|
|
20529
20557
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#InputAction)
|
|
20530
20558
|
*/
|
|
20531
20559
|
InputAction: InputAction | undefined;
|
|
20532
20560
|
/**
|
|
20561
|
+
* Read-only. The resolved image content currently being displayed.
|
|
20562
|
+
*
|
|
20533
20563
|
* - **ThreadSafety**: ReadSafe
|
|
20534
20564
|
* - **Tags**: NotReplicated
|
|
20535
20565
|
*
|
|
@@ -20537,6 +20567,8 @@ interface InputActionLabel extends GuiObject {
|
|
|
20537
20567
|
*/
|
|
20538
20568
|
readonly ResolvedImageContent: Content;
|
|
20539
20569
|
/**
|
|
20570
|
+
* The resolved key name string currently being displayed.
|
|
20571
|
+
*
|
|
20540
20572
|
* - **ThreadSafety**: ReadSafe
|
|
20541
20573
|
* - **Tags**: NotReplicated
|
|
20542
20574
|
*
|
|
@@ -20544,36 +20576,48 @@ interface InputActionLabel extends GuiObject {
|
|
|
20544
20576
|
*/
|
|
20545
20577
|
readonly ResolvedText: string;
|
|
20546
20578
|
/**
|
|
20579
|
+
* Determines the color of rendered text.
|
|
20580
|
+
*
|
|
20547
20581
|
* - **ThreadSafety**: ReadSafe
|
|
20548
20582
|
*
|
|
20549
20583
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#TextColor3)
|
|
20550
20584
|
*/
|
|
20551
20585
|
TextColor3: Color3;
|
|
20552
20586
|
/**
|
|
20587
|
+
* Determines the line height of text in offsets.
|
|
20588
|
+
*
|
|
20553
20589
|
* - **ThreadSafety**: ReadSafe
|
|
20554
20590
|
*
|
|
20555
20591
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#TextSize)
|
|
20556
20592
|
*/
|
|
20557
20593
|
TextSize: number;
|
|
20558
20594
|
/**
|
|
20595
|
+
* Determines the transparency of rendered text.
|
|
20596
|
+
*
|
|
20559
20597
|
* - **ThreadSafety**: ReadSafe
|
|
20560
20598
|
*
|
|
20561
20599
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#TextTransparency)
|
|
20562
20600
|
*/
|
|
20563
20601
|
TextTransparency: number;
|
|
20564
20602
|
/**
|
|
20603
|
+
* Determines if text wraps to multiple lines within the label's space.
|
|
20604
|
+
*
|
|
20565
20605
|
* - **ThreadSafety**: ReadSafe
|
|
20566
20606
|
*
|
|
20567
20607
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#TextWrapped)
|
|
20568
20608
|
*/
|
|
20569
20609
|
TextWrapped: boolean;
|
|
20570
20610
|
/**
|
|
20611
|
+
* Determines the horizontal alignment of rendered text.
|
|
20612
|
+
*
|
|
20571
20613
|
* - **ThreadSafety**: ReadSafe
|
|
20572
20614
|
*
|
|
20573
20615
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#TextXAlignment)
|
|
20574
20616
|
*/
|
|
20575
20617
|
TextXAlignment: Enum.TextXAlignment;
|
|
20576
20618
|
/**
|
|
20619
|
+
* Determines the vertical alignment of rendered text.
|
|
20620
|
+
*
|
|
20577
20621
|
* - **ThreadSafety**: ReadSafe
|
|
20578
20622
|
*
|
|
20579
20623
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#TextYAlignment)
|
|
@@ -23674,6 +23718,8 @@ interface HarmonyService extends Instance {
|
|
|
23674
23718
|
readonly _nominal_HarmonyService: unique symbol;
|
|
23675
23719
|
}
|
|
23676
23720
|
/**
|
|
23721
|
+
* Provides methods which return Luau heap memory usage summaries on client and server.
|
|
23722
|
+
*
|
|
23677
23723
|
* - **Tags**: NotCreatable, Service
|
|
23678
23724
|
*
|
|
23679
23725
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HeapProfilerService)
|
|
@@ -28912,7 +28958,7 @@ interface BaseScript extends LuaSourceContainer {
|
|
|
28912
28958
|
*/
|
|
28913
28959
|
readonly _nominal_BaseScript: unique symbol;
|
|
28914
28960
|
/**
|
|
28915
|
-
* Determines whether a `BaseScript`
|
|
28961
|
+
* Determines whether a `BaseScript` runs or not.
|
|
28916
28962
|
*
|
|
28917
28963
|
* - **ThreadSafety**: ReadSafe
|
|
28918
28964
|
*
|
|
@@ -28920,7 +28966,7 @@ interface BaseScript extends LuaSourceContainer {
|
|
|
28920
28966
|
*/
|
|
28921
28967
|
Disabled: boolean;
|
|
28922
28968
|
/**
|
|
28923
|
-
* Determines whether a `BaseScript`
|
|
28969
|
+
* Determines whether a `BaseScript` runs or not.
|
|
28924
28970
|
*
|
|
28925
28971
|
* - **ThreadSafety**: ReadSafe
|
|
28926
28972
|
* - **Tags**: NotReplicated
|
|
@@ -28942,7 +28988,7 @@ interface BaseScript extends LuaSourceContainer {
|
|
|
28942
28988
|
*/
|
|
28943
28989
|
LinkedSource: ContentId;
|
|
28944
28990
|
/**
|
|
28945
|
-
* Determines the context under which the script
|
|
28991
|
+
* Determines the context under which the script runs.
|
|
28946
28992
|
*
|
|
28947
28993
|
* - **ThreadSafety**: ReadSafe
|
|
28948
28994
|
*
|
|
@@ -29904,6 +29950,35 @@ interface MaterialVariant extends Instance {
|
|
|
29904
29950
|
*/
|
|
29905
29951
|
StudsPerTile: number;
|
|
29906
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
|
+
}
|
|
29907
29982
|
/**
|
|
29908
29983
|
* Provides access to a hash map within `MemoryStoreService`.
|
|
29909
29984
|
*
|
|
@@ -30068,6 +30143,12 @@ interface MemoryStoreService extends Instance {
|
|
|
30068
30143
|
* @deprecated
|
|
30069
30144
|
*/
|
|
30070
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;
|
|
30071
30152
|
/**
|
|
30072
30153
|
* Returns a `MemoryStoreHashMap` instance for the provided name.
|
|
30073
30154
|
*
|
|
@@ -31631,6 +31712,12 @@ interface BasePart extends PVInstance {
|
|
|
31631
31712
|
* @param position The position, in world space, to apply the impulse.
|
|
31632
31713
|
*/
|
|
31633
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;
|
|
31634
31721
|
/**
|
|
31635
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.
|
|
31636
31723
|
*
|
|
@@ -31691,13 +31778,13 @@ interface BasePart extends PVInstance {
|
|
|
31691
31778
|
*/
|
|
31692
31779
|
GetConnectedParts(this: BasePart, recursive?: boolean): Array<BasePart>;
|
|
31693
31780
|
/**
|
|
31694
|
-
* Return all
|
|
31781
|
+
* Return all joints or constraints that are connected to this part.
|
|
31695
31782
|
*
|
|
31696
31783
|
* - **ThreadSafety**: Safe
|
|
31697
31784
|
*
|
|
31698
31785
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BasePart#GetJoints)
|
|
31699
31786
|
* @param this The abstract base class for in-world objects that physically interact.
|
|
31700
|
-
* @returns An array of all
|
|
31787
|
+
* @returns An array of all `JointInstances` or `Constraints` connected to this `BasePart`.
|
|
31701
31788
|
*/
|
|
31702
31789
|
GetJoints(this: BasePart): Array<Constraint | JointInstance>;
|
|
31703
31790
|
/**
|
|
@@ -31854,12 +31941,7 @@ interface BasePart extends PVInstance {
|
|
|
31854
31941
|
*/
|
|
31855
31942
|
TorqueToAngularAcceleration(this: BasePart, torque: Vector3, angVelocity?: Vector3): Vector3;
|
|
31856
31943
|
/**
|
|
31857
|
-
*
|
|
31858
|
-
* - The input parts do not need to be parented to the scene, allowing for background operations.
|
|
31859
|
-
* - When the `SplitApart` option is set to `true` (default), each distinct body will be returned in its own `PartOperation`.
|
|
31860
|
-
* - 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.
|
|
31861
|
-
*
|
|
31862
|
-
* 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.
|
|
31863
31945
|
*
|
|
31864
31946
|
* - **ThreadSafety**: Unsafe
|
|
31865
31947
|
* - **Tags**: Yields
|
|
@@ -31873,12 +31955,7 @@ interface BasePart extends PVInstance {
|
|
|
31873
31955
|
*/
|
|
31874
31956
|
IntersectAsync(this: BasePart, parts: Array<Instance>, collisionfidelity?: CastsToEnum<Enum.CollisionFidelity>, renderFidelity?: CastsToEnum<Enum.RenderFidelity>): Instance | undefined;
|
|
31875
31957
|
/**
|
|
31876
|
-
*
|
|
31877
|
-
* - The input parts do not need to be parented to the scene, allowing for background operations.
|
|
31878
|
-
* - When the `SplitApart` option is set to `true` (default), each distinct body will be returned in its own `PartOperation`.
|
|
31879
|
-
* - 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.
|
|
31880
|
-
*
|
|
31881
|
-
* 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.
|
|
31882
31959
|
*
|
|
31883
31960
|
* - **ThreadSafety**: Unsafe
|
|
31884
31961
|
* - **Tags**: Yields
|
|
@@ -31892,15 +31969,7 @@ interface BasePart extends PVInstance {
|
|
|
31892
31969
|
*/
|
|
31893
31970
|
SubtractAsync(this: BasePart, parts: Array<BasePart>, collisionfidelity?: CastsToEnum<Enum.CollisionFidelity>): UnionOperation | undefined;
|
|
31894
31971
|
/**
|
|
31895
|
-
*
|
|
31896
|
-
* - The input parts do not need to be parented to the scene, allowing for background operations.
|
|
31897
|
-
* - When the `SplitApart` option is set to `true` (default), each distinct body will be returned in its own `PartOperation`.
|
|
31898
|
-
* - 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.
|
|
31899
|
-
* ```
|
|
31900
|
-
* Creates a new `UnionOperation` from the part, plus the geometry
|
|
31901
|
-
* ```
|
|
31902
|
-
*
|
|
31903
|
-
* 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.
|
|
31904
31973
|
*
|
|
31905
31974
|
* - **ThreadSafety**: Unsafe
|
|
31906
31975
|
* - **Tags**: Yields
|
|
@@ -36502,7 +36571,7 @@ interface Player extends Instance {
|
|
|
36502
36571
|
* @param this An object that represents a presently connected client to the experience.
|
|
36503
36572
|
* @returns A boolean indicating whether the player is verified.
|
|
36504
36573
|
*/
|
|
36505
|
-
IsVerified(this: Player): boolean;
|
|
36574
|
+
IsVerified(this: Player, level?: CastsToEnum<Enum.VerifiedLevel>): boolean;
|
|
36506
36575
|
/**
|
|
36507
36576
|
* Forcibly disconnect a player from the experience, optionally providing a message.
|
|
36508
36577
|
*
|
|
@@ -48170,6 +48239,12 @@ interface UIShadow extends UIComponent {
|
|
|
48170
48239
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow#Enabled)
|
|
48171
48240
|
*/
|
|
48172
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;
|
|
48173
48248
|
/**
|
|
48174
48249
|
* - **ThreadSafety**: ReadSafe
|
|
48175
48250
|
*
|
|
@@ -48184,6 +48259,12 @@ interface UIShadow extends UIComponent {
|
|
|
48184
48259
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow#Offset)
|
|
48185
48260
|
*/
|
|
48186
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;
|
|
48187
48268
|
/**
|
|
48188
48269
|
* Expands or shrinks the shadow relative to the parent's size.
|
|
48189
48270
|
*
|
|
@@ -48358,7 +48439,7 @@ interface UnvalidatedAssetService extends Instance {
|
|
|
48358
48439
|
readonly _nominal_UnvalidatedAssetService: unique symbol;
|
|
48359
48440
|
}
|
|
48360
48441
|
/**
|
|
48361
|
-
*
|
|
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.
|
|
48362
48443
|
*
|
|
48363
48444
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
48364
48445
|
*
|
|
@@ -48483,7 +48564,7 @@ interface UserGameSettings extends Instance {
|
|
|
48483
48564
|
* - **ThreadSafety**: Unsafe
|
|
48484
48565
|
*
|
|
48485
48566
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings#GetCameraYInvertValue)
|
|
48486
|
-
* @param this
|
|
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.
|
|
48487
48568
|
*/
|
|
48488
48569
|
GetCameraYInvertValue(this: UserGameSettings): number;
|
|
48489
48570
|
/**
|
|
@@ -48492,7 +48573,7 @@ interface UserGameSettings extends Instance {
|
|
|
48492
48573
|
* - **ThreadSafety**: Unsafe
|
|
48493
48574
|
*
|
|
48494
48575
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings#GetOnboardingCompleted)
|
|
48495
|
-
* @param this
|
|
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.
|
|
48496
48577
|
* @param onboardingId The onboarding ID to inquire about.
|
|
48497
48578
|
* @returns Whether or not the onboarding in particular has been completed yet.
|
|
48498
48579
|
*/
|
|
@@ -48503,7 +48584,7 @@ interface UserGameSettings extends Instance {
|
|
|
48503
48584
|
* - **ThreadSafety**: Unsafe
|
|
48504
48585
|
*
|
|
48505
48586
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings#InFullScreen)
|
|
48506
|
-
* @param this
|
|
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.
|
|
48507
48588
|
*/
|
|
48508
48589
|
InFullScreen(this: UserGameSettings): boolean;
|
|
48509
48590
|
/**
|
|
@@ -48512,7 +48593,7 @@ interface UserGameSettings extends Instance {
|
|
|
48512
48593
|
* - **ThreadSafety**: Unsafe
|
|
48513
48594
|
*
|
|
48514
48595
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings#InStudioMode)
|
|
48515
|
-
* @param this
|
|
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.
|
|
48516
48597
|
*/
|
|
48517
48598
|
InStudioMode(this: UserGameSettings): boolean;
|
|
48518
48599
|
/**
|
|
@@ -48521,7 +48602,7 @@ interface UserGameSettings extends Instance {
|
|
|
48521
48602
|
* - **ThreadSafety**: Unsafe
|
|
48522
48603
|
*
|
|
48523
48604
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings#SetCameraYInvertVisible)
|
|
48524
|
-
* @param this
|
|
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.
|
|
48525
48606
|
*/
|
|
48526
48607
|
SetCameraYInvertVisible(this: UserGameSettings): void;
|
|
48527
48608
|
/**
|
|
@@ -48530,7 +48611,7 @@ interface UserGameSettings extends Instance {
|
|
|
48530
48611
|
* - **ThreadSafety**: Unsafe
|
|
48531
48612
|
*
|
|
48532
48613
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings#SetGamepadCameraSensitivityVisible)
|
|
48533
|
-
* @param this
|
|
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.
|
|
48534
48615
|
*/
|
|
48535
48616
|
SetGamepadCameraSensitivityVisible(this: UserGameSettings): void;
|
|
48536
48617
|
/**
|
|
@@ -48539,7 +48620,7 @@ interface UserGameSettings extends Instance {
|
|
|
48539
48620
|
* - **ThreadSafety**: Unsafe
|
|
48540
48621
|
*
|
|
48541
48622
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings#SetOnboardingCompleted)
|
|
48542
|
-
* @param this
|
|
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.
|
|
48543
48624
|
* @param onboardingId The onboarding ID to set as completed.
|
|
48544
48625
|
*/
|
|
48545
48626
|
SetOnboardingCompleted(this: UserGameSettings, onboardingId: string): void;
|