@rbxts/types 1.0.852 → 1.0.853
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.
|
@@ -344,6 +344,7 @@ interface CreatableInstances {
|
|
|
344
344
|
Glue: Glue;
|
|
345
345
|
GroundController: GroundController;
|
|
346
346
|
Handles: Handles;
|
|
347
|
+
HandRigDescription: HandRigDescription;
|
|
347
348
|
HapticEffect: HapticEffect;
|
|
348
349
|
Hat: Hat;
|
|
349
350
|
HiddenSurfaceRemovalAsset: HiddenSurfaceRemovalAsset;
|
|
@@ -691,6 +692,7 @@ interface Objects extends Instances {
|
|
|
691
692
|
EditableMesh: EditableMesh;
|
|
692
693
|
Object: RBXObject;
|
|
693
694
|
ScreenshotCapture: ScreenshotCapture;
|
|
695
|
+
VideoCapture: VideoCapture;
|
|
694
696
|
}
|
|
695
697
|
// GENERATED ROBLOX INSTANCE CLASSES
|
|
696
698
|
/**
|
|
@@ -780,6 +782,21 @@ interface ScreenshotCapture extends Capture {
|
|
|
780
782
|
*/
|
|
781
783
|
readonly _nominal_ScreenshotCapture: unique symbol;
|
|
782
784
|
}
|
|
785
|
+
/**
|
|
786
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
787
|
+
*
|
|
788
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoCapture)
|
|
789
|
+
*/
|
|
790
|
+
interface VideoCapture extends Capture {
|
|
791
|
+
/**
|
|
792
|
+
* **DO NOT USE!**
|
|
793
|
+
*
|
|
794
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
795
|
+
* @hidden
|
|
796
|
+
* @deprecated
|
|
797
|
+
*/
|
|
798
|
+
readonly _nominal_VideoCapture: unique symbol;
|
|
799
|
+
}
|
|
783
800
|
/**
|
|
784
801
|
* - **Tags**: NotCreatable, NotReplicated
|
|
785
802
|
*
|
|
@@ -1015,6 +1032,8 @@ interface EditableMesh extends RBXObject {
|
|
|
1015
1032
|
*/
|
|
1016
1033
|
get FixedSize(): boolean;
|
|
1017
1034
|
/**
|
|
1035
|
+
* **Deprecated:**
|
|
1036
|
+
*
|
|
1018
1037
|
* - **ThreadSafety**: ReadSafe
|
|
1019
1038
|
* - **Tags**:
|
|
1020
1039
|
*
|
|
@@ -1027,8 +1046,6 @@ interface EditableMesh extends RBXObject {
|
|
|
1027
1046
|
* - **ThreadSafety**: Unsafe
|
|
1028
1047
|
*
|
|
1029
1048
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#AddBone)
|
|
1030
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1031
|
-
* @param boneProperties
|
|
1032
1049
|
*/
|
|
1033
1050
|
AddBone(this: EditableMesh, boneProperties: object): number;
|
|
1034
1051
|
/**
|
|
@@ -1162,47 +1179,36 @@ interface EditableMesh extends RBXObject {
|
|
|
1162
1179
|
* - **ThreadSafety**: Unsafe
|
|
1163
1180
|
*
|
|
1164
1181
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneByName)
|
|
1165
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1166
|
-
* @param boneName
|
|
1167
1182
|
*/
|
|
1168
1183
|
GetBoneByName(this: EditableMesh, boneName: string): number;
|
|
1169
1184
|
/**
|
|
1170
1185
|
* - **ThreadSafety**: Unsafe
|
|
1171
1186
|
*
|
|
1172
1187
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneCFrame)
|
|
1173
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1174
|
-
* @param boneId
|
|
1175
1188
|
*/
|
|
1176
1189
|
GetBoneCFrame(this: EditableMesh, boneId: number): CFrame;
|
|
1177
1190
|
/**
|
|
1178
1191
|
* - **ThreadSafety**: Unsafe
|
|
1179
1192
|
*
|
|
1180
1193
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneIsVirtual)
|
|
1181
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1182
|
-
* @param boneId
|
|
1183
1194
|
*/
|
|
1184
1195
|
GetBoneIsVirtual(this: EditableMesh, boneId: number): boolean;
|
|
1185
1196
|
/**
|
|
1186
1197
|
* - **ThreadSafety**: Unsafe
|
|
1187
1198
|
*
|
|
1188
1199
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneName)
|
|
1189
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1190
|
-
* @param boneId
|
|
1191
1200
|
*/
|
|
1192
1201
|
GetBoneName(this: EditableMesh, boneId: number): string;
|
|
1193
1202
|
/**
|
|
1194
1203
|
* - **ThreadSafety**: Unsafe
|
|
1195
1204
|
*
|
|
1196
1205
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneParent)
|
|
1197
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1198
|
-
* @param boneId
|
|
1199
1206
|
*/
|
|
1200
1207
|
GetBoneParent(this: EditableMesh, boneId: number): number;
|
|
1201
1208
|
/**
|
|
1202
1209
|
* - **ThreadSafety**: Unsafe
|
|
1203
1210
|
*
|
|
1204
1211
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBones)
|
|
1205
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1206
1212
|
*/
|
|
1207
1213
|
GetBones(this: EditableMesh): Array<unknown>;
|
|
1208
1214
|
/**
|
|
@@ -1326,8 +1332,6 @@ interface EditableMesh extends RBXObject {
|
|
|
1326
1332
|
* - **Tags**: CustomLuaState
|
|
1327
1333
|
*
|
|
1328
1334
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithColor)
|
|
1329
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1330
|
-
* @param colorId
|
|
1331
1335
|
*/
|
|
1332
1336
|
GetFacesWithColor(this: EditableMesh, colorId: number): Array<unknown>;
|
|
1333
1337
|
/**
|
|
@@ -1335,8 +1339,6 @@ interface EditableMesh extends RBXObject {
|
|
|
1335
1339
|
* - **Tags**: CustomLuaState
|
|
1336
1340
|
*
|
|
1337
1341
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithNormal)
|
|
1338
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1339
|
-
* @param normalId
|
|
1340
1342
|
*/
|
|
1341
1343
|
GetFacesWithNormal(this: EditableMesh, normalId: number): Array<unknown>;
|
|
1342
1344
|
/**
|
|
@@ -1344,38 +1346,30 @@ interface EditableMesh extends RBXObject {
|
|
|
1344
1346
|
* - **Tags**: CustomLuaState
|
|
1345
1347
|
*
|
|
1346
1348
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithUV)
|
|
1347
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1348
|
-
* @param uvId
|
|
1349
1349
|
*/
|
|
1350
1350
|
GetFacesWithUV(this: EditableMesh, uvId: number): Array<unknown>;
|
|
1351
1351
|
/**
|
|
1352
1352
|
* - **ThreadSafety**: Unsafe
|
|
1353
1353
|
*
|
|
1354
1354
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsCorrectivePose)
|
|
1355
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1356
|
-
* @param actions
|
|
1357
1355
|
*/
|
|
1358
1356
|
GetFacsCorrectivePose(this: EditableMesh, actions: Array<unknown>): unknown;
|
|
1359
1357
|
/**
|
|
1360
1358
|
* - **ThreadSafety**: Unsafe
|
|
1361
1359
|
*
|
|
1362
1360
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsCorrectivePoses)
|
|
1363
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1364
1361
|
*/
|
|
1365
1362
|
GetFacsCorrectivePoses(this: EditableMesh): Array<unknown>;
|
|
1366
1363
|
/**
|
|
1367
1364
|
* - **ThreadSafety**: Unsafe
|
|
1368
1365
|
*
|
|
1369
1366
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsPose)
|
|
1370
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1371
|
-
* @param action
|
|
1372
1367
|
*/
|
|
1373
1368
|
GetFacsPose(this: EditableMesh, action: CastsToEnum<Enum.FacsActionUnit>): unknown;
|
|
1374
1369
|
/**
|
|
1375
1370
|
* - **ThreadSafety**: Unsafe
|
|
1376
1371
|
*
|
|
1377
1372
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsPoses)
|
|
1378
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1379
1373
|
*/
|
|
1380
1374
|
GetFacsPoses(this: EditableMesh): Array<unknown>;
|
|
1381
1375
|
/**
|
|
@@ -1445,16 +1439,12 @@ interface EditableMesh extends RBXObject {
|
|
|
1445
1439
|
* - **ThreadSafety**: Unsafe
|
|
1446
1440
|
*
|
|
1447
1441
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexBoneWeights)
|
|
1448
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1449
|
-
* @param vertexId
|
|
1450
1442
|
*/
|
|
1451
1443
|
GetVertexBoneWeights(this: EditableMesh, vertexId: number): Array<unknown>;
|
|
1452
1444
|
/**
|
|
1453
1445
|
* - **ThreadSafety**: Unsafe
|
|
1454
1446
|
*
|
|
1455
1447
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexBones)
|
|
1456
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1457
|
-
* @param vertexId
|
|
1458
1448
|
*/
|
|
1459
1449
|
GetVertexBones(this: EditableMesh, vertexId: number): Array<unknown>;
|
|
1460
1450
|
/**
|
|
@@ -1462,35 +1452,24 @@ interface EditableMesh extends RBXObject {
|
|
|
1462
1452
|
* - **Tags**: CustomLuaState
|
|
1463
1453
|
*
|
|
1464
1454
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexColors)
|
|
1465
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1466
|
-
* @param vertexId
|
|
1467
1455
|
*/
|
|
1468
1456
|
GetVertexColors(this: EditableMesh, vertexId: number): Array<unknown>;
|
|
1469
1457
|
/**
|
|
1470
1458
|
* - **ThreadSafety**: Unsafe
|
|
1471
1459
|
*
|
|
1472
1460
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceColor)
|
|
1473
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1474
|
-
* @param vertexId
|
|
1475
|
-
* @param faceId
|
|
1476
1461
|
*/
|
|
1477
1462
|
GetVertexFaceColor(this: EditableMesh, vertexId: number, faceId: number): number;
|
|
1478
1463
|
/**
|
|
1479
1464
|
* - **ThreadSafety**: Unsafe
|
|
1480
1465
|
*
|
|
1481
1466
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceNormal)
|
|
1482
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1483
|
-
* @param vertexId
|
|
1484
|
-
* @param faceId
|
|
1485
1467
|
*/
|
|
1486
1468
|
GetVertexFaceNormal(this: EditableMesh, vertexId: number, faceId: number): number;
|
|
1487
1469
|
/**
|
|
1488
1470
|
* - **ThreadSafety**: Unsafe
|
|
1489
1471
|
*
|
|
1490
1472
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceUV)
|
|
1491
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1492
|
-
* @param vertexId
|
|
1493
|
-
* @param faceId
|
|
1494
1473
|
*/
|
|
1495
1474
|
GetVertexFaceUV(this: EditableMesh, vertexId: number, faceId: number): number;
|
|
1496
1475
|
/**
|
|
@@ -1498,8 +1477,6 @@ interface EditableMesh extends RBXObject {
|
|
|
1498
1477
|
* - **Tags**: CustomLuaState
|
|
1499
1478
|
*
|
|
1500
1479
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaces)
|
|
1501
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1502
|
-
* @param vertexId
|
|
1503
1480
|
*/
|
|
1504
1481
|
GetVertexFaces(this: EditableMesh, vertexId: number): Array<unknown>;
|
|
1505
1482
|
/**
|
|
@@ -1507,8 +1484,6 @@ interface EditableMesh extends RBXObject {
|
|
|
1507
1484
|
* - **Tags**: CustomLuaState
|
|
1508
1485
|
*
|
|
1509
1486
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexNormals)
|
|
1510
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1511
|
-
* @param vertexId
|
|
1512
1487
|
*/
|
|
1513
1488
|
GetVertexNormals(this: EditableMesh, vertexId: number): Array<unknown>;
|
|
1514
1489
|
/**
|
|
@@ -1516,8 +1491,6 @@ interface EditableMesh extends RBXObject {
|
|
|
1516
1491
|
* - **Tags**: CustomLuaState
|
|
1517
1492
|
*
|
|
1518
1493
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexUVs)
|
|
1519
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1520
|
-
* @param vertexId
|
|
1521
1494
|
*/
|
|
1522
1495
|
GetVertexUVs(this: EditableMesh, vertexId: number): Array<unknown>;
|
|
1523
1496
|
/**
|
|
@@ -1551,8 +1524,6 @@ interface EditableMesh extends RBXObject {
|
|
|
1551
1524
|
* - **Tags**: CustomLuaState
|
|
1552
1525
|
*
|
|
1553
1526
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithColor)
|
|
1554
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1555
|
-
* @param colorId
|
|
1556
1527
|
*/
|
|
1557
1528
|
GetVerticesWithColor(this: EditableMesh, colorId: number): Array<unknown>;
|
|
1558
1529
|
/**
|
|
@@ -1560,8 +1531,6 @@ interface EditableMesh extends RBXObject {
|
|
|
1560
1531
|
* - **Tags**: CustomLuaState
|
|
1561
1532
|
*
|
|
1562
1533
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithNormal)
|
|
1563
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1564
|
-
* @param normalId
|
|
1565
1534
|
*/
|
|
1566
1535
|
GetVerticesWithNormal(this: EditableMesh, normalId: number): Array<unknown>;
|
|
1567
1536
|
/**
|
|
@@ -1569,8 +1538,6 @@ interface EditableMesh extends RBXObject {
|
|
|
1569
1538
|
* - **Tags**: CustomLuaState
|
|
1570
1539
|
*
|
|
1571
1540
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithUV)
|
|
1572
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1573
|
-
* @param uvId
|
|
1574
1541
|
*/
|
|
1575
1542
|
GetVerticesWithUV(this: EditableMesh, uvId: number): Array<unknown>;
|
|
1576
1543
|
/**
|
|
@@ -1613,8 +1580,6 @@ interface EditableMesh extends RBXObject {
|
|
|
1613
1580
|
* - **ThreadSafety**: Unsafe
|
|
1614
1581
|
*
|
|
1615
1582
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#RemoveBone)
|
|
1616
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1617
|
-
* @param boneId
|
|
1618
1583
|
*/
|
|
1619
1584
|
RemoveBone(this: EditableMesh, boneId: number): void;
|
|
1620
1585
|
/**
|
|
@@ -1651,36 +1616,24 @@ interface EditableMesh extends RBXObject {
|
|
|
1651
1616
|
* - **ThreadSafety**: Unsafe
|
|
1652
1617
|
*
|
|
1653
1618
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetBoneCFrame)
|
|
1654
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1655
|
-
* @param boneId
|
|
1656
|
-
* @param cframe
|
|
1657
1619
|
*/
|
|
1658
1620
|
SetBoneCFrame(this: EditableMesh, boneId: number, cframe: CFrame): void;
|
|
1659
1621
|
/**
|
|
1660
1622
|
* - **ThreadSafety**: Unsafe
|
|
1661
1623
|
*
|
|
1662
1624
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetBoneIsVirtual)
|
|
1663
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1664
|
-
* @param boneId
|
|
1665
|
-
* @param virtual
|
|
1666
1625
|
*/
|
|
1667
1626
|
SetBoneIsVirtual(this: EditableMesh, boneId: number, virtual: boolean): void;
|
|
1668
1627
|
/**
|
|
1669
1628
|
* - **ThreadSafety**: Unsafe
|
|
1670
1629
|
*
|
|
1671
1630
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetBoneName)
|
|
1672
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1673
|
-
* @param boneId
|
|
1674
|
-
* @param name
|
|
1675
1631
|
*/
|
|
1676
1632
|
SetBoneName(this: EditableMesh, boneId: number, name: string): void;
|
|
1677
1633
|
/**
|
|
1678
1634
|
* - **ThreadSafety**: Unsafe
|
|
1679
1635
|
*
|
|
1680
1636
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetBoneParent)
|
|
1681
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1682
|
-
* @param boneId
|
|
1683
|
-
* @param parentBoneId
|
|
1684
1637
|
*/
|
|
1685
1638
|
SetBoneParent(this: EditableMesh, boneId: number, parentBoneId: number): void;
|
|
1686
1639
|
/**
|
|
@@ -1757,30 +1710,18 @@ interface EditableMesh extends RBXObject {
|
|
|
1757
1710
|
* - **ThreadSafety**: Unsafe
|
|
1758
1711
|
*
|
|
1759
1712
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetFacsBonePose)
|
|
1760
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1761
|
-
* @param action
|
|
1762
|
-
* @param boneId
|
|
1763
|
-
* @param cframe
|
|
1764
1713
|
*/
|
|
1765
1714
|
SetFacsBonePose(this: EditableMesh, action: CastsToEnum<Enum.FacsActionUnit>, boneId: number, cframe: CFrame): void;
|
|
1766
1715
|
/**
|
|
1767
1716
|
* - **ThreadSafety**: Unsafe
|
|
1768
1717
|
*
|
|
1769
1718
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetFacsCorrectivePose)
|
|
1770
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1771
|
-
* @param actions
|
|
1772
|
-
* @param boneIds
|
|
1773
|
-
* @param cframes
|
|
1774
1719
|
*/
|
|
1775
1720
|
SetFacsCorrectivePose(this: EditableMesh, actions: Array<unknown>, boneIds: Array<unknown>, cframes: Array<unknown>): void;
|
|
1776
1721
|
/**
|
|
1777
1722
|
* - **ThreadSafety**: Unsafe
|
|
1778
1723
|
*
|
|
1779
1724
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetFacsPose)
|
|
1780
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1781
|
-
* @param action
|
|
1782
|
-
* @param boneIds
|
|
1783
|
-
* @param cframes
|
|
1784
1725
|
*/
|
|
1785
1726
|
SetFacsPose(this: EditableMesh, action: CastsToEnum<Enum.FacsActionUnit>, boneIds: Array<unknown>, cframes: Array<unknown>): void;
|
|
1786
1727
|
/**
|
|
@@ -1820,48 +1761,30 @@ interface EditableMesh extends RBXObject {
|
|
|
1820
1761
|
* - **ThreadSafety**: Unsafe
|
|
1821
1762
|
*
|
|
1822
1763
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexBoneWeights)
|
|
1823
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1824
|
-
* @param vertexId
|
|
1825
|
-
* @param boneWeights
|
|
1826
1764
|
*/
|
|
1827
1765
|
SetVertexBoneWeights(this: EditableMesh, vertexId: number, boneWeights: Array<unknown>): void;
|
|
1828
1766
|
/**
|
|
1829
1767
|
* - **ThreadSafety**: Unsafe
|
|
1830
1768
|
*
|
|
1831
1769
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexBones)
|
|
1832
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1833
|
-
* @param vertexId
|
|
1834
|
-
* @param boneIDs
|
|
1835
1770
|
*/
|
|
1836
1771
|
SetVertexBones(this: EditableMesh, vertexId: number, boneIDs: Array<unknown>): void;
|
|
1837
1772
|
/**
|
|
1838
1773
|
* - **ThreadSafety**: Unsafe
|
|
1839
1774
|
*
|
|
1840
1775
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexFaceColor)
|
|
1841
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1842
|
-
* @param vertexId
|
|
1843
|
-
* @param faceId
|
|
1844
|
-
* @param colorId
|
|
1845
1776
|
*/
|
|
1846
1777
|
SetVertexFaceColor(this: EditableMesh, vertexId: number, faceId: number, colorId: number): void;
|
|
1847
1778
|
/**
|
|
1848
1779
|
* - **ThreadSafety**: Unsafe
|
|
1849
1780
|
*
|
|
1850
1781
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexFaceNormal)
|
|
1851
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1852
|
-
* @param vertexId
|
|
1853
|
-
* @param faceId
|
|
1854
|
-
* @param normalId
|
|
1855
1782
|
*/
|
|
1856
1783
|
SetVertexFaceNormal(this: EditableMesh, vertexId: number, faceId: number, normalId: number): void;
|
|
1857
1784
|
/**
|
|
1858
1785
|
* - **ThreadSafety**: Unsafe
|
|
1859
1786
|
*
|
|
1860
1787
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexFaceUV)
|
|
1861
|
-
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1862
|
-
* @param vertexId
|
|
1863
|
-
* @param faceId
|
|
1864
|
-
* @param uvId
|
|
1865
1788
|
*/
|
|
1866
1789
|
SetVertexFaceUV(this: EditableMesh, vertexId: number, faceId: number, uvId: number): void;
|
|
1867
1790
|
/**
|
|
@@ -4967,6 +4890,8 @@ interface AudioEmitter extends Instance {
|
|
|
4967
4890
|
*/
|
|
4968
4891
|
AudioInteractionGroup: string;
|
|
4969
4892
|
/**
|
|
4893
|
+
* Controls how detailed the audio simulation should be for this `AudioEmitter`.
|
|
4894
|
+
*
|
|
4970
4895
|
* - **ThreadSafety**: ReadSafe
|
|
4971
4896
|
*
|
|
4972
4897
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEmitter#SimulationFidelity)
|
|
@@ -5499,6 +5424,8 @@ interface AudioListener extends Instance {
|
|
|
5499
5424
|
*/
|
|
5500
5425
|
AudioInteractionGroup: string;
|
|
5501
5426
|
/**
|
|
5427
|
+
* Controls how detailed the audio simulation should be for this `AudioListener`.
|
|
5428
|
+
*
|
|
5502
5429
|
* - **ThreadSafety**: ReadSafe
|
|
5503
5430
|
*
|
|
5504
5431
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioListener#SimulationFidelity)
|
|
@@ -5889,36 +5816,43 @@ interface AudioRecorder extends Instance {
|
|
|
5889
5816
|
* - **ThreadSafety**: Unsafe
|
|
5890
5817
|
*
|
|
5891
5818
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#Clear)
|
|
5819
|
+
* @param this
|
|
5892
5820
|
*/
|
|
5893
5821
|
Clear(this: AudioRecorder): void;
|
|
5894
5822
|
/**
|
|
5895
5823
|
* - **ThreadSafety**: Unsafe
|
|
5896
5824
|
*
|
|
5897
5825
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetConnectedWires)
|
|
5826
|
+
* @param this
|
|
5827
|
+
* @param pin
|
|
5898
5828
|
*/
|
|
5899
5829
|
GetConnectedWires(this: AudioRecorder, pin: string): Array<Instance>;
|
|
5900
5830
|
/**
|
|
5901
5831
|
* - **ThreadSafety**: Unsafe
|
|
5902
5832
|
*
|
|
5903
5833
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetInputPins)
|
|
5834
|
+
* @param this
|
|
5904
5835
|
*/
|
|
5905
5836
|
GetInputPins(this: AudioRecorder): Array<unknown>;
|
|
5906
5837
|
/**
|
|
5907
5838
|
* - **ThreadSafety**: Unsafe
|
|
5908
5839
|
*
|
|
5909
5840
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetOutputPins)
|
|
5841
|
+
* @param this
|
|
5910
5842
|
*/
|
|
5911
5843
|
GetOutputPins(this: AudioRecorder): Array<unknown>;
|
|
5912
5844
|
/**
|
|
5913
5845
|
* - **ThreadSafety**: Unsafe
|
|
5914
5846
|
*
|
|
5915
5847
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetTemporaryContent)
|
|
5848
|
+
* @param this
|
|
5916
5849
|
*/
|
|
5917
5850
|
GetTemporaryContent(this: AudioRecorder): Content;
|
|
5918
5851
|
/**
|
|
5919
5852
|
* - **ThreadSafety**: Unsafe
|
|
5920
5853
|
*
|
|
5921
5854
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#Stop)
|
|
5855
|
+
* @param this
|
|
5922
5856
|
*/
|
|
5923
5857
|
Stop(this: AudioRecorder): void;
|
|
5924
5858
|
/**
|
|
@@ -5926,6 +5860,7 @@ interface AudioRecorder extends Instance {
|
|
|
5926
5860
|
* - **Tags**: Yields
|
|
5927
5861
|
*
|
|
5928
5862
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#CanRecordAsync)
|
|
5863
|
+
* @param this
|
|
5929
5864
|
*/
|
|
5930
5865
|
CanRecordAsync(this: AudioRecorder): boolean;
|
|
5931
5866
|
/**
|
|
@@ -5933,6 +5868,7 @@ interface AudioRecorder extends Instance {
|
|
|
5933
5868
|
* - **Tags**: Yields
|
|
5934
5869
|
*
|
|
5935
5870
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetUnrecordableInstancesAsync)
|
|
5871
|
+
* @param this
|
|
5936
5872
|
*/
|
|
5937
5873
|
GetUnrecordableInstancesAsync(this: AudioRecorder): Array<Instance>;
|
|
5938
5874
|
/**
|
|
@@ -5940,6 +5876,7 @@ interface AudioRecorder extends Instance {
|
|
|
5940
5876
|
* - **Tags**: Yields
|
|
5941
5877
|
*
|
|
5942
5878
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#RecordAsync)
|
|
5879
|
+
* @param this
|
|
5943
5880
|
*/
|
|
5944
5881
|
RecordAsync(this: AudioRecorder): void;
|
|
5945
5882
|
/**
|
|
@@ -6448,6 +6385,24 @@ interface AuroraService extends Instance {
|
|
|
6448
6385
|
* @deprecated
|
|
6449
6386
|
*/
|
|
6450
6387
|
readonly _nominal_AuroraService: unique symbol;
|
|
6388
|
+
/**
|
|
6389
|
+
* - **ThreadSafety**: ReadSafe
|
|
6390
|
+
*
|
|
6391
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#HashRoundingPoint)
|
|
6392
|
+
*/
|
|
6393
|
+
HashRoundingPoint: number;
|
|
6394
|
+
/**
|
|
6395
|
+
* - **ThreadSafety**: ReadSafe
|
|
6396
|
+
*
|
|
6397
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#IgnoreRotation)
|
|
6398
|
+
*/
|
|
6399
|
+
IgnoreRotation: boolean;
|
|
6400
|
+
/**
|
|
6401
|
+
* - **ThreadSafety**: ReadSafe
|
|
6402
|
+
*
|
|
6403
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#RollbackOffset)
|
|
6404
|
+
*/
|
|
6405
|
+
RollbackOffset: number;
|
|
6451
6406
|
/**
|
|
6452
6407
|
* - **ThreadSafety**: Unsafe
|
|
6453
6408
|
*
|
|
@@ -9198,6 +9153,12 @@ interface CaptureService extends Instance {
|
|
|
9198
9153
|
* @param onDeniedCallback An optional callback function invoked if the user denies sharing.
|
|
9199
9154
|
*/
|
|
9200
9155
|
PromptShareCapture(this: CaptureService, contentId: string, launchData: string, onAcceptedCallback: () => void, onDeniedCallback: () => void): void;
|
|
9156
|
+
/**
|
|
9157
|
+
* - **ThreadSafety**: Unsafe
|
|
9158
|
+
*
|
|
9159
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#StopVideoCapture)
|
|
9160
|
+
*/
|
|
9161
|
+
StopVideoCapture(this: CaptureService): void;
|
|
9201
9162
|
/**
|
|
9202
9163
|
* - **ThreadSafety**: Unsafe
|
|
9203
9164
|
*
|
|
@@ -9207,6 +9168,13 @@ interface CaptureService extends Instance {
|
|
|
9207
9168
|
* @param captureParams
|
|
9208
9169
|
*/
|
|
9209
9170
|
TakeCapture(this: CaptureService, onCaptureReady: Callback, captureParams?: object): void;
|
|
9171
|
+
/**
|
|
9172
|
+
* - **ThreadSafety**: Unsafe
|
|
9173
|
+
* - **Tags**: Yields
|
|
9174
|
+
*
|
|
9175
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#StartVideoCaptureAsync)
|
|
9176
|
+
*/
|
|
9177
|
+
StartVideoCaptureAsync(this: CaptureService, onCaptureReady: Callback, captureParams?: object): Enum.VideoCaptureResult;
|
|
9210
9178
|
/**
|
|
9211
9179
|
* Fires immediately before a capture begins.
|
|
9212
9180
|
*
|
|
@@ -20116,6 +20084,265 @@ interface GuiService extends Instance {
|
|
|
20116
20084
|
*/
|
|
20117
20085
|
readonly MenuOpened: RBXScriptSignal<() => void>;
|
|
20118
20086
|
}
|
|
20087
|
+
/**
|
|
20088
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription)
|
|
20089
|
+
*/
|
|
20090
|
+
interface HandRigDescription extends Instance {
|
|
20091
|
+
/**
|
|
20092
|
+
* **DO NOT USE!**
|
|
20093
|
+
*
|
|
20094
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
20095
|
+
* @hidden
|
|
20096
|
+
* @deprecated
|
|
20097
|
+
*/
|
|
20098
|
+
readonly _nominal_HandRigDescription: unique symbol;
|
|
20099
|
+
/**
|
|
20100
|
+
* - **ThreadSafety**: ReadSafe
|
|
20101
|
+
*
|
|
20102
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Index1)
|
|
20103
|
+
*/
|
|
20104
|
+
Index1: Instance | undefined;
|
|
20105
|
+
/**
|
|
20106
|
+
* - **ThreadSafety**: ReadSafe
|
|
20107
|
+
*
|
|
20108
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Index1TposeAdjustment)
|
|
20109
|
+
*/
|
|
20110
|
+
Index1TposeAdjustment: CFrame;
|
|
20111
|
+
/**
|
|
20112
|
+
* - **ThreadSafety**: ReadSafe
|
|
20113
|
+
*
|
|
20114
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Index2)
|
|
20115
|
+
*/
|
|
20116
|
+
Index2: Instance | undefined;
|
|
20117
|
+
/**
|
|
20118
|
+
* - **ThreadSafety**: ReadSafe
|
|
20119
|
+
*
|
|
20120
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Index2TposeAdjustment)
|
|
20121
|
+
*/
|
|
20122
|
+
Index2TposeAdjustment: CFrame;
|
|
20123
|
+
/**
|
|
20124
|
+
* - **ThreadSafety**: ReadSafe
|
|
20125
|
+
*
|
|
20126
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Index3)
|
|
20127
|
+
*/
|
|
20128
|
+
Index3: Instance | undefined;
|
|
20129
|
+
/**
|
|
20130
|
+
* - **ThreadSafety**: ReadSafe
|
|
20131
|
+
*
|
|
20132
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Index3TposeAdjustment)
|
|
20133
|
+
*/
|
|
20134
|
+
Index3TposeAdjustment: CFrame;
|
|
20135
|
+
/**
|
|
20136
|
+
* - **ThreadSafety**: ReadSafe
|
|
20137
|
+
*
|
|
20138
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#IndexRange)
|
|
20139
|
+
*/
|
|
20140
|
+
IndexRange: Vector3;
|
|
20141
|
+
/**
|
|
20142
|
+
* - **ThreadSafety**: ReadSafe
|
|
20143
|
+
*
|
|
20144
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#IndexSize)
|
|
20145
|
+
*/
|
|
20146
|
+
IndexSize: number;
|
|
20147
|
+
/**
|
|
20148
|
+
* - **ThreadSafety**: ReadSafe
|
|
20149
|
+
*
|
|
20150
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Middle1)
|
|
20151
|
+
*/
|
|
20152
|
+
Middle1: Instance | undefined;
|
|
20153
|
+
/**
|
|
20154
|
+
* - **ThreadSafety**: ReadSafe
|
|
20155
|
+
*
|
|
20156
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Middle1TposeAdjustment)
|
|
20157
|
+
*/
|
|
20158
|
+
Middle1TposeAdjustment: CFrame;
|
|
20159
|
+
/**
|
|
20160
|
+
* - **ThreadSafety**: ReadSafe
|
|
20161
|
+
*
|
|
20162
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Middle2)
|
|
20163
|
+
*/
|
|
20164
|
+
Middle2: Instance | undefined;
|
|
20165
|
+
/**
|
|
20166
|
+
* - **ThreadSafety**: ReadSafe
|
|
20167
|
+
*
|
|
20168
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Middle2TposeAdjustment)
|
|
20169
|
+
*/
|
|
20170
|
+
Middle2TposeAdjustment: CFrame;
|
|
20171
|
+
/**
|
|
20172
|
+
* - **ThreadSafety**: ReadSafe
|
|
20173
|
+
*
|
|
20174
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Middle3)
|
|
20175
|
+
*/
|
|
20176
|
+
Middle3: Instance | undefined;
|
|
20177
|
+
/**
|
|
20178
|
+
* - **ThreadSafety**: ReadSafe
|
|
20179
|
+
*
|
|
20180
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Middle3TposeAdjustment)
|
|
20181
|
+
*/
|
|
20182
|
+
Middle3TposeAdjustment: CFrame;
|
|
20183
|
+
/**
|
|
20184
|
+
* - **ThreadSafety**: ReadSafe
|
|
20185
|
+
*
|
|
20186
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#MiddleRange)
|
|
20187
|
+
*/
|
|
20188
|
+
MiddleRange: Vector3;
|
|
20189
|
+
/**
|
|
20190
|
+
* - **ThreadSafety**: ReadSafe
|
|
20191
|
+
*
|
|
20192
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#MiddleSize)
|
|
20193
|
+
*/
|
|
20194
|
+
MiddleSize: number;
|
|
20195
|
+
/**
|
|
20196
|
+
* - **ThreadSafety**: ReadSafe
|
|
20197
|
+
*
|
|
20198
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Pinky1)
|
|
20199
|
+
*/
|
|
20200
|
+
Pinky1: Instance | undefined;
|
|
20201
|
+
/**
|
|
20202
|
+
* - **ThreadSafety**: ReadSafe
|
|
20203
|
+
*
|
|
20204
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Pinky1TposeAdjustment)
|
|
20205
|
+
*/
|
|
20206
|
+
Pinky1TposeAdjustment: CFrame;
|
|
20207
|
+
/**
|
|
20208
|
+
* - **ThreadSafety**: ReadSafe
|
|
20209
|
+
*
|
|
20210
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Pinky2)
|
|
20211
|
+
*/
|
|
20212
|
+
Pinky2: Instance | undefined;
|
|
20213
|
+
/**
|
|
20214
|
+
* - **ThreadSafety**: ReadSafe
|
|
20215
|
+
*
|
|
20216
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Pinky2TposeAdjustment)
|
|
20217
|
+
*/
|
|
20218
|
+
Pinky2TposeAdjustment: CFrame;
|
|
20219
|
+
/**
|
|
20220
|
+
* - **ThreadSafety**: ReadSafe
|
|
20221
|
+
*
|
|
20222
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Pinky3)
|
|
20223
|
+
*/
|
|
20224
|
+
Pinky3: Instance | undefined;
|
|
20225
|
+
/**
|
|
20226
|
+
* - **ThreadSafety**: ReadSafe
|
|
20227
|
+
*
|
|
20228
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Pinky3TposeAdjustment)
|
|
20229
|
+
*/
|
|
20230
|
+
Pinky3TposeAdjustment: CFrame;
|
|
20231
|
+
/**
|
|
20232
|
+
* - **ThreadSafety**: ReadSafe
|
|
20233
|
+
*
|
|
20234
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#PinkyRange)
|
|
20235
|
+
*/
|
|
20236
|
+
PinkyRange: Vector3;
|
|
20237
|
+
/**
|
|
20238
|
+
* - **ThreadSafety**: ReadSafe
|
|
20239
|
+
*
|
|
20240
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#PinkySize)
|
|
20241
|
+
*/
|
|
20242
|
+
PinkySize: number;
|
|
20243
|
+
/**
|
|
20244
|
+
* - **ThreadSafety**: ReadSafe
|
|
20245
|
+
*
|
|
20246
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Ring1)
|
|
20247
|
+
*/
|
|
20248
|
+
Ring1: Instance | undefined;
|
|
20249
|
+
/**
|
|
20250
|
+
* - **ThreadSafety**: ReadSafe
|
|
20251
|
+
*
|
|
20252
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Ring1TposeAdjustment)
|
|
20253
|
+
*/
|
|
20254
|
+
Ring1TposeAdjustment: CFrame;
|
|
20255
|
+
/**
|
|
20256
|
+
* - **ThreadSafety**: ReadSafe
|
|
20257
|
+
*
|
|
20258
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Ring2)
|
|
20259
|
+
*/
|
|
20260
|
+
Ring2: Instance | undefined;
|
|
20261
|
+
/**
|
|
20262
|
+
* - **ThreadSafety**: ReadSafe
|
|
20263
|
+
*
|
|
20264
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Ring2TposeAdjustment)
|
|
20265
|
+
*/
|
|
20266
|
+
Ring2TposeAdjustment: CFrame;
|
|
20267
|
+
/**
|
|
20268
|
+
* - **ThreadSafety**: ReadSafe
|
|
20269
|
+
*
|
|
20270
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Ring3)
|
|
20271
|
+
*/
|
|
20272
|
+
Ring3: Instance | undefined;
|
|
20273
|
+
/**
|
|
20274
|
+
* - **ThreadSafety**: ReadSafe
|
|
20275
|
+
*
|
|
20276
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Ring3TposeAdjustment)
|
|
20277
|
+
*/
|
|
20278
|
+
Ring3TposeAdjustment: CFrame;
|
|
20279
|
+
/**
|
|
20280
|
+
* - **ThreadSafety**: ReadSafe
|
|
20281
|
+
*
|
|
20282
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#RingRange)
|
|
20283
|
+
*/
|
|
20284
|
+
RingRange: Vector3;
|
|
20285
|
+
/**
|
|
20286
|
+
* - **ThreadSafety**: ReadSafe
|
|
20287
|
+
*
|
|
20288
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#RingSize)
|
|
20289
|
+
*/
|
|
20290
|
+
RingSize: number;
|
|
20291
|
+
/**
|
|
20292
|
+
* - **ThreadSafety**: ReadSafe
|
|
20293
|
+
*
|
|
20294
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Side)
|
|
20295
|
+
*/
|
|
20296
|
+
Side: Enum.HandRigDescriptionSide;
|
|
20297
|
+
/**
|
|
20298
|
+
* - **ThreadSafety**: ReadSafe
|
|
20299
|
+
*
|
|
20300
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Thumb1)
|
|
20301
|
+
*/
|
|
20302
|
+
Thumb1: Instance | undefined;
|
|
20303
|
+
/**
|
|
20304
|
+
* - **ThreadSafety**: ReadSafe
|
|
20305
|
+
*
|
|
20306
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Thumb1TposeAdjustment)
|
|
20307
|
+
*/
|
|
20308
|
+
Thumb1TposeAdjustment: CFrame;
|
|
20309
|
+
/**
|
|
20310
|
+
* - **ThreadSafety**: ReadSafe
|
|
20311
|
+
*
|
|
20312
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Thumb2)
|
|
20313
|
+
*/
|
|
20314
|
+
Thumb2: Instance | undefined;
|
|
20315
|
+
/**
|
|
20316
|
+
* - **ThreadSafety**: ReadSafe
|
|
20317
|
+
*
|
|
20318
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Thumb2TposeAdjustment)
|
|
20319
|
+
*/
|
|
20320
|
+
Thumb2TposeAdjustment: CFrame;
|
|
20321
|
+
/**
|
|
20322
|
+
* - **ThreadSafety**: ReadSafe
|
|
20323
|
+
*
|
|
20324
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Thumb3)
|
|
20325
|
+
*/
|
|
20326
|
+
Thumb3: Instance | undefined;
|
|
20327
|
+
/**
|
|
20328
|
+
* - **ThreadSafety**: ReadSafe
|
|
20329
|
+
*
|
|
20330
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Thumb3TposeAdjustment)
|
|
20331
|
+
*/
|
|
20332
|
+
Thumb3TposeAdjustment: CFrame;
|
|
20333
|
+
/**
|
|
20334
|
+
* - **ThreadSafety**: ReadSafe
|
|
20335
|
+
*
|
|
20336
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#ThumbRange)
|
|
20337
|
+
*/
|
|
20338
|
+
ThumbRange: Vector3;
|
|
20339
|
+
/**
|
|
20340
|
+
* - **ThreadSafety**: ReadSafe
|
|
20341
|
+
*
|
|
20342
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#ThumbSize)
|
|
20343
|
+
*/
|
|
20344
|
+
ThumbSize: number;
|
|
20345
|
+
}
|
|
20119
20346
|
/**
|
|
20120
20347
|
* - **Tags**: NotBrowsable
|
|
20121
20348
|
*
|
|
@@ -21844,6 +22071,8 @@ interface HumanoidDescription extends Instance {
|
|
|
21844
22071
|
readonly EquippedEmotesChanged: RBXScriptSignal<(newEquippedEmotes: EquippedEmotes) => void>;
|
|
21845
22072
|
}
|
|
21846
22073
|
/**
|
|
22074
|
+
* - **Tags**: NotBrowsable
|
|
22075
|
+
*
|
|
21847
22076
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription)
|
|
21848
22077
|
*/
|
|
21849
22078
|
interface HumanoidRigDescription extends Instance {
|
|
@@ -26597,6 +26826,8 @@ interface BasePart extends PVInstance {
|
|
|
26597
26826
|
*/
|
|
26598
26827
|
readonly AssemblyRootPart: BasePart | undefined;
|
|
26599
26828
|
/**
|
|
26829
|
+
* Determines whether the part will physically interact with audio simulation, similar to `CastShadow` for lighting.
|
|
26830
|
+
*
|
|
26600
26831
|
* - **ThreadSafety**: ReadSafe
|
|
26601
26832
|
*
|
|
26602
26833
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BasePart#AudioCanCollide)
|
|
@@ -33695,18 +33926,26 @@ interface ReflectionService extends Instance {
|
|
|
33695
33926
|
* - **ThreadSafety**: Unsafe
|
|
33696
33927
|
*
|
|
33697
33928
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetClass)
|
|
33929
|
+
* @param this
|
|
33930
|
+
* @param className
|
|
33931
|
+
* @param filter
|
|
33698
33932
|
*/
|
|
33699
33933
|
GetClass(this: ReflectionService, className: string, filter?: object): object | undefined;
|
|
33700
33934
|
/**
|
|
33701
33935
|
* - **ThreadSafety**: Unsafe
|
|
33702
33936
|
*
|
|
33703
33937
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetClasses)
|
|
33938
|
+
* @param this
|
|
33939
|
+
* @param filter
|
|
33704
33940
|
*/
|
|
33705
33941
|
GetClasses(this: ReflectionService, filter?: object): Array<unknown>;
|
|
33706
33942
|
/**
|
|
33707
33943
|
* - **ThreadSafety**: Unsafe
|
|
33708
33944
|
*
|
|
33709
33945
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetPropertiesOfClass)
|
|
33946
|
+
* @param this
|
|
33947
|
+
* @param className
|
|
33948
|
+
* @param filter
|
|
33710
33949
|
*/
|
|
33711
33950
|
GetPropertiesOfClass(this: ReflectionService, className: string, filter?: object): Array<unknown>;
|
|
33712
33951
|
}
|
|
@@ -39607,7 +39846,7 @@ interface TextChatService extends Instance {
|
|
|
39607
39846
|
*/
|
|
39608
39847
|
readonly _nominal_TextChatService: unique symbol;
|
|
39609
39848
|
/**
|
|
39610
|
-
* Determines
|
|
39849
|
+
* Determines whether a user has chat translation enabled.
|
|
39611
39850
|
*
|
|
39612
39851
|
* - **ThreadSafety**: ReadSafe
|
|
39613
39852
|
* - **Tags**: NotReplicated
|
|
@@ -362,6 +362,7 @@ interface CreatableInstances {
|
|
|
362
362
|
Glue: Glue;
|
|
363
363
|
GroundController: GroundController;
|
|
364
364
|
Handles: Handles;
|
|
365
|
+
HandRigDescription: HandRigDescription;
|
|
365
366
|
HapticEffect: HapticEffect;
|
|
366
367
|
Hat: Hat;
|
|
367
368
|
HiddenSurfaceRemovalAsset: HiddenSurfaceRemovalAsset;
|
|
@@ -743,6 +744,7 @@ interface Objects extends Instances {
|
|
|
743
744
|
EditableMesh: EditableMesh;
|
|
744
745
|
Object: RBXObject;
|
|
745
746
|
ScreenshotCapture: ScreenshotCapture;
|
|
747
|
+
VideoCapture: VideoCapture;
|
|
746
748
|
}
|
|
747
749
|
// GENERATED ROBLOX INSTANCE CLASSES
|
|
748
750
|
/**
|
|
@@ -792,6 +794,21 @@ interface ScreenshotCapture extends Capture {
|
|
|
792
794
|
*/
|
|
793
795
|
readonly _nominal_ScreenshotCapture: unique symbol;
|
|
794
796
|
}
|
|
797
|
+
/**
|
|
798
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
799
|
+
*
|
|
800
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoCapture)
|
|
801
|
+
*/
|
|
802
|
+
interface VideoCapture extends Capture {
|
|
803
|
+
/**
|
|
804
|
+
* **DO NOT USE!**
|
|
805
|
+
*
|
|
806
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
807
|
+
* @hidden
|
|
808
|
+
* @deprecated
|
|
809
|
+
*/
|
|
810
|
+
readonly _nominal_VideoCapture: unique symbol;
|
|
811
|
+
}
|
|
795
812
|
/**
|
|
796
813
|
* - **Tags**: NotCreatable, NotReplicated
|
|
797
814
|
*
|
|
@@ -6472,6 +6489,19 @@ interface GuiService extends Instance {
|
|
|
6472
6489
|
*/
|
|
6473
6490
|
readonly _nominal_GuiService: unique symbol;
|
|
6474
6491
|
}
|
|
6492
|
+
/**
|
|
6493
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription)
|
|
6494
|
+
*/
|
|
6495
|
+
interface HandRigDescription extends Instance {
|
|
6496
|
+
/**
|
|
6497
|
+
* **DO NOT USE!**
|
|
6498
|
+
*
|
|
6499
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
6500
|
+
* @hidden
|
|
6501
|
+
* @deprecated
|
|
6502
|
+
*/
|
|
6503
|
+
readonly _nominal_HandRigDescription: unique symbol;
|
|
6504
|
+
}
|
|
6475
6505
|
/**
|
|
6476
6506
|
* - **Tags**: NotBrowsable
|
|
6477
6507
|
*
|
|
@@ -6661,6 +6691,8 @@ interface HumanoidDescription extends Instance {
|
|
|
6661
6691
|
readonly _nominal_HumanoidDescription: unique symbol;
|
|
6662
6692
|
}
|
|
6663
6693
|
/**
|
|
6694
|
+
* - **Tags**: NotBrowsable
|
|
6695
|
+
*
|
|
6664
6696
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription)
|
|
6665
6697
|
*/
|
|
6666
6698
|
interface HumanoidRigDescription extends Instance {
|
|
@@ -7808,6 +7840,12 @@ interface MaterialVariant extends Instance {
|
|
|
7808
7840
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#ColorMap)
|
|
7809
7841
|
*/
|
|
7810
7842
|
ColorMap: ContentId;
|
|
7843
|
+
/**
|
|
7844
|
+
* - **ThreadSafety**: ReadSafe
|
|
7845
|
+
*
|
|
7846
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#ColorMapContent)
|
|
7847
|
+
*/
|
|
7848
|
+
ColorMapContent: Content;
|
|
7811
7849
|
/**
|
|
7812
7850
|
* Determines which parts of the surface are metal and are non-metal.
|
|
7813
7851
|
*
|
|
@@ -7816,6 +7854,12 @@ interface MaterialVariant extends Instance {
|
|
|
7816
7854
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#MetalnessMap)
|
|
7817
7855
|
*/
|
|
7818
7856
|
MetalnessMap: ContentId;
|
|
7857
|
+
/**
|
|
7858
|
+
* - **ThreadSafety**: ReadSafe
|
|
7859
|
+
*
|
|
7860
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#MetalnessMapContent)
|
|
7861
|
+
*/
|
|
7862
|
+
MetalnessMapContent: Content;
|
|
7819
7863
|
/**
|
|
7820
7864
|
* Modifies the lighting of the surface by adding bumps, dents, cracks, and curves without adding more polygons.
|
|
7821
7865
|
*
|
|
@@ -7824,6 +7868,12 @@ interface MaterialVariant extends Instance {
|
|
|
7824
7868
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#NormalMap)
|
|
7825
7869
|
*/
|
|
7826
7870
|
NormalMap: ContentId;
|
|
7871
|
+
/**
|
|
7872
|
+
* - **ThreadSafety**: ReadSafe
|
|
7873
|
+
*
|
|
7874
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#NormalMapContent)
|
|
7875
|
+
*/
|
|
7876
|
+
NormalMapContent: Content;
|
|
7827
7877
|
/**
|
|
7828
7878
|
* Determines the apparent roughness across the surface.
|
|
7829
7879
|
*
|
|
@@ -7832,6 +7882,12 @@ interface MaterialVariant extends Instance {
|
|
|
7832
7882
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#RoughnessMap)
|
|
7833
7883
|
*/
|
|
7834
7884
|
RoughnessMap: ContentId;
|
|
7885
|
+
/**
|
|
7886
|
+
* - **ThreadSafety**: ReadSafe
|
|
7887
|
+
*
|
|
7888
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#RoughnessMapContent)
|
|
7889
|
+
*/
|
|
7890
|
+
RoughnessMapContent: Content;
|
|
7835
7891
|
}
|
|
7836
7892
|
/**
|
|
7837
7893
|
* - **Tags**: NotCreatable, NotReplicated
|
|
@@ -3193,10 +3193,14 @@ declare namespace Enum {
|
|
|
3193
3193
|
}
|
|
3194
3194
|
export type AudioFilterType = AudioFilterType.Peak | AudioFilterType.LowShelf | AudioFilterType.HighShelf | AudioFilterType.Lowpass12dB | AudioFilterType.Lowpass24dB | AudioFilterType.Lowpass48dB | AudioFilterType.Highpass12dB | AudioFilterType.Highpass24dB | AudioFilterType.Highpass48dB | AudioFilterType.Bandpass | AudioFilterType.Notch | AudioFilterType.Lowpass6dB;
|
|
3195
3195
|
/**
|
|
3196
|
+
* Enum which determines how detailed audio simulation should be for `AudioEmitters` and `AudioListeners`.
|
|
3197
|
+
*
|
|
3196
3198
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioSimulationFidelity)
|
|
3197
3199
|
*/
|
|
3198
3200
|
export namespace AudioSimulationFidelity {
|
|
3199
3201
|
/**
|
|
3202
|
+
* No acoustic simulation occurs; only direction and distance are taken into account.
|
|
3203
|
+
*
|
|
3200
3204
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioSimulationFidelity#None)
|
|
3201
3205
|
*/
|
|
3202
3206
|
export interface None extends globalThis.EnumItem {
|
|
@@ -3206,6 +3210,8 @@ declare namespace Enum {
|
|
|
3206
3210
|
}
|
|
3207
3211
|
export const None: None;
|
|
3208
3212
|
/**
|
|
3213
|
+
* The audio engine simulates transmission, diffraction, and reflections at a level of detail suitable to most devices.
|
|
3214
|
+
*
|
|
3209
3215
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioSimulationFidelity#Automatic)
|
|
3210
3216
|
*/
|
|
3211
3217
|
export interface Automatic extends globalThis.EnumItem {
|
|
@@ -13581,6 +13587,42 @@ declare namespace Enum {
|
|
|
13581
13587
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.GuiType | undefined;
|
|
13582
13588
|
}
|
|
13583
13589
|
export type GuiType = GuiType.Core | GuiType.Custom | GuiType.PlayerNameplates | GuiType.CustomBillboards | GuiType.CoreBillboards;
|
|
13590
|
+
/**
|
|
13591
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HandRigDescriptionSide)
|
|
13592
|
+
*/
|
|
13593
|
+
export namespace HandRigDescriptionSide {
|
|
13594
|
+
/**
|
|
13595
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HandRigDescriptionSide#None)
|
|
13596
|
+
*/
|
|
13597
|
+
export interface None extends globalThis.EnumItem {
|
|
13598
|
+
Name: "None";
|
|
13599
|
+
Value: 0;
|
|
13600
|
+
EnumType: typeof globalThis.Enum.HandRigDescriptionSide;
|
|
13601
|
+
}
|
|
13602
|
+
export const None: None;
|
|
13603
|
+
/**
|
|
13604
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HandRigDescriptionSide#Left)
|
|
13605
|
+
*/
|
|
13606
|
+
export interface Left extends globalThis.EnumItem {
|
|
13607
|
+
Name: "Left";
|
|
13608
|
+
Value: 1;
|
|
13609
|
+
EnumType: typeof globalThis.Enum.HandRigDescriptionSide;
|
|
13610
|
+
}
|
|
13611
|
+
export const Left: Left;
|
|
13612
|
+
/**
|
|
13613
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HandRigDescriptionSide#Right)
|
|
13614
|
+
*/
|
|
13615
|
+
export interface Right extends globalThis.EnumItem {
|
|
13616
|
+
Name: "Right";
|
|
13617
|
+
Value: 2;
|
|
13618
|
+
EnumType: typeof globalThis.Enum.HandRigDescriptionSide;
|
|
13619
|
+
}
|
|
13620
|
+
export const Right: Right;
|
|
13621
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.HandRigDescriptionSide>;
|
|
13622
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.HandRigDescriptionSide | undefined;
|
|
13623
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HandRigDescriptionSide | undefined;
|
|
13624
|
+
}
|
|
13625
|
+
export type HandRigDescriptionSide = HandRigDescriptionSide.None | HandRigDescriptionSide.Left | HandRigDescriptionSide.Right;
|
|
13584
13626
|
/**
|
|
13585
13627
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HandlesStyle)
|
|
13586
13628
|
*/
|
|
@@ -20884,6 +20926,42 @@ declare namespace Enum {
|
|
|
20884
20926
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.NameOcclusion | undefined;
|
|
20885
20927
|
}
|
|
20886
20928
|
export type NameOcclusion = NameOcclusion.NoOcclusion | NameOcclusion.EnemyOcclusion | NameOcclusion.OccludeAll;
|
|
20929
|
+
/**
|
|
20930
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/NegateOperationHiddenHistory)
|
|
20931
|
+
*/
|
|
20932
|
+
export namespace NegateOperationHiddenHistory {
|
|
20933
|
+
/**
|
|
20934
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/NegateOperationHiddenHistory#None)
|
|
20935
|
+
*/
|
|
20936
|
+
export interface None extends globalThis.EnumItem {
|
|
20937
|
+
Name: "None";
|
|
20938
|
+
Value: 0;
|
|
20939
|
+
EnumType: typeof globalThis.Enum.NegateOperationHiddenHistory;
|
|
20940
|
+
}
|
|
20941
|
+
export const None: None;
|
|
20942
|
+
/**
|
|
20943
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/NegateOperationHiddenHistory#NegatedUnion)
|
|
20944
|
+
*/
|
|
20945
|
+
export interface NegatedUnion extends globalThis.EnumItem {
|
|
20946
|
+
Name: "NegatedUnion";
|
|
20947
|
+
Value: 1;
|
|
20948
|
+
EnumType: typeof globalThis.Enum.NegateOperationHiddenHistory;
|
|
20949
|
+
}
|
|
20950
|
+
export const NegatedUnion: NegatedUnion;
|
|
20951
|
+
/**
|
|
20952
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/NegateOperationHiddenHistory#NegatedIntersection)
|
|
20953
|
+
*/
|
|
20954
|
+
export interface NegatedIntersection extends globalThis.EnumItem {
|
|
20955
|
+
Name: "NegatedIntersection";
|
|
20956
|
+
Value: 2;
|
|
20957
|
+
EnumType: typeof globalThis.Enum.NegateOperationHiddenHistory;
|
|
20958
|
+
}
|
|
20959
|
+
export const NegatedIntersection: NegatedIntersection;
|
|
20960
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.NegateOperationHiddenHistory>;
|
|
20961
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.NegateOperationHiddenHistory | undefined;
|
|
20962
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.NegateOperationHiddenHistory | undefined;
|
|
20963
|
+
}
|
|
20964
|
+
export type NegateOperationHiddenHistory = NegateOperationHiddenHistory.None | NegateOperationHiddenHistory.NegatedUnion | NegateOperationHiddenHistory.NegatedIntersection;
|
|
20887
20965
|
/**
|
|
20888
20966
|
* Defines how simulation authority is determined for the Network Ownership Unit/Mechanism this part is attached to.
|
|
20889
20967
|
*
|
|
@@ -26678,6 +26756,8 @@ declare namespace Enum {
|
|
|
26678
26756
|
*/
|
|
26679
26757
|
export namespace StateObjectFieldType {
|
|
26680
26758
|
/**
|
|
26759
|
+
* **Deprecated:**
|
|
26760
|
+
*
|
|
26681
26761
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StateObjectFieldType#Boolean)
|
|
26682
26762
|
*/
|
|
26683
26763
|
export interface Boolean extends globalThis.EnumItem {
|
|
@@ -26687,6 +26767,8 @@ declare namespace Enum {
|
|
|
26687
26767
|
}
|
|
26688
26768
|
export const Boolean: Boolean;
|
|
26689
26769
|
/**
|
|
26770
|
+
* **Deprecated:**
|
|
26771
|
+
*
|
|
26690
26772
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StateObjectFieldType#CFrame)
|
|
26691
26773
|
*/
|
|
26692
26774
|
export interface CFrame extends globalThis.EnumItem {
|
|
@@ -26696,6 +26778,8 @@ declare namespace Enum {
|
|
|
26696
26778
|
}
|
|
26697
26779
|
export const CFrame: CFrame;
|
|
26698
26780
|
/**
|
|
26781
|
+
* **Deprecated:**
|
|
26782
|
+
*
|
|
26699
26783
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StateObjectFieldType#Color3)
|
|
26700
26784
|
*/
|
|
26701
26785
|
export interface Color3 extends globalThis.EnumItem {
|
|
@@ -26705,6 +26789,8 @@ declare namespace Enum {
|
|
|
26705
26789
|
}
|
|
26706
26790
|
export const Color3: Color3;
|
|
26707
26791
|
/**
|
|
26792
|
+
* **Deprecated:**
|
|
26793
|
+
*
|
|
26708
26794
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StateObjectFieldType#Float)
|
|
26709
26795
|
*/
|
|
26710
26796
|
export interface Float extends globalThis.EnumItem {
|
|
@@ -26714,6 +26800,8 @@ declare namespace Enum {
|
|
|
26714
26800
|
}
|
|
26715
26801
|
export const Float: Float;
|
|
26716
26802
|
/**
|
|
26803
|
+
* **Deprecated:**
|
|
26804
|
+
*
|
|
26717
26805
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StateObjectFieldType#Instance)
|
|
26718
26806
|
*/
|
|
26719
26807
|
export interface Instance extends globalThis.EnumItem {
|
|
@@ -26723,6 +26811,8 @@ declare namespace Enum {
|
|
|
26723
26811
|
}
|
|
26724
26812
|
export const Instance: Instance;
|
|
26725
26813
|
/**
|
|
26814
|
+
* **Deprecated:**
|
|
26815
|
+
*
|
|
26726
26816
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StateObjectFieldType#Random)
|
|
26727
26817
|
*/
|
|
26728
26818
|
export interface Random extends globalThis.EnumItem {
|
|
@@ -26732,6 +26822,8 @@ declare namespace Enum {
|
|
|
26732
26822
|
}
|
|
26733
26823
|
export const Random: Random;
|
|
26734
26824
|
/**
|
|
26825
|
+
* **Deprecated:**
|
|
26826
|
+
*
|
|
26735
26827
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StateObjectFieldType#Vector2)
|
|
26736
26828
|
*/
|
|
26737
26829
|
export interface Vector2 extends globalThis.EnumItem {
|
|
@@ -26741,6 +26833,8 @@ declare namespace Enum {
|
|
|
26741
26833
|
}
|
|
26742
26834
|
export const Vector2: Vector2;
|
|
26743
26835
|
/**
|
|
26836
|
+
* **Deprecated:**
|
|
26837
|
+
*
|
|
26744
26838
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StateObjectFieldType#Vector3)
|
|
26745
26839
|
*/
|
|
26746
26840
|
export interface Vector3 extends globalThis.EnumItem {
|
|
@@ -26750,6 +26844,8 @@ declare namespace Enum {
|
|
|
26750
26844
|
}
|
|
26751
26845
|
export const Vector3: Vector3;
|
|
26752
26846
|
/**
|
|
26847
|
+
* **Deprecated:**
|
|
26848
|
+
*
|
|
26753
26849
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StateObjectFieldType#INVALID)
|
|
26754
26850
|
*/
|
|
26755
26851
|
export interface INVALID extends globalThis.EnumItem {
|
|
@@ -33986,11 +34082,20 @@ declare namespace Enum {
|
|
|
33986
34082
|
EnumType: typeof globalThis.Enum.WrapLayerDebugMode;
|
|
33987
34083
|
}
|
|
33988
34084
|
export const LayerCageFittedToPrev: LayerCageFittedToPrev;
|
|
34085
|
+
/**
|
|
34086
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WrapLayerDebugMode#PreWrapDeformerOuterCage)
|
|
34087
|
+
*/
|
|
34088
|
+
export interface PreWrapDeformerOuterCage extends globalThis.EnumItem {
|
|
34089
|
+
Name: "PreWrapDeformerOuterCage";
|
|
34090
|
+
Value: 14;
|
|
34091
|
+
EnumType: typeof globalThis.Enum.WrapLayerDebugMode;
|
|
34092
|
+
}
|
|
34093
|
+
export const PreWrapDeformerOuterCage: PreWrapDeformerOuterCage;
|
|
33989
34094
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.WrapLayerDebugMode>;
|
|
33990
34095
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.WrapLayerDebugMode | undefined;
|
|
33991
34096
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WrapLayerDebugMode | undefined;
|
|
33992
34097
|
}
|
|
33993
|
-
export type WrapLayerDebugMode = WrapLayerDebugMode.None | WrapLayerDebugMode.BoundCage | WrapLayerDebugMode.LayerCage | WrapLayerDebugMode.BoundCageAndLinks | WrapLayerDebugMode.Reference | WrapLayerDebugMode.Rbf | WrapLayerDebugMode.OuterCage | WrapLayerDebugMode.ReferenceMeshAfterMorph | WrapLayerDebugMode.HSROuterDetail | WrapLayerDebugMode.HSROuter | WrapLayerDebugMode.HSRInner | WrapLayerDebugMode.HSRInnerReverse | WrapLayerDebugMode.LayerCageFittedToBase | WrapLayerDebugMode.LayerCageFittedToPrev;
|
|
34098
|
+
export type WrapLayerDebugMode = WrapLayerDebugMode.None | WrapLayerDebugMode.BoundCage | WrapLayerDebugMode.LayerCage | WrapLayerDebugMode.BoundCageAndLinks | WrapLayerDebugMode.Reference | WrapLayerDebugMode.Rbf | WrapLayerDebugMode.OuterCage | WrapLayerDebugMode.ReferenceMeshAfterMorph | WrapLayerDebugMode.HSROuterDetail | WrapLayerDebugMode.HSROuter | WrapLayerDebugMode.HSRInner | WrapLayerDebugMode.HSRInnerReverse | WrapLayerDebugMode.LayerCageFittedToBase | WrapLayerDebugMode.LayerCageFittedToPrev | WrapLayerDebugMode.PreWrapDeformerOuterCage;
|
|
33994
34099
|
/**
|
|
33995
34100
|
* The Studio-only property for quickly visualizing and debugging meshes with only outer cages.
|
|
33996
34101
|
*
|
|
@@ -34094,11 +34199,20 @@ declare namespace Enum {
|
|
|
34094
34199
|
EnumType: typeof globalThis.Enum.WrapTargetDebugMode;
|
|
34095
34200
|
}
|
|
34096
34201
|
export const OuterCageDetail: OuterCageDetail;
|
|
34202
|
+
/**
|
|
34203
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WrapTargetDebugMode#PreWrapDeformerCage)
|
|
34204
|
+
*/
|
|
34205
|
+
export interface PreWrapDeformerCage extends globalThis.EnumItem {
|
|
34206
|
+
Name: "PreWrapDeformerCage";
|
|
34207
|
+
Value: 9;
|
|
34208
|
+
EnumType: typeof globalThis.Enum.WrapTargetDebugMode;
|
|
34209
|
+
}
|
|
34210
|
+
export const PreWrapDeformerCage: PreWrapDeformerCage;
|
|
34097
34211
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.WrapTargetDebugMode>;
|
|
34098
34212
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.WrapTargetDebugMode | undefined;
|
|
34099
34213
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WrapTargetDebugMode | undefined;
|
|
34100
34214
|
}
|
|
34101
|
-
export type WrapTargetDebugMode = WrapTargetDebugMode.None | WrapTargetDebugMode.TargetCageOriginal | WrapTargetDebugMode.TargetCageCompressed | WrapTargetDebugMode.TargetCageInterface | WrapTargetDebugMode.TargetLayerCageOriginal | WrapTargetDebugMode.TargetLayerCageCompressed | WrapTargetDebugMode.TargetLayerInterface | WrapTargetDebugMode.Rbf | WrapTargetDebugMode.OuterCageDetail;
|
|
34215
|
+
export type WrapTargetDebugMode = WrapTargetDebugMode.None | WrapTargetDebugMode.TargetCageOriginal | WrapTargetDebugMode.TargetCageCompressed | WrapTargetDebugMode.TargetCageInterface | WrapTargetDebugMode.TargetLayerCageOriginal | WrapTargetDebugMode.TargetLayerCageCompressed | WrapTargetDebugMode.TargetLayerInterface | WrapTargetDebugMode.Rbf | WrapTargetDebugMode.OuterCageDetail | WrapTargetDebugMode.PreWrapDeformerCage;
|
|
34102
34216
|
/**
|
|
34103
34217
|
* Used by `LayerCollector.ZIndexBehavior` to control how the `GuiObject.ZIndex` property behaves for descendants.
|
|
34104
34218
|
*
|