@rbxts/types 1.0.846 → 1.0.848
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 +475 -48
- package/include/generated/PluginSecurity.d.ts +94 -24
- package/include/generated/enums.d.ts +696 -34
- package/package.json +1 -1
|
@@ -66,9 +66,11 @@ interface Services {
|
|
|
66
66
|
ExperienceStateCaptureService: ExperienceStateCaptureService;
|
|
67
67
|
ExplorerServiceVisibilityService: ExplorerServiceVisibilityService;
|
|
68
68
|
FaceAnimatorService: FaceAnimatorService;
|
|
69
|
+
FacialAgeEstimationService: FacialAgeEstimationService;
|
|
69
70
|
FacialAnimationRecordingService: FacialAnimationRecordingService;
|
|
70
71
|
FacialAnimationStreamingServiceV2: FacialAnimationStreamingServiceV2;
|
|
71
72
|
FeatureRestrictionManager: FeatureRestrictionManager;
|
|
73
|
+
FeedService: FeedService;
|
|
72
74
|
GamepadService: GamepadService;
|
|
73
75
|
GamePassService: GamePassService;
|
|
74
76
|
GenerationService: GenerationService;
|
|
@@ -116,6 +118,7 @@ interface Services {
|
|
|
116
118
|
PathfindingService: PathfindingService;
|
|
117
119
|
PerformanceControlService: PerformanceControlService;
|
|
118
120
|
PhysicsService: PhysicsService;
|
|
121
|
+
PlaceAssetIdsService: PlaceAssetIdsService;
|
|
119
122
|
PlacesService: PlacesService;
|
|
120
123
|
PlaceStatsService: PlaceStatsService;
|
|
121
124
|
PlatformCloudStorageService: PlatformCloudStorageService;
|
|
@@ -176,6 +179,7 @@ interface Services {
|
|
|
176
179
|
StudioUserService: StudioUserService;
|
|
177
180
|
StudioWidgetsService: StudioWidgetsService;
|
|
178
181
|
StylingService: StylingService;
|
|
182
|
+
SystemThemeService: SystemThemeService;
|
|
179
183
|
TeamCreateData: TeamCreateData;
|
|
180
184
|
TeamCreatePublishService: TeamCreatePublishService;
|
|
181
185
|
TeamCreateService: TeamCreateService;
|
|
@@ -561,6 +565,7 @@ interface Instances extends Services, CreatableInstances {
|
|
|
561
565
|
FacialAnimationStreamingSubsessionStats: FacialAnimationStreamingSubsessionStats;
|
|
562
566
|
FacsImportData: FacsImportData;
|
|
563
567
|
Feature: Feature;
|
|
568
|
+
FeedPages: FeedPages;
|
|
564
569
|
FormFactorPart: FormFactorPart;
|
|
565
570
|
FriendPages: FriendPages;
|
|
566
571
|
GenericSettings: GenericSettings;
|
|
@@ -1006,6 +1011,12 @@ interface EditableMesh extends RBXObject {
|
|
|
1006
1011
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SkinningEnabled)
|
|
1007
1012
|
*/
|
|
1008
1013
|
SkinningEnabled: boolean;
|
|
1014
|
+
/**
|
|
1015
|
+
* - **ThreadSafety**: Unsafe
|
|
1016
|
+
*
|
|
1017
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#AddBone)
|
|
1018
|
+
*/
|
|
1019
|
+
AddBone(this: EditableMesh, boneProperties: object): number;
|
|
1009
1020
|
/**
|
|
1010
1021
|
* Adds a new color to the geometry and returns a stable color ID.
|
|
1011
1022
|
*
|
|
@@ -1133,6 +1144,42 @@ interface EditableMesh extends RBXObject {
|
|
|
1133
1144
|
* @returns List of IDs of adjacent vertices around the given vertex ID.
|
|
1134
1145
|
*/
|
|
1135
1146
|
GetAdjacentVertices(this: EditableMesh, vertexId: number): Array<number>;
|
|
1147
|
+
/**
|
|
1148
|
+
* - **ThreadSafety**: Unsafe
|
|
1149
|
+
*
|
|
1150
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneByName)
|
|
1151
|
+
*/
|
|
1152
|
+
GetBoneByName(this: EditableMesh, boneName: string): number;
|
|
1153
|
+
/**
|
|
1154
|
+
* - **ThreadSafety**: Unsafe
|
|
1155
|
+
*
|
|
1156
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneCFrame)
|
|
1157
|
+
*/
|
|
1158
|
+
GetBoneCFrame(this: EditableMesh, boneId: number): CFrame;
|
|
1159
|
+
/**
|
|
1160
|
+
* - **ThreadSafety**: Unsafe
|
|
1161
|
+
*
|
|
1162
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneIsVirtual)
|
|
1163
|
+
*/
|
|
1164
|
+
GetBoneIsVirtual(this: EditableMesh, boneId: number): boolean;
|
|
1165
|
+
/**
|
|
1166
|
+
* - **ThreadSafety**: Unsafe
|
|
1167
|
+
*
|
|
1168
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneName)
|
|
1169
|
+
*/
|
|
1170
|
+
GetBoneName(this: EditableMesh, boneId: number): string;
|
|
1171
|
+
/**
|
|
1172
|
+
* - **ThreadSafety**: Unsafe
|
|
1173
|
+
*
|
|
1174
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneParent)
|
|
1175
|
+
*/
|
|
1176
|
+
GetBoneParent(this: EditableMesh, boneId: number): number;
|
|
1177
|
+
/**
|
|
1178
|
+
* - **ThreadSafety**: Unsafe
|
|
1179
|
+
*
|
|
1180
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBones)
|
|
1181
|
+
*/
|
|
1182
|
+
GetBones(this: EditableMesh): Array<unknown>;
|
|
1136
1183
|
/**
|
|
1137
1184
|
* - **ThreadSafety**: Unsafe
|
|
1138
1185
|
*
|
|
@@ -1234,6 +1281,8 @@ interface EditableMesh extends RBXObject {
|
|
|
1234
1281
|
*/
|
|
1235
1282
|
GetFaces(this: EditableMesh): Array<unknown>;
|
|
1236
1283
|
/**
|
|
1284
|
+
* **Deprecated:**
|
|
1285
|
+
*
|
|
1237
1286
|
* Returns a list of faces that use a given attribute ID.
|
|
1238
1287
|
*
|
|
1239
1288
|
* - **ThreadSafety**: Unsafe
|
|
@@ -1252,6 +1301,8 @@ interface EditableMesh extends RBXObject {
|
|
|
1252
1301
|
* - **Tags**: CustomLuaState
|
|
1253
1302
|
*
|
|
1254
1303
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithColor)
|
|
1304
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1305
|
+
* @param colorId
|
|
1255
1306
|
*/
|
|
1256
1307
|
GetFacesWithColor(this: EditableMesh, colorId: number): Array<unknown>;
|
|
1257
1308
|
/**
|
|
@@ -1259,6 +1310,8 @@ interface EditableMesh extends RBXObject {
|
|
|
1259
1310
|
* - **Tags**: CustomLuaState
|
|
1260
1311
|
*
|
|
1261
1312
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithNormal)
|
|
1313
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1314
|
+
* @param normalId
|
|
1262
1315
|
*/
|
|
1263
1316
|
GetFacesWithNormal(this: EditableMesh, normalId: number): Array<unknown>;
|
|
1264
1317
|
/**
|
|
@@ -1266,8 +1319,34 @@ interface EditableMesh extends RBXObject {
|
|
|
1266
1319
|
* - **Tags**: CustomLuaState
|
|
1267
1320
|
*
|
|
1268
1321
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithUV)
|
|
1322
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1323
|
+
* @param uvId
|
|
1269
1324
|
*/
|
|
1270
1325
|
GetFacesWithUV(this: EditableMesh, uvId: number): Array<unknown>;
|
|
1326
|
+
/**
|
|
1327
|
+
* - **ThreadSafety**: Unsafe
|
|
1328
|
+
*
|
|
1329
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsCorrectivePose)
|
|
1330
|
+
*/
|
|
1331
|
+
GetFacsCorrectivePose(this: EditableMesh, actions: Array<unknown>): unknown;
|
|
1332
|
+
/**
|
|
1333
|
+
* - **ThreadSafety**: Unsafe
|
|
1334
|
+
*
|
|
1335
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsCorrectivePoses)
|
|
1336
|
+
*/
|
|
1337
|
+
GetFacsCorrectivePoses(this: EditableMesh): Array<unknown>;
|
|
1338
|
+
/**
|
|
1339
|
+
* - **ThreadSafety**: Unsafe
|
|
1340
|
+
*
|
|
1341
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsPose)
|
|
1342
|
+
*/
|
|
1343
|
+
GetFacsPose(this: EditableMesh, action: CastsToEnum<Enum.FacsActionUnit>): unknown;
|
|
1344
|
+
/**
|
|
1345
|
+
* - **ThreadSafety**: Unsafe
|
|
1346
|
+
*
|
|
1347
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsPoses)
|
|
1348
|
+
*/
|
|
1349
|
+
GetFacsPoses(this: EditableMesh): Array<unknown>;
|
|
1271
1350
|
/**
|
|
1272
1351
|
* Returns the normal vector for the given normal ID.
|
|
1273
1352
|
*
|
|
@@ -1331,29 +1410,52 @@ interface EditableMesh extends RBXObject {
|
|
|
1331
1410
|
* @returns List of stable UV IDs.
|
|
1332
1411
|
*/
|
|
1333
1412
|
GetUVs(this: EditableMesh): Array<unknown>;
|
|
1413
|
+
/**
|
|
1414
|
+
* - **ThreadSafety**: Unsafe
|
|
1415
|
+
*
|
|
1416
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexBoneWeights)
|
|
1417
|
+
*/
|
|
1418
|
+
GetVertexBoneWeights(this: EditableMesh, vertexId: number): Array<unknown>;
|
|
1419
|
+
/**
|
|
1420
|
+
* - **ThreadSafety**: Unsafe
|
|
1421
|
+
*
|
|
1422
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexBones)
|
|
1423
|
+
*/
|
|
1424
|
+
GetVertexBones(this: EditableMesh, vertexId: number): Array<unknown>;
|
|
1334
1425
|
/**
|
|
1335
1426
|
* - **ThreadSafety**: Unsafe
|
|
1336
1427
|
* - **Tags**: CustomLuaState
|
|
1337
1428
|
*
|
|
1338
1429
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexColors)
|
|
1430
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1431
|
+
* @param vertexId
|
|
1339
1432
|
*/
|
|
1340
1433
|
GetVertexColors(this: EditableMesh, vertexId: number): Array<unknown>;
|
|
1341
1434
|
/**
|
|
1342
1435
|
* - **ThreadSafety**: Unsafe
|
|
1343
1436
|
*
|
|
1344
1437
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceColor)
|
|
1438
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1439
|
+
* @param vertexId
|
|
1440
|
+
* @param faceId
|
|
1345
1441
|
*/
|
|
1346
1442
|
GetVertexFaceColor(this: EditableMesh, vertexId: number, faceId: number): number;
|
|
1347
1443
|
/**
|
|
1348
1444
|
* - **ThreadSafety**: Unsafe
|
|
1349
1445
|
*
|
|
1350
1446
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceNormal)
|
|
1447
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1448
|
+
* @param vertexId
|
|
1449
|
+
* @param faceId
|
|
1351
1450
|
*/
|
|
1352
1451
|
GetVertexFaceNormal(this: EditableMesh, vertexId: number, faceId: number): number;
|
|
1353
1452
|
/**
|
|
1354
1453
|
* - **ThreadSafety**: Unsafe
|
|
1355
1454
|
*
|
|
1356
1455
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceUV)
|
|
1456
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1457
|
+
* @param vertexId
|
|
1458
|
+
* @param faceId
|
|
1357
1459
|
*/
|
|
1358
1460
|
GetVertexFaceUV(this: EditableMesh, vertexId: number, faceId: number): number;
|
|
1359
1461
|
/**
|
|
@@ -1361,6 +1463,8 @@ interface EditableMesh extends RBXObject {
|
|
|
1361
1463
|
* - **Tags**: CustomLuaState
|
|
1362
1464
|
*
|
|
1363
1465
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaces)
|
|
1466
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1467
|
+
* @param vertexId
|
|
1364
1468
|
*/
|
|
1365
1469
|
GetVertexFaces(this: EditableMesh, vertexId: number): Array<unknown>;
|
|
1366
1470
|
/**
|
|
@@ -1368,6 +1472,8 @@ interface EditableMesh extends RBXObject {
|
|
|
1368
1472
|
* - **Tags**: CustomLuaState
|
|
1369
1473
|
*
|
|
1370
1474
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexNormals)
|
|
1475
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1476
|
+
* @param vertexId
|
|
1371
1477
|
*/
|
|
1372
1478
|
GetVertexNormals(this: EditableMesh, vertexId: number): Array<unknown>;
|
|
1373
1479
|
/**
|
|
@@ -1375,6 +1481,8 @@ interface EditableMesh extends RBXObject {
|
|
|
1375
1481
|
* - **Tags**: CustomLuaState
|
|
1376
1482
|
*
|
|
1377
1483
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexUVs)
|
|
1484
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1485
|
+
* @param vertexId
|
|
1378
1486
|
*/
|
|
1379
1487
|
GetVertexUVs(this: EditableMesh, vertexId: number): Array<unknown>;
|
|
1380
1488
|
/**
|
|
@@ -1388,6 +1496,8 @@ interface EditableMesh extends RBXObject {
|
|
|
1388
1496
|
*/
|
|
1389
1497
|
GetVertices(this: EditableMesh): Array<number>;
|
|
1390
1498
|
/**
|
|
1499
|
+
* **Deprecated:**
|
|
1500
|
+
*
|
|
1391
1501
|
* Returns a list of vertices that use a given attribute ID.
|
|
1392
1502
|
*
|
|
1393
1503
|
* - **ThreadSafety**: Unsafe
|
|
@@ -1406,6 +1516,8 @@ interface EditableMesh extends RBXObject {
|
|
|
1406
1516
|
* - **Tags**: CustomLuaState
|
|
1407
1517
|
*
|
|
1408
1518
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithColor)
|
|
1519
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1520
|
+
* @param colorId
|
|
1409
1521
|
*/
|
|
1410
1522
|
GetVerticesWithColor(this: EditableMesh, colorId: number): Array<unknown>;
|
|
1411
1523
|
/**
|
|
@@ -1413,6 +1525,8 @@ interface EditableMesh extends RBXObject {
|
|
|
1413
1525
|
* - **Tags**: CustomLuaState
|
|
1414
1526
|
*
|
|
1415
1527
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithNormal)
|
|
1528
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1529
|
+
* @param normalId
|
|
1416
1530
|
*/
|
|
1417
1531
|
GetVerticesWithNormal(this: EditableMesh, normalId: number): Array<unknown>;
|
|
1418
1532
|
/**
|
|
@@ -1420,6 +1534,8 @@ interface EditableMesh extends RBXObject {
|
|
|
1420
1534
|
* - **Tags**: CustomLuaState
|
|
1421
1535
|
*
|
|
1422
1536
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithUV)
|
|
1537
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1538
|
+
* @param uvId
|
|
1423
1539
|
*/
|
|
1424
1540
|
GetVerticesWithUV(this: EditableMesh, uvId: number): Array<unknown>;
|
|
1425
1541
|
/**
|
|
@@ -1458,6 +1574,12 @@ interface EditableMesh extends RBXObject {
|
|
|
1458
1574
|
Vector3,
|
|
1459
1575
|
Vector3
|
|
1460
1576
|
]>;
|
|
1577
|
+
/**
|
|
1578
|
+
* - **ThreadSafety**: Unsafe
|
|
1579
|
+
*
|
|
1580
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#RemoveBone)
|
|
1581
|
+
*/
|
|
1582
|
+
RemoveBone(this: EditableMesh, boneId: number): void;
|
|
1461
1583
|
/**
|
|
1462
1584
|
* Removes a face using its stable face ID.
|
|
1463
1585
|
*
|
|
@@ -1488,6 +1610,30 @@ interface EditableMesh extends RBXObject {
|
|
|
1488
1610
|
* @param normalId Stable normal ID to reset.
|
|
1489
1611
|
*/
|
|
1490
1612
|
ResetNormal(this: EditableMesh, normalId: number): void;
|
|
1613
|
+
/**
|
|
1614
|
+
* - **ThreadSafety**: Unsafe
|
|
1615
|
+
*
|
|
1616
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetBoneCFrame)
|
|
1617
|
+
*/
|
|
1618
|
+
SetBoneCFrame(this: EditableMesh, boneId: number, cframe: CFrame): void;
|
|
1619
|
+
/**
|
|
1620
|
+
* - **ThreadSafety**: Unsafe
|
|
1621
|
+
*
|
|
1622
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetBoneIsVirtual)
|
|
1623
|
+
*/
|
|
1624
|
+
SetBoneIsVirtual(this: EditableMesh, boneId: number, virtual: boolean): void;
|
|
1625
|
+
/**
|
|
1626
|
+
* - **ThreadSafety**: Unsafe
|
|
1627
|
+
*
|
|
1628
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetBoneName)
|
|
1629
|
+
*/
|
|
1630
|
+
SetBoneName(this: EditableMesh, boneId: number, name: string): void;
|
|
1631
|
+
/**
|
|
1632
|
+
* - **ThreadSafety**: Unsafe
|
|
1633
|
+
*
|
|
1634
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetBoneParent)
|
|
1635
|
+
*/
|
|
1636
|
+
SetBoneParent(this: EditableMesh, boneId: number, parentBoneId: number): void;
|
|
1491
1637
|
/**
|
|
1492
1638
|
* Sets the color for a color ID.
|
|
1493
1639
|
*
|
|
@@ -1558,6 +1704,24 @@ interface EditableMesh extends RBXObject {
|
|
|
1558
1704
|
* @param ids List of new stable vertex IDs to use for the given face.
|
|
1559
1705
|
*/
|
|
1560
1706
|
SetFaceVertices(this: EditableMesh, faceId: number, ids: Array<unknown>): void;
|
|
1707
|
+
/**
|
|
1708
|
+
* - **ThreadSafety**: Unsafe
|
|
1709
|
+
*
|
|
1710
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetFacsBonePose)
|
|
1711
|
+
*/
|
|
1712
|
+
SetFacsBonePose(this: EditableMesh, action: CastsToEnum<Enum.FacsActionUnit>, boneId: number, cframe: CFrame): void;
|
|
1713
|
+
/**
|
|
1714
|
+
* - **ThreadSafety**: Unsafe
|
|
1715
|
+
*
|
|
1716
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetFacsCorrectivePose)
|
|
1717
|
+
*/
|
|
1718
|
+
SetFacsCorrectivePose(this: EditableMesh, actions: Array<unknown>, boneIds: Array<unknown>, cframes: Array<unknown>): void;
|
|
1719
|
+
/**
|
|
1720
|
+
* - **ThreadSafety**: Unsafe
|
|
1721
|
+
*
|
|
1722
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetFacsPose)
|
|
1723
|
+
*/
|
|
1724
|
+
SetFacsPose(this: EditableMesh, action: CastsToEnum<Enum.FacsActionUnit>, boneIds: Array<unknown>, cframes: Array<unknown>): void;
|
|
1561
1725
|
/**
|
|
1562
1726
|
* Set the normal for a normal ID.
|
|
1563
1727
|
*
|
|
@@ -1591,22 +1755,46 @@ interface EditableMesh extends RBXObject {
|
|
|
1591
1755
|
* @param uv UV coordinates.
|
|
1592
1756
|
*/
|
|
1593
1757
|
SetUV(this: EditableMesh, uvId: number, uv: Vector2): void;
|
|
1758
|
+
/**
|
|
1759
|
+
* - **ThreadSafety**: Unsafe
|
|
1760
|
+
*
|
|
1761
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexBoneWeights)
|
|
1762
|
+
*/
|
|
1763
|
+
SetVertexBoneWeights(this: EditableMesh, vertexId: number, boneWeights: Array<unknown>): void;
|
|
1764
|
+
/**
|
|
1765
|
+
* - **ThreadSafety**: Unsafe
|
|
1766
|
+
*
|
|
1767
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexBones)
|
|
1768
|
+
*/
|
|
1769
|
+
SetVertexBones(this: EditableMesh, vertexId: number, boneIDs: Array<unknown>): void;
|
|
1594
1770
|
/**
|
|
1595
1771
|
* - **ThreadSafety**: Unsafe
|
|
1596
1772
|
*
|
|
1597
1773
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexFaceColor)
|
|
1774
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1775
|
+
* @param vertexId
|
|
1776
|
+
* @param faceId
|
|
1777
|
+
* @param colorId
|
|
1598
1778
|
*/
|
|
1599
1779
|
SetVertexFaceColor(this: EditableMesh, vertexId: number, faceId: number, colorId: number): void;
|
|
1600
1780
|
/**
|
|
1601
1781
|
* - **ThreadSafety**: Unsafe
|
|
1602
1782
|
*
|
|
1603
1783
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexFaceNormal)
|
|
1784
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1785
|
+
* @param vertexId
|
|
1786
|
+
* @param faceId
|
|
1787
|
+
* @param normalId
|
|
1604
1788
|
*/
|
|
1605
1789
|
SetVertexFaceNormal(this: EditableMesh, vertexId: number, faceId: number, normalId: number): void;
|
|
1606
1790
|
/**
|
|
1607
1791
|
* - **ThreadSafety**: Unsafe
|
|
1608
1792
|
*
|
|
1609
1793
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexFaceUV)
|
|
1794
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1795
|
+
* @param vertexId
|
|
1796
|
+
* @param faceId
|
|
1797
|
+
* @param uvId
|
|
1610
1798
|
*/
|
|
1611
1799
|
SetVertexFaceUV(this: EditableMesh, vertexId: number, faceId: number, uvId: number): void;
|
|
1612
1800
|
/**
|
|
@@ -1643,6 +1831,14 @@ interface Instance extends RBXObject {
|
|
|
1643
1831
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#Archivable)
|
|
1644
1832
|
*/
|
|
1645
1833
|
Archivable: boolean;
|
|
1834
|
+
/**
|
|
1835
|
+
* The set of capabilities allowed to be used for scripts inside this container.
|
|
1836
|
+
*
|
|
1837
|
+
* - **ThreadSafety**: ReadSafe
|
|
1838
|
+
*
|
|
1839
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#Capabilities)
|
|
1840
|
+
*/
|
|
1841
|
+
Capabilities: SecurityCapabilities;
|
|
1646
1842
|
/**
|
|
1647
1843
|
* A non-unique identifier of the `Instance`.
|
|
1648
1844
|
*
|
|
@@ -1660,6 +1856,15 @@ interface Instance extends RBXObject {
|
|
|
1660
1856
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#Parent)
|
|
1661
1857
|
*/
|
|
1662
1858
|
Parent: Instance | undefined;
|
|
1859
|
+
/**
|
|
1860
|
+
* Turns the instance to be a sandboxed container.
|
|
1861
|
+
*
|
|
1862
|
+
* - **ThreadSafety**: ReadSafe
|
|
1863
|
+
* - **Tags**: NotReplicated
|
|
1864
|
+
*
|
|
1865
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#Sandboxed)
|
|
1866
|
+
*/
|
|
1867
|
+
Sandboxed: boolean;
|
|
1663
1868
|
/**
|
|
1664
1869
|
* Applies a tag to the instance.
|
|
1665
1870
|
*
|
|
@@ -2312,7 +2517,7 @@ interface AnalyticsService extends Instance {
|
|
|
2312
2517
|
*
|
|
2313
2518
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#FireCustomEvent)
|
|
2314
2519
|
* @param this Collection of methods that allows developers to track how users interact with their experiences.
|
|
2315
|
-
* @param player The player who triggered the custom event. nil if not player related.
|
|
2520
|
+
* @param player The player who triggered the custom event. `nil` if not player related.
|
|
2316
2521
|
* @param eventCategory User defined category. This should be the name of the event.
|
|
2317
2522
|
* @param customData Optional. User defined data, could be a string, a number or a table.
|
|
2318
2523
|
*
|
|
@@ -2377,7 +2582,7 @@ interface AnalyticsService extends Instance {
|
|
|
2377
2582
|
*
|
|
2378
2583
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#FireLogEvent)
|
|
2379
2584
|
* @param this Collection of methods that allows developers to track how users interact with their experiences.
|
|
2380
|
-
* @param player The player who triggered the error event, nil if not player related.
|
|
2585
|
+
* @param player The player who triggered the error event, `nil` if not player related.
|
|
2381
2586
|
* @param logLevel The specified log level (e.g. Debug, Error).
|
|
2382
2587
|
* @param message User defined message.
|
|
2383
2588
|
* @param debugInfo Optional. A dictionary which contains predefined keys including "errorCode" and "stackTrace". Both keys values are strings. stackTrace is a traceback of the current function call stack.
|
|
@@ -2644,7 +2849,7 @@ interface KeyframeSequence extends AnimationClip {
|
|
|
2644
2849
|
*/
|
|
2645
2850
|
GetKeyframes(this: KeyframeSequence): Array<Keyframe>;
|
|
2646
2851
|
/**
|
|
2647
|
-
* This function removes a `Keyframe` from the `KeyframeSequence` by setting its parent to nil
|
|
2852
|
+
* This function removes a `Keyframe` from the `KeyframeSequence` by setting its parent to `nil`.
|
|
2648
2853
|
*
|
|
2649
2854
|
* - **ThreadSafety**: Unsafe
|
|
2650
2855
|
*
|
|
@@ -3412,6 +3617,14 @@ interface AssetService extends Instance {
|
|
|
3412
3617
|
* @param editableMeshOptions Table containing options for the created `EditableMesh`. Currently no options are available since `FixedSize` will always be `false` for empty editable meshes.
|
|
3413
3618
|
*/
|
|
3414
3619
|
CreateEditableMesh(this: AssetService, editableMeshOptions?: object): EditableMesh;
|
|
3620
|
+
/**
|
|
3621
|
+
* - **ThreadSafety**: Unsafe
|
|
3622
|
+
*
|
|
3623
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#CreateSurfaceAppearance)
|
|
3624
|
+
* @param this A non-replicated service that handles asset-related queries to the Roblox web API.
|
|
3625
|
+
* @param content
|
|
3626
|
+
*/
|
|
3627
|
+
CreateSurfaceAppearance(this: AssetService, content: object): SurfaceAppearance;
|
|
3415
3628
|
/**
|
|
3416
3629
|
* Uploads a new asset to Roblox from the given object.
|
|
3417
3630
|
*
|
|
@@ -6165,12 +6378,6 @@ interface AvatarCreationService extends Instance {
|
|
|
6165
6378
|
* @returns Dictionary of validation rules as detailed above.
|
|
6166
6379
|
*/
|
|
6167
6380
|
GetValidationRules(this: AvatarCreationService): object;
|
|
6168
|
-
/**
|
|
6169
|
-
* - **ThreadSafety**: Unsafe
|
|
6170
|
-
*
|
|
6171
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#SendAnalyticsEvent)
|
|
6172
|
-
*/
|
|
6173
|
-
SendAnalyticsEvent(this: AvatarCreationService, eventName: string, params: object): void;
|
|
6174
6381
|
/**
|
|
6175
6382
|
* - **ThreadSafety**: Unsafe
|
|
6176
6383
|
* - **Tags**: Yields
|
|
@@ -6187,13 +6394,6 @@ interface AvatarCreationService extends Instance {
|
|
|
6187
6394
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#GenerateAvatarAsync)
|
|
6188
6395
|
*/
|
|
6189
6396
|
GenerateAvatarAsync(this: AvatarCreationService, avatarGenerationParams: object): string;
|
|
6190
|
-
/**
|
|
6191
|
-
* - **ThreadSafety**: Unsafe
|
|
6192
|
-
* - **Tags**: Yields
|
|
6193
|
-
*
|
|
6194
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#GetAvatarGenerationConfig)
|
|
6195
|
-
*/
|
|
6196
|
-
GetAvatarGenerationConfig(this: AvatarCreationService): object;
|
|
6197
6397
|
/**
|
|
6198
6398
|
* Gets the avatar creation token details for a list of avatar creation tokens at once.
|
|
6199
6399
|
*
|
|
@@ -6422,7 +6622,7 @@ interface AvatarEditorService extends Instance {
|
|
|
6422
6622
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#CheckApplyDefaultClothing)
|
|
6423
6623
|
* @param this A service to support developer Avatar Editors.
|
|
6424
6624
|
* @param humanoidDescription The HumanoidDescription to check if default clothing is required.
|
|
6425
|
-
* @returns Returns a HumanoidDescription if default clothing was necessary. Otherwise returns nil
|
|
6625
|
+
* @returns Returns a HumanoidDescription if default clothing was necessary. Otherwise returns `nil`.
|
|
6426
6626
|
*/
|
|
6427
6627
|
CheckApplyDefaultClothing(this: AvatarEditorService, humanoidDescription: HumanoidDescription): HumanoidDescription;
|
|
6428
6628
|
/**
|
|
@@ -7230,12 +7430,6 @@ interface RootImportData extends BaseImportData {
|
|
|
7230
7430
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RootImportData#ScaleUnit)
|
|
7231
7431
|
*/
|
|
7232
7432
|
ScaleUnit: Enum.MeshScaleUnit;
|
|
7233
|
-
/**
|
|
7234
|
-
* - **ThreadSafety**: ReadSafe
|
|
7235
|
-
*
|
|
7236
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RootImportData#UseSceneOriginAsCFrame)
|
|
7237
|
-
*/
|
|
7238
|
-
UseSceneOriginAsCFrame: boolean;
|
|
7239
7433
|
/**
|
|
7240
7434
|
* - **ThreadSafety**: ReadSafe
|
|
7241
7435
|
*
|
|
@@ -10022,6 +10216,18 @@ interface ConfigService extends Instance {
|
|
|
10022
10216
|
* @deprecated
|
|
10023
10217
|
*/
|
|
10024
10218
|
readonly _nominal_ConfigService: unique symbol;
|
|
10219
|
+
/**
|
|
10220
|
+
* - **ThreadSafety**: Unsafe
|
|
10221
|
+
*
|
|
10222
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConfigService#ClearTestingValue)
|
|
10223
|
+
*/
|
|
10224
|
+
ClearTestingValue(this: ConfigService, key: string): void;
|
|
10225
|
+
/**
|
|
10226
|
+
* - **ThreadSafety**: Unsafe
|
|
10227
|
+
*
|
|
10228
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConfigService#SetTestingValue)
|
|
10229
|
+
*/
|
|
10230
|
+
SetTestingValue(this: ConfigService, key: string, value: unknown): void;
|
|
10025
10231
|
/**
|
|
10026
10232
|
* - **ThreadSafety**: Unsafe
|
|
10027
10233
|
* - **Tags**: Yields
|
|
@@ -11891,7 +12097,7 @@ interface ContentProvider extends Instance {
|
|
|
11891
12097
|
*
|
|
11892
12098
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ContentProvider#PreloadAsync)
|
|
11893
12099
|
* @param this Service that is used to load content, or assets, into a game.
|
|
11894
|
-
* @param contentIdList An array of instances
|
|
12100
|
+
* @param contentIdList An array of instances to load.
|
|
11895
12101
|
* @param callbackFunction The function called when each asset request completes. Returns the `content` string and the asset's final `AssetFetchStatus`.
|
|
11896
12102
|
*/
|
|
11897
12103
|
PreloadAsync(this: ContentProvider, contentIdList: Array<Instance | string>, callback?: (contentId: string, status: Enum.AssetFetchStatus) => void): void;
|
|
@@ -12000,7 +12206,7 @@ interface ContextActionService extends Instance {
|
|
|
12000
12206
|
*
|
|
12001
12207
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ContextActionService#GetCurrentLocalToolIcon)
|
|
12002
12208
|
* @param this A service used to bind user input to contextual actions.
|
|
12003
|
-
* @returns A content string from the Tool's TextureId, or nil if one could not be found.
|
|
12209
|
+
* @returns A content string from the Tool's TextureId, or `nil` if one could not be found.
|
|
12004
12210
|
*/
|
|
12005
12211
|
GetCurrentLocalToolIcon(this: ContextActionService): string;
|
|
12006
12212
|
/**
|
|
@@ -14357,6 +14563,21 @@ interface Texture extends Decal {
|
|
|
14357
14563
|
*/
|
|
14358
14564
|
StudsPerTileV: number;
|
|
14359
14565
|
}
|
|
14566
|
+
/**
|
|
14567
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
14568
|
+
*
|
|
14569
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FacialAgeEstimationService)
|
|
14570
|
+
*/
|
|
14571
|
+
interface FacialAgeEstimationService extends Instance {
|
|
14572
|
+
/**
|
|
14573
|
+
* **DO NOT USE!**
|
|
14574
|
+
*
|
|
14575
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
14576
|
+
* @hidden
|
|
14577
|
+
* @deprecated
|
|
14578
|
+
*/
|
|
14579
|
+
readonly _nominal_FacialAgeEstimationService: unique symbol;
|
|
14580
|
+
}
|
|
14360
14581
|
/**
|
|
14361
14582
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
14362
14583
|
*
|
|
@@ -14519,6 +14740,42 @@ interface FeatureRestrictionManager extends Instance {
|
|
|
14519
14740
|
*/
|
|
14520
14741
|
readonly _nominal_FeatureRestrictionManager: unique symbol;
|
|
14521
14742
|
}
|
|
14743
|
+
/**
|
|
14744
|
+
* - **Tags**: NotCreatable, Service
|
|
14745
|
+
*
|
|
14746
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService)
|
|
14747
|
+
*/
|
|
14748
|
+
interface FeedService extends Instance {
|
|
14749
|
+
/**
|
|
14750
|
+
* **DO NOT USE!**
|
|
14751
|
+
*
|
|
14752
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
14753
|
+
* @hidden
|
|
14754
|
+
* @deprecated
|
|
14755
|
+
*/
|
|
14756
|
+
readonly _nominal_FeedService: unique symbol;
|
|
14757
|
+
/**
|
|
14758
|
+
* - **ThreadSafety**: Unsafe
|
|
14759
|
+
* - **Tags**: Yields
|
|
14760
|
+
*
|
|
14761
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService#BatchRemoveFeedItemsAsync)
|
|
14762
|
+
*/
|
|
14763
|
+
BatchRemoveFeedItemsAsync(this: FeedService, feedItemIds: Array<unknown>): void;
|
|
14764
|
+
/**
|
|
14765
|
+
* - **ThreadSafety**: Unsafe
|
|
14766
|
+
* - **Tags**: Yields
|
|
14767
|
+
*
|
|
14768
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService#GetFeedItemsAsync)
|
|
14769
|
+
*/
|
|
14770
|
+
GetFeedItemsAsync(this: FeedService, getFeedRequest: object): FeedPages;
|
|
14771
|
+
/**
|
|
14772
|
+
* - **ThreadSafety**: Unsafe
|
|
14773
|
+
* - **Tags**: Yields
|
|
14774
|
+
*
|
|
14775
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService#RegisterFeedItemsAsync)
|
|
14776
|
+
*/
|
|
14777
|
+
RegisterFeedItemsAsync(this: FeedService, registerFeedItemsRequest: object): object;
|
|
14778
|
+
}
|
|
14522
14779
|
/**
|
|
14523
14780
|
* A particle emitter with the visual aesthetic of fire.
|
|
14524
14781
|
*
|
|
@@ -16031,6 +16288,8 @@ interface GuiButton extends GuiObject {
|
|
|
16031
16288
|
*/
|
|
16032
16289
|
AutoButtonColor: boolean;
|
|
16033
16290
|
/**
|
|
16291
|
+
* A `HapticEffect` instance that will play when the `GuiButton` is being hovered.
|
|
16292
|
+
*
|
|
16034
16293
|
* - **ThreadSafety**: ReadSafe
|
|
16035
16294
|
*
|
|
16036
16295
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GuiButton#HoverHapticEffect)
|
|
@@ -16045,6 +16304,8 @@ interface GuiButton extends GuiObject {
|
|
|
16045
16304
|
*/
|
|
16046
16305
|
Modal: boolean;
|
|
16047
16306
|
/**
|
|
16307
|
+
* A `HapticEffect` instance that will play when the `GuiButton` is being pressed.
|
|
16308
|
+
*
|
|
16048
16309
|
* - **ThreadSafety**: ReadSafe
|
|
16049
16310
|
*
|
|
16050
16311
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GuiButton#PressHapticEffect)
|
|
@@ -16145,6 +16406,12 @@ interface ImageButton extends GuiButton {
|
|
|
16145
16406
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ImageButton#HoverImage)
|
|
16146
16407
|
*/
|
|
16147
16408
|
HoverImage: ContentId;
|
|
16409
|
+
/**
|
|
16410
|
+
* - **ThreadSafety**: ReadSafe
|
|
16411
|
+
*
|
|
16412
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ImageButton#HoverImageContent)
|
|
16413
|
+
*/
|
|
16414
|
+
HoverImageContent: Content;
|
|
16148
16415
|
/**
|
|
16149
16416
|
* The image content displayed by the `ImageButton` element. Reads and writes to `ImageContent`.
|
|
16150
16417
|
*
|
|
@@ -16210,6 +16477,12 @@ interface ImageButton extends GuiButton {
|
|
|
16210
16477
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ImageButton#PressedImage)
|
|
16211
16478
|
*/
|
|
16212
16479
|
PressedImage: ContentId;
|
|
16480
|
+
/**
|
|
16481
|
+
* - **ThreadSafety**: ReadSafe
|
|
16482
|
+
*
|
|
16483
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ImageButton#PressedImageContent)
|
|
16484
|
+
*/
|
|
16485
|
+
PressedImageContent: Content;
|
|
16213
16486
|
/**
|
|
16214
16487
|
* Selects the image resampling mode for the button.
|
|
16215
16488
|
*
|
|
@@ -17433,12 +17706,14 @@ interface VideoDisplay extends GuiObject {
|
|
|
17433
17706
|
* - **ThreadSafety**: Unsafe
|
|
17434
17707
|
*
|
|
17435
17708
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#GetInputPins)
|
|
17709
|
+
* @param this
|
|
17436
17710
|
*/
|
|
17437
17711
|
GetInputPins(this: VideoDisplay): Array<unknown>;
|
|
17438
17712
|
/**
|
|
17439
17713
|
* - **ThreadSafety**: Unsafe
|
|
17440
17714
|
*
|
|
17441
17715
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#GetOutputPins)
|
|
17716
|
+
* @param this
|
|
17442
17717
|
*/
|
|
17443
17718
|
GetOutputPins(this: VideoDisplay): Array<unknown>;
|
|
17444
17719
|
/**
|
|
@@ -18617,6 +18892,12 @@ interface WireframeHandleAdornment extends HandleAdornment {
|
|
|
18617
18892
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WireframeHandleAdornment#Scale)
|
|
18618
18893
|
*/
|
|
18619
18894
|
Scale: Vector3;
|
|
18895
|
+
/**
|
|
18896
|
+
* - **ThreadSafety**: ReadSafe
|
|
18897
|
+
*
|
|
18898
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WireframeHandleAdornment#Thickness)
|
|
18899
|
+
*/
|
|
18900
|
+
Thickness: number;
|
|
18620
18901
|
/**
|
|
18621
18902
|
* - **ThreadSafety**: Unsafe
|
|
18622
18903
|
*
|
|
@@ -18824,7 +19105,7 @@ interface ArcHandles extends HandlesBase {
|
|
|
18824
19105
|
readonly MouseLeave: RBXScriptSignal<(axis: Enum.Axis) => void>;
|
|
18825
19106
|
}
|
|
18826
19107
|
/**
|
|
18827
|
-
*
|
|
19108
|
+
* Places 3D handles around any object that its `Adornee` is set to.
|
|
18828
19109
|
*
|
|
18829
19110
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Handles)
|
|
18830
19111
|
*/
|
|
@@ -18846,7 +19127,7 @@ interface Handles extends HandlesBase {
|
|
|
18846
19127
|
*/
|
|
18847
19128
|
Faces: Faces;
|
|
18848
19129
|
/**
|
|
18849
|
-
* Sets the GUI style of the handles.
|
|
19130
|
+
* Sets the GUI style of the handles.
|
|
18850
19131
|
*
|
|
18851
19132
|
* - **ThreadSafety**: ReadSafe
|
|
18852
19133
|
*
|
|
@@ -19538,45 +19819,63 @@ interface HapticEffect extends Instance {
|
|
|
19538
19819
|
*/
|
|
19539
19820
|
readonly _nominal_HapticEffect: unique symbol;
|
|
19540
19821
|
/**
|
|
19822
|
+
* Whether the haptic effect loops continuously.
|
|
19823
|
+
*
|
|
19541
19824
|
* - **ThreadSafety**: ReadSafe
|
|
19542
19825
|
*
|
|
19543
19826
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HapticEffect#Looped)
|
|
19544
19827
|
*/
|
|
19545
19828
|
Looped: boolean;
|
|
19546
19829
|
/**
|
|
19830
|
+
* Along with `Radius`, specifies the impact position relative to the input device and, effectively, how broadly that impact effects nearby motors.
|
|
19831
|
+
*
|
|
19547
19832
|
* - **ThreadSafety**: ReadSafe
|
|
19548
19833
|
*
|
|
19549
19834
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HapticEffect#Position)
|
|
19550
19835
|
*/
|
|
19551
19836
|
Position: Vector3;
|
|
19552
19837
|
/**
|
|
19838
|
+
* Along with `Position`, specifies the impact radius relative to the input device and, effectively, how broadly that impact effects nearby motors.
|
|
19839
|
+
*
|
|
19553
19840
|
* - **ThreadSafety**: ReadSafe
|
|
19554
19841
|
*
|
|
19555
19842
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HapticEffect#Radius)
|
|
19556
19843
|
*/
|
|
19557
19844
|
Radius: number;
|
|
19558
19845
|
/**
|
|
19846
|
+
* `HapticEffectType` describing the haptic type.
|
|
19847
|
+
*
|
|
19559
19848
|
* - **ThreadSafety**: ReadSafe
|
|
19560
19849
|
*
|
|
19561
19850
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HapticEffect#Type)
|
|
19562
19851
|
*/
|
|
19563
19852
|
Type: Enum.HapticEffectType;
|
|
19564
19853
|
/**
|
|
19854
|
+
* Plays the haptic effect.
|
|
19855
|
+
*
|
|
19565
19856
|
* - **ThreadSafety**: Unsafe
|
|
19566
19857
|
*
|
|
19567
19858
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HapticEffect#Play)
|
|
19859
|
+
* @param this
|
|
19568
19860
|
*/
|
|
19569
19861
|
Play(this: HapticEffect): void;
|
|
19570
19862
|
/**
|
|
19863
|
+
* Method used to define a custom waveform as a table and apply it to the haptic.
|
|
19864
|
+
*
|
|
19571
19865
|
* - **ThreadSafety**: Unsafe
|
|
19572
19866
|
*
|
|
19573
19867
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HapticEffect#SetWaveformKeys)
|
|
19868
|
+
* @param this
|
|
19869
|
+
* @param keys
|
|
19574
19870
|
*/
|
|
19575
19871
|
SetWaveformKeys(this: HapticEffect, keys: Array<unknown>): void;
|
|
19576
19872
|
/**
|
|
19873
|
+
* Stops the haptic effect.
|
|
19874
|
+
*
|
|
19577
19875
|
* - **ThreadSafety**: Unsafe
|
|
19578
19876
|
*
|
|
19579
19877
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HapticEffect#Stop)
|
|
19878
|
+
* @param this
|
|
19580
19879
|
*/
|
|
19581
19880
|
Stop(this: HapticEffect): void;
|
|
19582
19881
|
}
|
|
@@ -23259,7 +23558,7 @@ interface Keyframe extends Instance {
|
|
|
23259
23558
|
*/
|
|
23260
23559
|
GetPoses(this: Keyframe): Array<Pose>;
|
|
23261
23560
|
/**
|
|
23262
|
-
* Removes a `KeyframeMarker` from the `Keyframe` by settings its `Instance.Parent` to nil
|
|
23561
|
+
* Removes a `KeyframeMarker` from the `Keyframe` by settings its `Instance.Parent` to `nil`.
|
|
23263
23562
|
*
|
|
23264
23563
|
* - **ThreadSafety**: Unsafe
|
|
23265
23564
|
*
|
|
@@ -23269,7 +23568,7 @@ interface Keyframe extends Instance {
|
|
|
23269
23568
|
*/
|
|
23270
23569
|
RemoveMarker(this: Keyframe, marker: KeyframeMarker): void;
|
|
23271
23570
|
/**
|
|
23272
|
-
* Removes a `Pose` from the `Keyframe` by setting its `Instance.Parent` to nil
|
|
23571
|
+
* Removes a `Pose` from the `Keyframe` by setting its `Instance.Parent` to `nil`.
|
|
23273
23572
|
*
|
|
23274
23573
|
* - **ThreadSafety**: Unsafe
|
|
23275
23574
|
*
|
|
@@ -23394,6 +23693,13 @@ interface LanguageService extends Instance {
|
|
|
23394
23693
|
* @deprecated
|
|
23395
23694
|
*/
|
|
23396
23695
|
readonly _nominal_LanguageService: unique symbol;
|
|
23696
|
+
/**
|
|
23697
|
+
* - **ThreadSafety**: Unsafe
|
|
23698
|
+
* - **Tags**: Yields
|
|
23699
|
+
*
|
|
23700
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LanguageService#GetCapabilitiesUsedInPackageAsync)
|
|
23701
|
+
*/
|
|
23702
|
+
GetCapabilitiesUsedInPackageAsync(this: LanguageService, instances: Array<Instance>): object;
|
|
23397
23703
|
}
|
|
23398
23704
|
/**
|
|
23399
23705
|
* Light is a root class for dynamic lighting related objects.
|
|
@@ -24902,6 +25208,8 @@ interface MarketplaceService extends Instance {
|
|
|
24902
25208
|
ProcessReceipt: ((receiptInfo: ReceiptInfo) => Enum.ProductPurchaseDecision) | undefined;
|
|
24903
25209
|
}
|
|
24904
25210
|
/**
|
|
25211
|
+
* The service responsible for managing custom matchmaking data.
|
|
25212
|
+
*
|
|
24905
25213
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
24906
25214
|
*
|
|
24907
25215
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MatchmakingService)
|
|
@@ -24916,28 +25224,37 @@ interface MatchmakingService extends Instance {
|
|
|
24916
25224
|
*/
|
|
24917
25225
|
readonly _nominal_MatchmakingService: unique symbol;
|
|
24918
25226
|
/**
|
|
25227
|
+
* Retrieves the value of a specific server attribute.
|
|
25228
|
+
*
|
|
24919
25229
|
* - **ThreadSafety**: Unsafe
|
|
24920
25230
|
*
|
|
24921
25231
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MatchmakingService#GetServerAttribute)
|
|
24922
|
-
* @param this
|
|
24923
|
-
* @param name
|
|
25232
|
+
* @param this The service responsible for managing custom matchmaking data.
|
|
25233
|
+
* @param name The name of the server attribute. Limited to a maximum of 50 characters.
|
|
25234
|
+
* @returns Returns the server attribute value if the attribute is found and if the error is `nil`. Otherwise, returns `nil` for the attribute value and an error message.
|
|
24924
25235
|
*/
|
|
24925
25236
|
GetServerAttribute(this: MatchmakingService, name: string): unknown;
|
|
24926
25237
|
/**
|
|
25238
|
+
* Initiates the server attribute schema and its values to test in Studio.
|
|
25239
|
+
*
|
|
24927
25240
|
* - **ThreadSafety**: Unsafe
|
|
24928
25241
|
*
|
|
24929
25242
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MatchmakingService#InitializeServerAttributesForStudio)
|
|
24930
|
-
* @param this
|
|
24931
|
-
* @param serverAttributes
|
|
25243
|
+
* @param this The service responsible for managing custom matchmaking data.
|
|
25244
|
+
* @param serverAttributes An array of attribute name-value pairs.
|
|
25245
|
+
* @returns Returns `true` if the call succeeded. Otherwise, returns `false` and an error message.
|
|
24932
25246
|
*/
|
|
24933
25247
|
InitializeServerAttributesForStudio(this: MatchmakingService, serverAttributes: object): unknown;
|
|
24934
25248
|
/**
|
|
25249
|
+
* Assigns a value to a specific server attribute.
|
|
25250
|
+
*
|
|
24935
25251
|
* - **ThreadSafety**: Unsafe
|
|
24936
25252
|
*
|
|
24937
25253
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MatchmakingService#SetServerAttribute)
|
|
24938
|
-
* @param this
|
|
24939
|
-
* @param name
|
|
24940
|
-
* @param value
|
|
25254
|
+
* @param this The service responsible for managing custom matchmaking data.
|
|
25255
|
+
* @param name The name of the server attribute. Limited to a maximum of 50 characters.
|
|
25256
|
+
* @param value The value of the server attribute. Limited to a maximum of 50 characters.
|
|
25257
|
+
* @returns Returns `true` if the call succeeded. Otherwise, returns `false` and an error message.
|
|
24941
25258
|
*/
|
|
24942
25259
|
SetServerAttribute(this: MatchmakingService, name: string, value: unknown): unknown;
|
|
24943
25260
|
}
|
|
@@ -25092,7 +25409,7 @@ interface MemoryStoreHashMap extends Instance {
|
|
|
25092
25409
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MemoryStoreHashMap#GetAsync)
|
|
25093
25410
|
* @param this Provides access to a hash map within `MemoryStoreService`.
|
|
25094
25411
|
* @param key The key whose value you want to retrieve.
|
|
25095
|
-
* @returns The value, or nil if the key doesn't exist.
|
|
25412
|
+
* @returns The value, or `nil` if the key doesn't exist.
|
|
25096
25413
|
*/
|
|
25097
25414
|
GetAsync(this: MemoryStoreHashMap, key: string): unknown;
|
|
25098
25415
|
/**
|
|
@@ -25280,8 +25597,8 @@ interface MemoryStoreSortedMap extends Instance {
|
|
|
25280
25597
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MemoryStoreSortedMap#GetAsync)
|
|
25281
25598
|
* @param this Provides access to a sorted map within `MemoryStoreService`.
|
|
25282
25599
|
* @param key Key whose value and sort key to retrieve.
|
|
25283
|
-
* @returns A tuple of two values: - Key value, or nil
|
|
25284
|
-
* - Sort key, or nil
|
|
25600
|
+
* @returns A tuple of two values: - Key value, or `nil` if there's no item with the specified key.
|
|
25601
|
+
* - Sort key, or `nil` if there's no sort key associated with the specified key.
|
|
25285
25602
|
*/
|
|
25286
25603
|
GetAsync(this: MemoryStoreSortedMap, key: string): LuaTuple<[
|
|
25287
25604
|
value?: unknown,
|
|
@@ -26721,13 +27038,13 @@ interface BasePart extends PVInstance {
|
|
|
26721
27038
|
*/
|
|
26722
27039
|
GetMass(this: BasePart): number;
|
|
26723
27040
|
/**
|
|
26724
|
-
* Returns the current player who is the network owner of this part, or nil in case of the server.
|
|
27041
|
+
* Returns the current player who is the network owner of this part, or `nil` in case of the server.
|
|
26725
27042
|
*
|
|
26726
27043
|
* - **ThreadSafety**: Safe
|
|
26727
27044
|
*
|
|
26728
27045
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BasePart#GetNetworkOwner)
|
|
26729
27046
|
* @param this The abstract base class for in-world objects that physically interact.
|
|
26730
|
-
* @returns The current player who is the network owner of this part, or nil in case of the server.
|
|
27047
|
+
* @returns The current player who is the network owner of this part, or `nil` in case of the server.
|
|
26731
27048
|
*/
|
|
26732
27049
|
GetNetworkOwner(this: BasePart): Player | undefined;
|
|
26733
27050
|
/**
|
|
@@ -29711,6 +30028,21 @@ interface DataStoreVersionPages extends Pages<DataStoreObjectVersionInfo> {
|
|
|
29711
30028
|
*/
|
|
29712
30029
|
readonly _nominal_DataStoreVersionPages: unique symbol;
|
|
29713
30030
|
}
|
|
30031
|
+
/**
|
|
30032
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
30033
|
+
*
|
|
30034
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedPages)
|
|
30035
|
+
*/
|
|
30036
|
+
interface FeedPages extends Pages {
|
|
30037
|
+
/**
|
|
30038
|
+
* **DO NOT USE!**
|
|
30039
|
+
*
|
|
30040
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
30041
|
+
* @hidden
|
|
30042
|
+
* @deprecated
|
|
30043
|
+
*/
|
|
30044
|
+
readonly _nominal_FeedPages: unique symbol;
|
|
30045
|
+
}
|
|
29714
30046
|
/**
|
|
29715
30047
|
* A special version of `Pages` that contains information about a player's friends.
|
|
29716
30048
|
*
|
|
@@ -30717,6 +31049,21 @@ interface PhysicsService extends Instance {
|
|
|
30717
31049
|
*/
|
|
30718
31050
|
UnregisterCollisionGroup(this: PhysicsService, name: string): void;
|
|
30719
31051
|
}
|
|
31052
|
+
/**
|
|
31053
|
+
* - **Tags**: NotCreatable, Service
|
|
31054
|
+
*
|
|
31055
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlaceAssetIdsService)
|
|
31056
|
+
*/
|
|
31057
|
+
interface PlaceAssetIdsService extends Instance {
|
|
31058
|
+
/**
|
|
31059
|
+
* **DO NOT USE!**
|
|
31060
|
+
*
|
|
31061
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
31062
|
+
* @hidden
|
|
31063
|
+
* @deprecated
|
|
31064
|
+
*/
|
|
31065
|
+
readonly _nominal_PlaceAssetIdsService: unique symbol;
|
|
31066
|
+
}
|
|
30720
31067
|
/**
|
|
30721
31068
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
30722
31069
|
*
|
|
@@ -32413,7 +32760,7 @@ interface Pose extends PoseBase {
|
|
|
32413
32760
|
*/
|
|
32414
32761
|
GetSubPoses(this: Pose): Array<Instance>;
|
|
32415
32762
|
/**
|
|
32416
|
-
* Removes a sub `Pose` from the `Pose` by parenting it to nil
|
|
32763
|
+
* Removes a sub `Pose` from the `Pose` by parenting it to `nil`.
|
|
32417
32764
|
*
|
|
32418
32765
|
* - **ThreadSafety**: Unsafe
|
|
32419
32766
|
*
|
|
@@ -34120,17 +34467,25 @@ interface SerializationService extends Instance {
|
|
|
34120
34467
|
*/
|
|
34121
34468
|
readonly _nominal_SerializationService: unique symbol;
|
|
34122
34469
|
/**
|
|
34470
|
+
* Deserializes a `buffer` containing `.rbxm` content, returning a list of `instances`.
|
|
34471
|
+
*
|
|
34123
34472
|
* - **ThreadSafety**: Unsafe
|
|
34124
34473
|
* - **Tags**: Yields
|
|
34125
34474
|
*
|
|
34126
34475
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SerializationService#DeserializeInstancesAsync)
|
|
34476
|
+
* @param this
|
|
34477
|
+
* @param buffer
|
|
34127
34478
|
*/
|
|
34128
34479
|
DeserializeInstancesAsync(this: SerializationService, buffer: buffer): Array<Instance>;
|
|
34129
34480
|
/**
|
|
34481
|
+
* Serializes a list of `instances` to the `.rbxm` format, returning a `buffer` or `.rbxm` content.
|
|
34482
|
+
*
|
|
34130
34483
|
* - **ThreadSafety**: Unsafe
|
|
34131
34484
|
* - **Tags**: Yields
|
|
34132
34485
|
*
|
|
34133
34486
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SerializationService#SerializeInstancesAsync)
|
|
34487
|
+
* @param this
|
|
34488
|
+
* @param inputInstances
|
|
34134
34489
|
*/
|
|
34135
34490
|
SerializeInstancesAsync(this: SerializationService, inputInstances: Array<Instance>): buffer;
|
|
34136
34491
|
}
|
|
@@ -34947,6 +35302,15 @@ interface SocialService extends Instance {
|
|
|
34947
35302
|
* @returns Whether the specified player can send an invite.
|
|
34948
35303
|
*/
|
|
34949
35304
|
CanSendGameInviteAsync(this: SocialService, player: Player, recipientId?: number): boolean;
|
|
35305
|
+
/**
|
|
35306
|
+
* - **ThreadSafety**: Unsafe
|
|
35307
|
+
* - **Tags**: Yields
|
|
35308
|
+
*
|
|
35309
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#GetPartyAsync)
|
|
35310
|
+
* @param this Facilitates social functions that impact relationships made on the Roblox platform.
|
|
35311
|
+
* @param partyId
|
|
35312
|
+
*/
|
|
35313
|
+
GetPartyAsync(this: SocialService, partyId: string): Array<unknown>;
|
|
34950
35314
|
/**
|
|
34951
35315
|
* Fires when a player's call invite state changes.
|
|
34952
35316
|
*
|
|
@@ -36176,6 +36540,12 @@ interface StarterPlayer extends Instance {
|
|
|
36176
36540
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayer#NameDisplayDistance)
|
|
36177
36541
|
*/
|
|
36178
36542
|
NameDisplayDistance: number;
|
|
36543
|
+
/**
|
|
36544
|
+
* - **ThreadSafety**: ReadSafe
|
|
36545
|
+
*
|
|
36546
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayer#RagdollDeath)
|
|
36547
|
+
*/
|
|
36548
|
+
RagdollDeath: boolean;
|
|
36179
36549
|
/**
|
|
36180
36550
|
* Determines if user-owned emotes are loaded when loading avatars.
|
|
36181
36551
|
*
|
|
@@ -36465,6 +36835,24 @@ interface Stats extends Instance {
|
|
|
36465
36835
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats#UI3DTriangleCount)
|
|
36466
36836
|
*/
|
|
36467
36837
|
readonly UI3DTriangleCount: number;
|
|
36838
|
+
/**
|
|
36839
|
+
* - **ThreadSafety**: Unsafe
|
|
36840
|
+
*
|
|
36841
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats#GetHarmonyQualityLevel)
|
|
36842
|
+
*/
|
|
36843
|
+
GetHarmonyQualityLevel(this: Stats): number;
|
|
36844
|
+
/**
|
|
36845
|
+
* - **ThreadSafety**: Unsafe
|
|
36846
|
+
*
|
|
36847
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats#GetMemoryCategoryNames)
|
|
36848
|
+
*/
|
|
36849
|
+
GetMemoryCategoryNames(this: Stats): Array<unknown>;
|
|
36850
|
+
/**
|
|
36851
|
+
* - **ThreadSafety**: Unsafe
|
|
36852
|
+
*
|
|
36853
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats#GetMemoryUsageMbAllCategories)
|
|
36854
|
+
*/
|
|
36855
|
+
GetMemoryUsageMbAllCategories(this: Stats): Array<unknown>;
|
|
36468
36856
|
/**
|
|
36469
36857
|
* Returns the number of megabytes that are being consumed in the specified `DeveloperMemoryTag` category.
|
|
36470
36858
|
*
|
|
@@ -36484,6 +36872,18 @@ interface Stats extends Instance {
|
|
|
36484
36872
|
* @param this Performance metrics for a game.
|
|
36485
36873
|
*/
|
|
36486
36874
|
GetTotalMemoryUsageMb(this: Stats): number;
|
|
36875
|
+
/**
|
|
36876
|
+
* - **ThreadSafety**: Unsafe
|
|
36877
|
+
*
|
|
36878
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats#ResetHarmonyMemoryTarget)
|
|
36879
|
+
*/
|
|
36880
|
+
ResetHarmonyMemoryTarget(this: Stats): void;
|
|
36881
|
+
/**
|
|
36882
|
+
* - **ThreadSafety**: Unsafe
|
|
36883
|
+
*
|
|
36884
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats#SetHarmonyMemoryTarget)
|
|
36885
|
+
*/
|
|
36886
|
+
SetHarmonyMemoryTarget(this: Stats, targetMB: number): void;
|
|
36487
36887
|
}
|
|
36488
36888
|
/**
|
|
36489
36889
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
@@ -36596,6 +36996,18 @@ interface StudioCameraService extends Instance {
|
|
|
36596
36996
|
* @deprecated
|
|
36597
36997
|
*/
|
|
36598
36998
|
readonly _nominal_StudioCameraService: unique symbol;
|
|
36999
|
+
/**
|
|
37000
|
+
* - **ThreadSafety**: ReadSafe
|
|
37001
|
+
*
|
|
37002
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioCameraService#LockCameraSpeed)
|
|
37003
|
+
*/
|
|
37004
|
+
LockCameraSpeed: boolean;
|
|
37005
|
+
/**
|
|
37006
|
+
* - **ThreadSafety**: Unsafe
|
|
37007
|
+
*
|
|
37008
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioCameraService#ShowCameraSpeed)
|
|
37009
|
+
*/
|
|
37010
|
+
readonly ShowCameraSpeed: RBXScriptSignal<(speed: number) => void>;
|
|
36599
37011
|
}
|
|
36600
37012
|
/**
|
|
36601
37013
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
@@ -36958,6 +37370,21 @@ interface SurfaceAppearance extends Instance {
|
|
|
36958
37370
|
*/
|
|
36959
37371
|
get RoughnessMapContent(): Content;
|
|
36960
37372
|
}
|
|
37373
|
+
/**
|
|
37374
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
37375
|
+
*
|
|
37376
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SystemThemeService)
|
|
37377
|
+
*/
|
|
37378
|
+
interface SystemThemeService extends Instance {
|
|
37379
|
+
/**
|
|
37380
|
+
* **DO NOT USE!**
|
|
37381
|
+
*
|
|
37382
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
37383
|
+
* @hidden
|
|
37384
|
+
* @deprecated
|
|
37385
|
+
*/
|
|
37386
|
+
readonly _nominal_SystemThemeService: unique symbol;
|
|
37387
|
+
}
|
|
36961
37388
|
/**
|
|
36962
37389
|
* The `Team` class represents a faction in a Roblox place. The only valid parent for a Team is in the `Teams` service.
|
|
36963
37390
|
*
|
|
@@ -41619,7 +42046,7 @@ interface UserInputService extends Instance {
|
|
|
41619
42046
|
*/
|
|
41620
42047
|
readonly TouchLongPress: RBXScriptSignal<(touchPositions: Array<Vector2>, state: Enum.UserInputState, gameProcessedEvent: boolean) => void>;
|
|
41621
42048
|
/**
|
|
41622
|
-
*
|
|
42049
|
+
* Fires when a user moves their finger on a `TouchEnabled` device, such as a tablet or smartphone.
|
|
41623
42050
|
*
|
|
41624
42051
|
* - **ThreadSafety**: Unsafe
|
|
41625
42052
|
*
|
|
@@ -42578,18 +43005,21 @@ interface VideoPlayer extends Instance {
|
|
|
42578
43005
|
* - **ThreadSafety**: Unsafe
|
|
42579
43006
|
*
|
|
42580
43007
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#GetInputPins)
|
|
43008
|
+
* @param this
|
|
42581
43009
|
*/
|
|
42582
43010
|
GetInputPins(this: VideoPlayer): Array<unknown>;
|
|
42583
43011
|
/**
|
|
42584
43012
|
* - **ThreadSafety**: Unsafe
|
|
42585
43013
|
*
|
|
42586
43014
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#GetOutputPins)
|
|
43015
|
+
* @param this
|
|
42587
43016
|
*/
|
|
42588
43017
|
GetOutputPins(this: VideoPlayer): Array<unknown>;
|
|
42589
43018
|
/**
|
|
42590
43019
|
* - **ThreadSafety**: Unsafe
|
|
42591
43020
|
*
|
|
42592
43021
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#Pause)
|
|
43022
|
+
* @param this
|
|
42593
43023
|
*/
|
|
42594
43024
|
Pause(this: VideoPlayer): void;
|
|
42595
43025
|
/**
|
|
@@ -42603,6 +43033,7 @@ interface VideoPlayer extends Instance {
|
|
|
42603
43033
|
* - **ThreadSafety**: Unsafe
|
|
42604
43034
|
*
|
|
42605
43035
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#Unload)
|
|
43036
|
+
* @param this
|
|
42606
43037
|
*/
|
|
42607
43038
|
Unload(this: VideoPlayer): void;
|
|
42608
43039
|
/**
|
|
@@ -42610,6 +43041,7 @@ interface VideoPlayer extends Instance {
|
|
|
42610
43041
|
* - **Tags**: Yields
|
|
42611
43042
|
*
|
|
42612
43043
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#LoadAsync)
|
|
43044
|
+
* @param this
|
|
42613
43045
|
*/
|
|
42614
43046
|
LoadAsync(this: VideoPlayer): Enum.AssetFetchStatus;
|
|
42615
43047
|
/**
|
|
@@ -42948,15 +43380,12 @@ interface WebSocketClient extends Instance {
|
|
|
42948
43380
|
* - **ThreadSafety**: Unsafe
|
|
42949
43381
|
*
|
|
42950
43382
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WebSocketClient#Close)
|
|
42951
|
-
* @param this
|
|
42952
43383
|
*/
|
|
42953
43384
|
Close(this: WebSocketClient): void;
|
|
42954
43385
|
/**
|
|
42955
43386
|
* - **ThreadSafety**: Unsafe
|
|
42956
43387
|
*
|
|
42957
43388
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WebSocketClient#Send)
|
|
42958
|
-
* @param this
|
|
42959
|
-
* @param data
|
|
42960
43389
|
*/
|
|
42961
43390
|
Send(this: WebSocketClient, data: string): void;
|
|
42962
43391
|
/**
|
|
@@ -42996,8 +43425,6 @@ interface WebSocketService extends Instance {
|
|
|
42996
43425
|
* - **ThreadSafety**: Unsafe
|
|
42997
43426
|
*
|
|
42998
43427
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WebSocketService#CreateClient)
|
|
42999
|
-
* @param this
|
|
43000
|
-
* @param uri
|
|
43001
43428
|
*/
|
|
43002
43429
|
CreateClient(this: WebSocketService, uri: string): WebSocketClient;
|
|
43003
43430
|
}
|