@rbxts/types 1.0.877 → 1.0.879
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.
|
@@ -142,6 +142,7 @@ interface Services {
|
|
|
142
142
|
PublishService: PublishService;
|
|
143
143
|
RecommendationService: RecommendationService;
|
|
144
144
|
ReflectionService: ReflectionService;
|
|
145
|
+
RemoteCommandService: RemoteCommandService;
|
|
145
146
|
RemoteCursorService: RemoteCursorService;
|
|
146
147
|
RemoteDebuggerServer: RemoteDebuggerServer;
|
|
147
148
|
ReplicatedFirst: ReplicatedFirst;
|
|
@@ -174,6 +175,7 @@ interface Services {
|
|
|
174
175
|
SnippetService: SnippetService;
|
|
175
176
|
SocialService: SocialService;
|
|
176
177
|
SoundService: SoundService;
|
|
178
|
+
SoundShimService: SoundShimService;
|
|
177
179
|
StarterGui: StarterGui;
|
|
178
180
|
StarterPack: StarterPack;
|
|
179
181
|
StarterPlayer: StarterPlayer;
|
|
@@ -478,6 +480,7 @@ interface CreatableInstances {
|
|
|
478
480
|
TextChannel: TextChannel;
|
|
479
481
|
TextChatCommand: TextChatCommand;
|
|
480
482
|
TextChatMessageProperties: TextChatMessageProperties;
|
|
483
|
+
TextGenerator: TextGenerator;
|
|
481
484
|
TextLabel: TextLabel;
|
|
482
485
|
Texture: Texture;
|
|
483
486
|
Tool: Tool;
|
|
@@ -703,6 +706,7 @@ interface Objects extends Instances {
|
|
|
703
706
|
ConfigSnapshot: ConfigSnapshot;
|
|
704
707
|
EditableImage: EditableImage;
|
|
705
708
|
EditableMesh: EditableMesh;
|
|
709
|
+
ExecutedRemoteCommand: ExecutedRemoteCommand;
|
|
706
710
|
MLSession: MLSession;
|
|
707
711
|
Object: RBXObject;
|
|
708
712
|
ScreenshotCapture: ScreenshotCapture;
|
|
@@ -1434,24 +1438,39 @@ interface EditableMesh extends RBXObject {
|
|
|
1434
1438
|
*/
|
|
1435
1439
|
GetFacesWithAttribute(this: EditableMesh, id: number): Array<unknown>;
|
|
1436
1440
|
/**
|
|
1441
|
+
* Returns an array of face IDs that use the given color ID.
|
|
1442
|
+
*
|
|
1437
1443
|
* - **ThreadSafety**: Unsafe
|
|
1438
1444
|
* - **Tags**: CustomLuaState
|
|
1439
1445
|
*
|
|
1440
1446
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithColor)
|
|
1447
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1448
|
+
* @param colorId Color ID to find faces for.
|
|
1449
|
+
* @returns List of face IDs that use the provided color ID.
|
|
1441
1450
|
*/
|
|
1442
1451
|
GetFacesWithColor(this: EditableMesh, colorId: number): Array<unknown>;
|
|
1443
1452
|
/**
|
|
1453
|
+
* Returns an array of face IDs that use the given normal ID.
|
|
1454
|
+
*
|
|
1444
1455
|
* - **ThreadSafety**: Unsafe
|
|
1445
1456
|
* - **Tags**: CustomLuaState
|
|
1446
1457
|
*
|
|
1447
1458
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithNormal)
|
|
1459
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1460
|
+
* @param normalId Normal ID to find faces for.
|
|
1461
|
+
* @returns List of face IDs that use the provided normal ID.
|
|
1448
1462
|
*/
|
|
1449
1463
|
GetFacesWithNormal(this: EditableMesh, normalId: number): Array<unknown>;
|
|
1450
1464
|
/**
|
|
1465
|
+
* Returns an array of face IDs that use the given UV ID.
|
|
1466
|
+
*
|
|
1451
1467
|
* - **ThreadSafety**: Unsafe
|
|
1452
1468
|
* - **Tags**: CustomLuaState
|
|
1453
1469
|
*
|
|
1454
1470
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithUV)
|
|
1471
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1472
|
+
* @param uvId UV ID to find faces for.
|
|
1473
|
+
* @returns List of face IDs that use the provided UV ID.
|
|
1455
1474
|
*/
|
|
1456
1475
|
GetFacesWithUV(this: EditableMesh, uvId: number): Array<unknown>;
|
|
1457
1476
|
/**
|
|
@@ -1582,49 +1601,87 @@ interface EditableMesh extends RBXObject {
|
|
|
1582
1601
|
*/
|
|
1583
1602
|
GetVertexBones(this: EditableMesh, vertexId: number): Array<unknown>;
|
|
1584
1603
|
/**
|
|
1604
|
+
* Returns the color IDs of the faces attached to the given vertex.
|
|
1605
|
+
*
|
|
1585
1606
|
* - **ThreadSafety**: Unsafe
|
|
1586
1607
|
* - **Tags**: CustomLuaState
|
|
1587
1608
|
*
|
|
1588
1609
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexColors)
|
|
1610
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1611
|
+
* @param vertexId Stable vertex ID to find color IDs.
|
|
1612
|
+
* @returns Array of color IDs of faces attached to the given vertex.
|
|
1589
1613
|
*/
|
|
1590
1614
|
GetVertexColors(this: EditableMesh, vertexId: number): Array<unknown>;
|
|
1591
1615
|
/**
|
|
1616
|
+
* Returns the color ID of a vertex/face pair.
|
|
1617
|
+
*
|
|
1592
1618
|
* - **ThreadSafety**: Unsafe
|
|
1593
1619
|
*
|
|
1594
1620
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceColor)
|
|
1621
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1622
|
+
* @param vertexId Stable vertex ID.
|
|
1623
|
+
* @param faceId Stable face ID.
|
|
1624
|
+
* @returns Stable color ID of the vertex/face pair.
|
|
1595
1625
|
*/
|
|
1596
1626
|
GetVertexFaceColor(this: EditableMesh, vertexId: number, faceId: number): number;
|
|
1597
1627
|
/**
|
|
1628
|
+
* Returns the normal ID of a vertex/face pair.
|
|
1629
|
+
*
|
|
1598
1630
|
* - **ThreadSafety**: Unsafe
|
|
1599
1631
|
*
|
|
1600
1632
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceNormal)
|
|
1633
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1634
|
+
* @param vertexId Stable vertex ID.
|
|
1635
|
+
* @param faceId Stable face ID.
|
|
1636
|
+
* @returns Stable normal ID of the vertex/face pair.
|
|
1601
1637
|
*/
|
|
1602
1638
|
GetVertexFaceNormal(this: EditableMesh, vertexId: number, faceId: number): number;
|
|
1603
1639
|
/**
|
|
1640
|
+
* Returns the UV ID of a vertex/face pair.
|
|
1641
|
+
*
|
|
1604
1642
|
* - **ThreadSafety**: Unsafe
|
|
1605
1643
|
*
|
|
1606
1644
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceUV)
|
|
1645
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1646
|
+
* @param vertexId Stable vertex ID.
|
|
1647
|
+
* @param faceId Stable face ID.
|
|
1648
|
+
* @returns Stable UV ID of the vertex/face pair.
|
|
1607
1649
|
*/
|
|
1608
1650
|
GetVertexFaceUV(this: EditableMesh, vertexId: number, faceId: number): number;
|
|
1609
1651
|
/**
|
|
1652
|
+
* Returns the face IDs of the faces attached to the given vertex.
|
|
1653
|
+
*
|
|
1610
1654
|
* - **ThreadSafety**: Unsafe
|
|
1611
1655
|
* - **Tags**: CustomLuaState
|
|
1612
1656
|
*
|
|
1613
1657
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaces)
|
|
1658
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1659
|
+
* @param vertexId Stable vertex ID to find faces for.
|
|
1660
|
+
* @returns Array of face IDs attached to the given vertex.
|
|
1614
1661
|
*/
|
|
1615
1662
|
GetVertexFaces(this: EditableMesh, vertexId: number): Array<unknown>;
|
|
1616
1663
|
/**
|
|
1664
|
+
* Returns the normal IDs of the faces attached to the given vertex.
|
|
1665
|
+
*
|
|
1617
1666
|
* - **ThreadSafety**: Unsafe
|
|
1618
1667
|
* - **Tags**: CustomLuaState
|
|
1619
1668
|
*
|
|
1620
1669
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexNormals)
|
|
1670
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1671
|
+
* @param vertexId Stable vertex ID to find normal IDs.
|
|
1672
|
+
* @returns Array of normal IDs of faces attached to the given vertex.
|
|
1621
1673
|
*/
|
|
1622
1674
|
GetVertexNormals(this: EditableMesh, vertexId: number): Array<unknown>;
|
|
1623
1675
|
/**
|
|
1676
|
+
* Returns the UV IDs of the faces attached to the given vertex.
|
|
1677
|
+
*
|
|
1624
1678
|
* - **ThreadSafety**: Unsafe
|
|
1625
1679
|
* - **Tags**: CustomLuaState
|
|
1626
1680
|
*
|
|
1627
1681
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexUVs)
|
|
1682
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1683
|
+
* @param vertexId Stable vertex ID to find UV IDs.
|
|
1684
|
+
* @returns Array of UV IDs of faces attached to the given vertex.
|
|
1628
1685
|
*/
|
|
1629
1686
|
GetVertexUVs(this: EditableMesh, vertexId: number): Array<unknown>;
|
|
1630
1687
|
/**
|
|
@@ -1654,24 +1711,39 @@ interface EditableMesh extends RBXObject {
|
|
|
1654
1711
|
*/
|
|
1655
1712
|
GetVerticesWithAttribute(this: EditableMesh, id: number): Array<unknown>;
|
|
1656
1713
|
/**
|
|
1714
|
+
* Returns an array of face IDs that use the given color ID.
|
|
1715
|
+
*
|
|
1657
1716
|
* - **ThreadSafety**: Unsafe
|
|
1658
1717
|
* - **Tags**: CustomLuaState
|
|
1659
1718
|
*
|
|
1660
1719
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithColor)
|
|
1720
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1721
|
+
* @param colorId Color ID to find faces for.
|
|
1722
|
+
* @returns List of face IDs that use the provided color ID.
|
|
1661
1723
|
*/
|
|
1662
1724
|
GetVerticesWithColor(this: EditableMesh, colorId: number): Array<unknown>;
|
|
1663
1725
|
/**
|
|
1726
|
+
* Returns an array of vertex IDs that use the given normal ID.
|
|
1727
|
+
*
|
|
1664
1728
|
* - **ThreadSafety**: Unsafe
|
|
1665
1729
|
* - **Tags**: CustomLuaState
|
|
1666
1730
|
*
|
|
1667
1731
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithNormal)
|
|
1732
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1733
|
+
* @param normalId Normal ID to find vertices for.
|
|
1734
|
+
* @returns List of vertex IDs that use the provided normal ID.
|
|
1668
1735
|
*/
|
|
1669
1736
|
GetVerticesWithNormal(this: EditableMesh, normalId: number): Array<unknown>;
|
|
1670
1737
|
/**
|
|
1738
|
+
* Returns an array of vertex IDs that use the given UV ID.
|
|
1739
|
+
*
|
|
1671
1740
|
* - **ThreadSafety**: Unsafe
|
|
1672
1741
|
* - **Tags**: CustomLuaState
|
|
1673
1742
|
*
|
|
1674
1743
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithUV)
|
|
1744
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
1745
|
+
* @param uvId UV ID to find vertices for.
|
|
1746
|
+
* @returns List of vertex IDs that use the provided UV ID.
|
|
1675
1747
|
*/
|
|
1676
1748
|
GetVerticesWithUV(this: EditableMesh, uvId: number): Array<unknown>;
|
|
1677
1749
|
/**
|
|
@@ -1956,21 +2028,39 @@ interface EditableMesh extends RBXObject {
|
|
|
1956
2028
|
*/
|
|
1957
2029
|
SetVertexBones(this: EditableMesh, vertexId: number, boneIDs: Array<unknown>): void;
|
|
1958
2030
|
/**
|
|
2031
|
+
* Sets the color ID of a vertex/face pair.
|
|
2032
|
+
*
|
|
1959
2033
|
* - **ThreadSafety**: Unsafe
|
|
1960
2034
|
*
|
|
1961
2035
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexFaceColor)
|
|
2036
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
2037
|
+
* @param vertexId Stable vertex ID.
|
|
2038
|
+
* @param faceId Stable face ID.
|
|
2039
|
+
* @param colorId Stable color ID to set for the vertex/face pair.
|
|
1962
2040
|
*/
|
|
1963
2041
|
SetVertexFaceColor(this: EditableMesh, vertexId: number, faceId: number, colorId: number): void;
|
|
1964
2042
|
/**
|
|
2043
|
+
* Sets the normal ID of a vertex/face pair.
|
|
2044
|
+
*
|
|
1965
2045
|
* - **ThreadSafety**: Unsafe
|
|
1966
2046
|
*
|
|
1967
2047
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexFaceNormal)
|
|
2048
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
2049
|
+
* @param vertexId Stable vertex ID.
|
|
2050
|
+
* @param faceId Stable face ID.
|
|
2051
|
+
* @param normalId Stable normal ID to set for the vertex/face pair.
|
|
1968
2052
|
*/
|
|
1969
2053
|
SetVertexFaceNormal(this: EditableMesh, vertexId: number, faceId: number, normalId: number): void;
|
|
1970
2054
|
/**
|
|
2055
|
+
* Sets the UV ID of a vertex/face pair.
|
|
2056
|
+
*
|
|
1971
2057
|
* - **ThreadSafety**: Unsafe
|
|
1972
2058
|
*
|
|
1973
2059
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexFaceUV)
|
|
2060
|
+
* @param this Instance which allows for the runtime creation and manipulation of meshes.
|
|
2061
|
+
* @param vertexId Stable vertex ID.
|
|
2062
|
+
* @param faceId Stable face ID.
|
|
2063
|
+
* @param uvId Stable UV ID to set for the vertex/face pair.
|
|
1974
2064
|
*/
|
|
1975
2065
|
SetVertexFaceUV(this: EditableMesh, vertexId: number, faceId: number, uvId: number): void;
|
|
1976
2066
|
/**
|
|
@@ -1983,6 +2073,45 @@ interface EditableMesh extends RBXObject {
|
|
|
1983
2073
|
*/
|
|
1984
2074
|
Triangulate(this: EditableMesh): void;
|
|
1985
2075
|
}
|
|
2076
|
+
/**
|
|
2077
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
2078
|
+
*
|
|
2079
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ExecutedRemoteCommand)
|
|
2080
|
+
*/
|
|
2081
|
+
interface ExecutedRemoteCommand extends RBXObject {
|
|
2082
|
+
/**
|
|
2083
|
+
* **DO NOT USE!**
|
|
2084
|
+
*
|
|
2085
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
2086
|
+
* @hidden
|
|
2087
|
+
* @deprecated
|
|
2088
|
+
*/
|
|
2089
|
+
readonly _nominal_ExecutedRemoteCommand: unique symbol;
|
|
2090
|
+
/**
|
|
2091
|
+
* - **ThreadSafety**: Unsafe
|
|
2092
|
+
*
|
|
2093
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ExecutedRemoteCommand#RunMoreCode)
|
|
2094
|
+
*/
|
|
2095
|
+
RunMoreCode(this: ExecutedRemoteCommand, code: string, args: unknown): void;
|
|
2096
|
+
/**
|
|
2097
|
+
* - **ThreadSafety**: Unsafe
|
|
2098
|
+
*
|
|
2099
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ExecutedRemoteCommand#SendUpdate)
|
|
2100
|
+
*/
|
|
2101
|
+
SendUpdate(this: ExecutedRemoteCommand, args: unknown): void;
|
|
2102
|
+
/**
|
|
2103
|
+
* - **ThreadSafety**: Unsafe
|
|
2104
|
+
*
|
|
2105
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ExecutedRemoteCommand#Stop)
|
|
2106
|
+
*/
|
|
2107
|
+
Stop(this: ExecutedRemoteCommand): void;
|
|
2108
|
+
/**
|
|
2109
|
+
* - **ThreadSafety**: Unsafe
|
|
2110
|
+
*
|
|
2111
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ExecutedRemoteCommand#ReceivedUpdate)
|
|
2112
|
+
*/
|
|
2113
|
+
readonly ReceivedUpdate: RBXScriptSignal<(args: unknown) => void>;
|
|
2114
|
+
}
|
|
1986
2115
|
/**
|
|
1987
2116
|
* `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
|
|
1988
2117
|
*
|
|
@@ -3796,12 +3925,6 @@ interface AssetService extends Instance {
|
|
|
3796
3925
|
* @deprecated
|
|
3797
3926
|
*/
|
|
3798
3927
|
readonly _nominal_AssetService: unique symbol;
|
|
3799
|
-
/**
|
|
3800
|
-
* - **ThreadSafety**: ReadSafe
|
|
3801
|
-
*
|
|
3802
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#AllowInsertFreeAssets)
|
|
3803
|
-
*/
|
|
3804
|
-
AllowInsertFreeAssets: boolean;
|
|
3805
3928
|
/**
|
|
3806
3929
|
* Creates a new `EditableImage`.
|
|
3807
3930
|
*
|
|
@@ -3822,6 +3945,13 @@ interface AssetService extends Instance {
|
|
|
3822
3945
|
* @param editableMeshOptions Table containing options for the created `EditableMesh`. Currently no options are available since `FixedSize` will always be `false` for empty editable meshes.
|
|
3823
3946
|
*/
|
|
3824
3947
|
CreateEditableMesh(this: AssetService, editableMeshOptions?: object): EditableMesh;
|
|
3948
|
+
/**
|
|
3949
|
+
* - **ThreadSafety**: Unsafe
|
|
3950
|
+
* - **Tags**: Yields
|
|
3951
|
+
*
|
|
3952
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#ComposeDecalAsync)
|
|
3953
|
+
*/
|
|
3954
|
+
ComposeDecalAsync(this: AssetService, layers: Array<unknown>): Decal;
|
|
3825
3955
|
/**
|
|
3826
3956
|
* Uploads a new asset to Roblox from the given object.
|
|
3827
3957
|
*
|
|
@@ -3953,7 +4083,7 @@ interface AssetService extends Instance {
|
|
|
3953
4083
|
* @param this A non-replicated service that handles asset-related queries to the Roblox web API.
|
|
3954
4084
|
* @param content Dictionary containing the following key-value pairs: - `ColorMap` — A `Content` object that contains the color map. Default is `nil`.
|
|
3955
4085
|
* - `MetalnessMap` — A `Content` object that contains the metalness map. If more than one channel is present, only the red channel is used. Default is `nil`.
|
|
3956
|
-
* - `NormalMap` — A `Content` object that contains the
|
|
4086
|
+
* - `NormalMap` — A `Content` object that contains the normal map. Default is `nil`.
|
|
3957
4087
|
* - `RoughnessMap` — A `Content` object that contains the roughness map. If more than one channel is present, only the red channel is used. Default is `nil`.
|
|
3958
4088
|
*
|
|
3959
4089
|
*
|
|
@@ -4076,6 +4206,7 @@ interface AssetService extends Instance {
|
|
|
4076
4206
|
*
|
|
4077
4207
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#SavePlaceAsync)
|
|
4078
4208
|
* @param this A non-replicated service that handles asset-related queries to the Roblox web API.
|
|
4209
|
+
* @param requestParameters Optional dictionary that includes `SaveWithoutPublish`, a boolean indicating whether to save with publish or without publish, and `PlaceId`, the destination place ID to save over. An example usage would be: AssetService:SavePlaceAsync({PlaceId = 1, SaveWithoutPublish = true}). If PlaceId is not provided, the default behavior will save over the current original place which is calling SavePlaceAsync. If SaveWithoutPublish is not provided, the default behavior is SaveWithoutPublish=false.
|
|
4079
4210
|
*/
|
|
4080
4211
|
SavePlaceAsync(this: AssetService, requestParameters?: object): void;
|
|
4081
4212
|
/**
|
|
@@ -10168,6 +10299,12 @@ interface ClickDetector extends Instance {
|
|
|
10168
10299
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ClickDetector#CursorIcon)
|
|
10169
10300
|
*/
|
|
10170
10301
|
CursorIcon: ContentId;
|
|
10302
|
+
/**
|
|
10303
|
+
* - **ThreadSafety**: ReadSafe
|
|
10304
|
+
*
|
|
10305
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ClickDetector#CursorIconContent)
|
|
10306
|
+
*/
|
|
10307
|
+
CursorIconContent: Content;
|
|
10171
10308
|
/**
|
|
10172
10309
|
* Maximum distance between a character and the `ClickDetector` or `DragDetector` for the player to be able to interact with it.
|
|
10173
10310
|
*
|
|
@@ -10231,6 +10368,12 @@ interface DragDetector extends ClickDetector {
|
|
|
10231
10368
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DragDetector#ActivatedCursorIcon)
|
|
10232
10369
|
*/
|
|
10233
10370
|
ActivatedCursorIcon: ContentId;
|
|
10371
|
+
/**
|
|
10372
|
+
* - **ThreadSafety**: ReadSafe
|
|
10373
|
+
*
|
|
10374
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DragDetector#ActivatedCursorIconContent)
|
|
10375
|
+
*/
|
|
10376
|
+
ActivatedCursorIconContent: Content;
|
|
10234
10377
|
/**
|
|
10235
10378
|
* Whether constraint force is applied to the object's center of mass.
|
|
10236
10379
|
*
|
|
@@ -20419,6 +20562,8 @@ interface GuiService extends Instance {
|
|
|
20419
20562
|
*/
|
|
20420
20563
|
TouchControlsEnabled: boolean;
|
|
20421
20564
|
/**
|
|
20565
|
+
* Read-only property which represents the physical rendering size of the viewport.
|
|
20566
|
+
*
|
|
20422
20567
|
* - **ThreadSafety**: ReadSafe
|
|
20423
20568
|
* - **Tags**: NotReplicated
|
|
20424
20569
|
*
|
|
@@ -27134,6 +27279,12 @@ interface Mouse extends Instance {
|
|
|
27134
27279
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Mouse#Icon)
|
|
27135
27280
|
*/
|
|
27136
27281
|
Icon: ContentId;
|
|
27282
|
+
/**
|
|
27283
|
+
* - **ThreadSafety**: ReadSafe
|
|
27284
|
+
*
|
|
27285
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Mouse#IconContent)
|
|
27286
|
+
*/
|
|
27287
|
+
IconContent: Content;
|
|
27137
27288
|
/**
|
|
27138
27289
|
* A `CFrame` positioned at the `Workspace.CurrentCamera` and oriented toward the mouse's 3D position.
|
|
27139
27290
|
*
|
|
@@ -30494,6 +30645,12 @@ interface BackpackItem extends Model {
|
|
|
30494
30645
|
* @deprecated
|
|
30495
30646
|
*/
|
|
30496
30647
|
readonly _nominal_BackpackItem: unique symbol;
|
|
30648
|
+
/**
|
|
30649
|
+
* - **ThreadSafety**: ReadSafe
|
|
30650
|
+
*
|
|
30651
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BackpackItem#TextureContent)
|
|
30652
|
+
*/
|
|
30653
|
+
TextureContent: Content;
|
|
30497
30654
|
/**
|
|
30498
30655
|
* The texture icon that is displayed for a tool in the player's backpack.
|
|
30499
30656
|
*
|
|
@@ -34931,6 +35088,45 @@ interface ReflectionService extends Instance {
|
|
|
34931
35088
|
*/
|
|
34932
35089
|
GetPropertiesOfClass(this: ReflectionService, className: string, filter?: object): Array<unknown>;
|
|
34933
35090
|
}
|
|
35091
|
+
/**
|
|
35092
|
+
* - **Tags**: NotCreatable, Service
|
|
35093
|
+
*
|
|
35094
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RemoteCommandService)
|
|
35095
|
+
*/
|
|
35096
|
+
interface RemoteCommandService extends Instance {
|
|
35097
|
+
/**
|
|
35098
|
+
* **DO NOT USE!**
|
|
35099
|
+
*
|
|
35100
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
35101
|
+
* @hidden
|
|
35102
|
+
* @deprecated
|
|
35103
|
+
*/
|
|
35104
|
+
readonly _nominal_RemoteCommandService: unique symbol;
|
|
35105
|
+
/**
|
|
35106
|
+
* - **ThreadSafety**: Unsafe
|
|
35107
|
+
*
|
|
35108
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RemoteCommandService#GetExecutingPlayer)
|
|
35109
|
+
*/
|
|
35110
|
+
GetExecutingPlayer(this: RemoteCommandService): Player;
|
|
35111
|
+
/**
|
|
35112
|
+
* - **ThreadSafety**: Unsafe
|
|
35113
|
+
*
|
|
35114
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RemoteCommandService#GetReceivedUpdateSignal)
|
|
35115
|
+
*/
|
|
35116
|
+
GetReceivedUpdateSignal(this: RemoteCommandService): RBXScriptSignal;
|
|
35117
|
+
/**
|
|
35118
|
+
* - **ThreadSafety**: Unsafe
|
|
35119
|
+
*
|
|
35120
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RemoteCommandService#GetStoppingSignal)
|
|
35121
|
+
*/
|
|
35122
|
+
GetStoppingSignal(this: RemoteCommandService): RBXScriptSignal;
|
|
35123
|
+
/**
|
|
35124
|
+
* - **ThreadSafety**: Unsafe
|
|
35125
|
+
*
|
|
35126
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RemoteCommandService#SendUpdate)
|
|
35127
|
+
*/
|
|
35128
|
+
SendUpdate(this: RemoteCommandService, args: unknown): void;
|
|
35129
|
+
}
|
|
34934
35130
|
/**
|
|
34935
35131
|
* - **Tags**: NotCreatable, Service
|
|
34936
35132
|
*
|
|
@@ -37884,6 +38080,21 @@ interface SoundService extends Instance {
|
|
|
37884
38080
|
SetListener(this: SoundService, listenerType: CastsToEnum<Enum.ListenerType.ObjectCFrame>, basePart: BasePart): void;
|
|
37885
38081
|
SetListener(this: SoundService, listenerType: CastsToEnum<Enum.ListenerType.ObjectPosition>, basePart: BasePart): void;
|
|
37886
38082
|
}
|
|
38083
|
+
/**
|
|
38084
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
38085
|
+
*
|
|
38086
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SoundShimService)
|
|
38087
|
+
*/
|
|
38088
|
+
interface SoundShimService extends Instance {
|
|
38089
|
+
/**
|
|
38090
|
+
* **DO NOT USE!**
|
|
38091
|
+
*
|
|
38092
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
38093
|
+
* @hidden
|
|
38094
|
+
* @deprecated
|
|
38095
|
+
*/
|
|
38096
|
+
readonly _nominal_SoundShimService: unique symbol;
|
|
38097
|
+
}
|
|
37887
38098
|
/**
|
|
37888
38099
|
* A particle emitter with the visual aesthetic of sparkles.
|
|
37889
38100
|
*
|
|
@@ -38329,6 +38540,8 @@ interface Stats extends Instance {
|
|
|
38329
38540
|
*/
|
|
38330
38541
|
readonly InstanceCount: number;
|
|
38331
38542
|
/**
|
|
38543
|
+
* An indication of whether memory tracking is enabled. This is guaranteed to be unchanged until the next time the Client is started.
|
|
38544
|
+
*
|
|
38332
38545
|
* - **ThreadSafety**: ReadSafe
|
|
38333
38546
|
* - **Tags**: NotReplicated
|
|
38334
38547
|
*
|
|
@@ -38498,6 +38711,8 @@ interface Stats extends Instance {
|
|
|
38498
38711
|
*/
|
|
38499
38712
|
GetMemoryCategoryNames(this: Stats): Array<unknown>;
|
|
38500
38713
|
/**
|
|
38714
|
+
* Returns the number of megabytes that are being consumed by all available categories, or an empty array if `MemoryTrackingEnabled` is false.
|
|
38715
|
+
*
|
|
38501
38716
|
* - **ThreadSafety**: Unsafe
|
|
38502
38717
|
*
|
|
38503
38718
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats#GetMemoryUsageMbAllCategories)
|
|
@@ -38505,7 +38720,7 @@ interface Stats extends Instance {
|
|
|
38505
38720
|
*/
|
|
38506
38721
|
GetMemoryUsageMbAllCategories(this: Stats): Array<unknown>;
|
|
38507
38722
|
/**
|
|
38508
|
-
* Returns the number of megabytes that are being consumed in the specified `DeveloperMemoryTag` category.
|
|
38723
|
+
* Returns the number of megabytes that are being consumed in the specified `DeveloperMemoryTag` category, or 0 if `MemoryTrackingEnabled` is false.
|
|
38509
38724
|
*
|
|
38510
38725
|
* - **ThreadSafety**: Unsafe
|
|
38511
38726
|
*
|
|
@@ -38515,7 +38730,7 @@ interface Stats extends Instance {
|
|
|
38515
38730
|
*/
|
|
38516
38731
|
GetMemoryUsageMbForTag(this: Stats, tag: CastsToEnum<Enum.DeveloperMemoryTag>): number;
|
|
38517
38732
|
/**
|
|
38518
|
-
* Returns the total amount of memory being consumed by the current game session, in megabytes.
|
|
38733
|
+
* Returns the total amount of memory being consumed by the current game session, in megabytes, or 0 if `MemoryTrackingEnabled` is false.
|
|
38519
38734
|
*
|
|
38520
38735
|
* - **ThreadSafety**: Unsafe
|
|
38521
38736
|
*
|
|
@@ -41212,6 +41427,32 @@ interface TextFilterTranslatedResult extends Instance {
|
|
|
41212
41427
|
*/
|
|
41213
41428
|
GetTranslations(this: TextFilterTranslatedResult): object;
|
|
41214
41429
|
}
|
|
41430
|
+
/**
|
|
41431
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TextGenerator)
|
|
41432
|
+
*/
|
|
41433
|
+
interface TextGenerator extends Instance {
|
|
41434
|
+
/**
|
|
41435
|
+
* **DO NOT USE!**
|
|
41436
|
+
*
|
|
41437
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
41438
|
+
* @hidden
|
|
41439
|
+
* @deprecated
|
|
41440
|
+
*/
|
|
41441
|
+
readonly _nominal_TextGenerator: unique symbol;
|
|
41442
|
+
/**
|
|
41443
|
+
* - **ThreadSafety**: ReadSafe
|
|
41444
|
+
*
|
|
41445
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TextGenerator#SystemPrompt)
|
|
41446
|
+
*/
|
|
41447
|
+
SystemPrompt: string;
|
|
41448
|
+
/**
|
|
41449
|
+
* - **ThreadSafety**: Unsafe
|
|
41450
|
+
* - **Tags**: Yields
|
|
41451
|
+
*
|
|
41452
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TextGenerator#GenerateTextAsync)
|
|
41453
|
+
*/
|
|
41454
|
+
GenerateTextAsync(this: TextGenerator, request: object): object;
|
|
41455
|
+
}
|
|
41215
41456
|
/**
|
|
41216
41457
|
* The TextService is a service internally responsible for handling the display of text in the game.
|
|
41217
41458
|
*
|
|
@@ -42136,6 +42377,12 @@ interface UIDragDetector extends UIComponent {
|
|
|
42136
42377
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIDragDetector#ActivatedCursorIcon)
|
|
42137
42378
|
*/
|
|
42138
42379
|
ActivatedCursorIcon: ContentId;
|
|
42380
|
+
/**
|
|
42381
|
+
* - **ThreadSafety**: ReadSafe
|
|
42382
|
+
*
|
|
42383
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIDragDetector#ActivatedCursorIconContent)
|
|
42384
|
+
*/
|
|
42385
|
+
ActivatedCursorIconContent: Content;
|
|
42139
42386
|
/**
|
|
42140
42387
|
* Determines bounding behavior of the dragged UI object when the detector's `BoundingUI` is set.
|
|
42141
42388
|
*
|
|
@@ -42160,6 +42407,12 @@ interface UIDragDetector extends UIComponent {
|
|
|
42160
42407
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIDragDetector#CursorIcon)
|
|
42161
42408
|
*/
|
|
42162
42409
|
CursorIcon: ContentId;
|
|
42410
|
+
/**
|
|
42411
|
+
* - **ThreadSafety**: ReadSafe
|
|
42412
|
+
*
|
|
42413
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIDragDetector#CursorIconContent)
|
|
42414
|
+
*/
|
|
42415
|
+
CursorIconContent: Content;
|
|
42163
42416
|
/**
|
|
42164
42417
|
* The drag axis for the `UIDragDetector` instance when `DragStyle` is set to `UIDragDetectorDragStyle.TranslateLine`.
|
|
42165
42418
|
*
|
|
@@ -43385,6 +43638,12 @@ interface UserInputService extends Instance {
|
|
|
43385
43638
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserInputService#MouseIcon)
|
|
43386
43639
|
*/
|
|
43387
43640
|
MouseIcon: ContentId;
|
|
43641
|
+
/**
|
|
43642
|
+
* - **ThreadSafety**: ReadSafe
|
|
43643
|
+
*
|
|
43644
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserInputService#MouseIconContent)
|
|
43645
|
+
*/
|
|
43646
|
+
MouseIconContent: Content;
|
|
43388
43647
|
/**
|
|
43389
43648
|
* Determines whether the mouse icon is visible.
|
|
43390
43649
|
*
|
|
@@ -151,6 +151,7 @@ interface Services {
|
|
|
151
151
|
PublishService: PublishService;
|
|
152
152
|
RecommendationService: RecommendationService;
|
|
153
153
|
ReflectionService: ReflectionService;
|
|
154
|
+
RemoteCommandService: RemoteCommandService;
|
|
154
155
|
RemoteCursorService: RemoteCursorService;
|
|
155
156
|
RemoteDebuggerServer: RemoteDebuggerServer;
|
|
156
157
|
RenderSettings: RenderSettings;
|
|
@@ -187,6 +188,7 @@ interface Services {
|
|
|
187
188
|
SnippetService: SnippetService;
|
|
188
189
|
SocialService: SocialService;
|
|
189
190
|
SoundService: SoundService;
|
|
191
|
+
SoundShimService: SoundShimService;
|
|
190
192
|
StarterGui: StarterGui;
|
|
191
193
|
StarterPack: StarterPack;
|
|
192
194
|
StarterPlayer: StarterPlayer;
|
|
@@ -498,6 +500,7 @@ interface CreatableInstances {
|
|
|
498
500
|
TextChannel: TextChannel;
|
|
499
501
|
TextChatCommand: TextChatCommand;
|
|
500
502
|
TextChatMessageProperties: TextChatMessageProperties;
|
|
503
|
+
TextGenerator: TextGenerator;
|
|
501
504
|
TextLabel: TextLabel;
|
|
502
505
|
Texture: Texture;
|
|
503
506
|
Tool: Tool;
|
|
@@ -755,6 +758,7 @@ interface Objects extends Instances {
|
|
|
755
758
|
ConfigSnapshot: ConfigSnapshot;
|
|
756
759
|
EditableImage: EditableImage;
|
|
757
760
|
EditableMesh: EditableMesh;
|
|
761
|
+
ExecutedRemoteCommand: ExecutedRemoteCommand;
|
|
758
762
|
MLSession: MLSession;
|
|
759
763
|
Object: RBXObject;
|
|
760
764
|
ScreenshotCapture: ScreenshotCapture;
|
|
@@ -877,6 +881,21 @@ interface EditableMesh extends RBXObject {
|
|
|
877
881
|
*/
|
|
878
882
|
readonly _nominal_EditableMesh: unique symbol;
|
|
879
883
|
}
|
|
884
|
+
/**
|
|
885
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
886
|
+
*
|
|
887
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ExecutedRemoteCommand)
|
|
888
|
+
*/
|
|
889
|
+
interface ExecutedRemoteCommand extends RBXObject {
|
|
890
|
+
/**
|
|
891
|
+
* **DO NOT USE!**
|
|
892
|
+
*
|
|
893
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
894
|
+
* @hidden
|
|
895
|
+
* @deprecated
|
|
896
|
+
*/
|
|
897
|
+
readonly _nominal_ExecutedRemoteCommand: unique symbol;
|
|
898
|
+
}
|
|
880
899
|
/**
|
|
881
900
|
* `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
|
|
882
901
|
*
|
|
@@ -10838,6 +10857,21 @@ interface ReflectionService extends Instance {
|
|
|
10838
10857
|
*/
|
|
10839
10858
|
readonly _nominal_ReflectionService: unique symbol;
|
|
10840
10859
|
}
|
|
10860
|
+
/**
|
|
10861
|
+
* - **Tags**: NotCreatable, Service
|
|
10862
|
+
*
|
|
10863
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RemoteCommandService)
|
|
10864
|
+
*/
|
|
10865
|
+
interface RemoteCommandService extends Instance {
|
|
10866
|
+
/**
|
|
10867
|
+
* **DO NOT USE!**
|
|
10868
|
+
*
|
|
10869
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
10870
|
+
* @hidden
|
|
10871
|
+
* @deprecated
|
|
10872
|
+
*/
|
|
10873
|
+
readonly _nominal_RemoteCommandService: unique symbol;
|
|
10874
|
+
}
|
|
10841
10875
|
/**
|
|
10842
10876
|
* - **Tags**: NotCreatable, Service
|
|
10843
10877
|
*
|
|
@@ -12512,6 +12546,21 @@ interface SoundService extends Instance {
|
|
|
12512
12546
|
*/
|
|
12513
12547
|
OpenDirectionalCurveEditor(this: SoundService, selectedCurveObjects: Array<Instance>): void;
|
|
12514
12548
|
}
|
|
12549
|
+
/**
|
|
12550
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
12551
|
+
*
|
|
12552
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SoundShimService)
|
|
12553
|
+
*/
|
|
12554
|
+
interface SoundShimService extends Instance {
|
|
12555
|
+
/**
|
|
12556
|
+
* **DO NOT USE!**
|
|
12557
|
+
*
|
|
12558
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
12559
|
+
* @hidden
|
|
12560
|
+
* @deprecated
|
|
12561
|
+
*/
|
|
12562
|
+
readonly _nominal_SoundShimService: unique symbol;
|
|
12563
|
+
}
|
|
12515
12564
|
/**
|
|
12516
12565
|
* A particle emitter with the visual aesthetic of sparkles.
|
|
12517
12566
|
*
|
|
@@ -13878,6 +13927,19 @@ interface TextFilterTranslatedResult extends Instance {
|
|
|
13878
13927
|
*/
|
|
13879
13928
|
readonly _nominal_TextFilterTranslatedResult: unique symbol;
|
|
13880
13929
|
}
|
|
13930
|
+
/**
|
|
13931
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TextGenerator)
|
|
13932
|
+
*/
|
|
13933
|
+
interface TextGenerator extends Instance {
|
|
13934
|
+
/**
|
|
13935
|
+
* **DO NOT USE!**
|
|
13936
|
+
*
|
|
13937
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
13938
|
+
* @hidden
|
|
13939
|
+
* @deprecated
|
|
13940
|
+
*/
|
|
13941
|
+
readonly _nominal_TextGenerator: unique symbol;
|
|
13942
|
+
}
|
|
13881
13943
|
/**
|
|
13882
13944
|
* The TextService is a service internally responsible for handling the display of text in the game.
|
|
13883
13945
|
*
|
|
@@ -10077,10 +10077,14 @@ declare namespace Enum {
|
|
|
10077
10077
|
}
|
|
10078
10078
|
export type DialogTone = DialogTone.Neutral | DialogTone.Friendly | DialogTone.Enemy;
|
|
10079
10079
|
/**
|
|
10080
|
+
* This enum is used with `GuiService.ViewportDisplaySize` to indicate the internally-categorized rendering size of the viewport.
|
|
10081
|
+
*
|
|
10080
10082
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DisplaySize)
|
|
10081
10083
|
*/
|
|
10082
10084
|
export namespace DisplaySize {
|
|
10083
10085
|
/**
|
|
10086
|
+
* Viewport is categorized as small. Applies to most tablet/mobile/handheld devices.
|
|
10087
|
+
*
|
|
10084
10088
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DisplaySize#Small)
|
|
10085
10089
|
*/
|
|
10086
10090
|
export interface Small extends globalThis.EnumItem {
|
|
@@ -10090,6 +10094,8 @@ declare namespace Enum {
|
|
|
10090
10094
|
}
|
|
10091
10095
|
export const Small: Small;
|
|
10092
10096
|
/**
|
|
10097
|
+
* Viewport is categorized as medium. Applies to most laptops and monitors.
|
|
10098
|
+
*
|
|
10093
10099
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DisplaySize#Medium)
|
|
10094
10100
|
*/
|
|
10095
10101
|
export interface Medium extends globalThis.EnumItem {
|
|
@@ -10099,6 +10105,8 @@ declare namespace Enum {
|
|
|
10099
10105
|
}
|
|
10100
10106
|
export const Medium: Medium;
|
|
10101
10107
|
/**
|
|
10108
|
+
* Viewport is categorized as large. Applies to most TVs or larger.
|
|
10109
|
+
*
|
|
10102
10110
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DisplaySize#Large)
|
|
10103
10111
|
*/
|
|
10104
10112
|
export interface Large extends globalThis.EnumItem {
|
|
@@ -11453,6 +11461,33 @@ declare namespace Enum {
|
|
|
11453
11461
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FacsActionUnit | undefined;
|
|
11454
11462
|
}
|
|
11455
11463
|
export type FacsActionUnit = FacsActionUnit.ChinRaiserUpperLip | FacsActionUnit.ChinRaiser | FacsActionUnit.FlatPucker | FacsActionUnit.Funneler | FacsActionUnit.LowerLipSuck | FacsActionUnit.LipPresser | FacsActionUnit.LipsTogether | FacsActionUnit.MouthLeft | FacsActionUnit.MouthRight | FacsActionUnit.Pucker | FacsActionUnit.UpperLipSuck | FacsActionUnit.LeftCheekPuff | FacsActionUnit.LeftDimpler | FacsActionUnit.LeftLipCornerDown | FacsActionUnit.LeftLowerLipDepressor | FacsActionUnit.LeftLipCornerPuller | FacsActionUnit.LeftLipStretcher | FacsActionUnit.LeftUpperLipRaiser | FacsActionUnit.RightCheekPuff | FacsActionUnit.RightDimpler | FacsActionUnit.RightLipCornerDown | FacsActionUnit.RightLowerLipDepressor | FacsActionUnit.RightLipCornerPuller | FacsActionUnit.RightLipStretcher | FacsActionUnit.RightUpperLipRaiser | FacsActionUnit.JawDrop | FacsActionUnit.JawLeft | FacsActionUnit.JawRight | FacsActionUnit.Corrugator | FacsActionUnit.LeftBrowLowerer | FacsActionUnit.LeftOuterBrowRaiser | FacsActionUnit.LeftNoseWrinkler | FacsActionUnit.LeftInnerBrowRaiser | FacsActionUnit.RightBrowLowerer | FacsActionUnit.RightOuterBrowRaiser | FacsActionUnit.RightInnerBrowRaiser | FacsActionUnit.RightNoseWrinkler | FacsActionUnit.EyesLookDown | FacsActionUnit.EyesLookLeft | FacsActionUnit.EyesLookUp | FacsActionUnit.EyesLookRight | FacsActionUnit.LeftCheekRaiser | FacsActionUnit.LeftEyeUpperLidRaiser | FacsActionUnit.LeftEyeClosed | FacsActionUnit.RightCheekRaiser | FacsActionUnit.RightEyeUpperLidRaiser | FacsActionUnit.RightEyeClosed | FacsActionUnit.TongueDown | FacsActionUnit.TongueOut | FacsActionUnit.TongueUp;
|
|
11464
|
+
/**
|
|
11465
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FeatureRestrictionAbuseVector)
|
|
11466
|
+
*/
|
|
11467
|
+
export namespace FeatureRestrictionAbuseVector {
|
|
11468
|
+
/**
|
|
11469
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FeatureRestrictionAbuseVector#ExperienceChat)
|
|
11470
|
+
*/
|
|
11471
|
+
export interface ExperienceChat extends globalThis.EnumItem {
|
|
11472
|
+
Name: "ExperienceChat";
|
|
11473
|
+
Value: 0;
|
|
11474
|
+
EnumType: typeof globalThis.Enum.FeatureRestrictionAbuseVector;
|
|
11475
|
+
}
|
|
11476
|
+
export const ExperienceChat: ExperienceChat;
|
|
11477
|
+
/**
|
|
11478
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FeatureRestrictionAbuseVector#Communication)
|
|
11479
|
+
*/
|
|
11480
|
+
export interface Communication extends globalThis.EnumItem {
|
|
11481
|
+
Name: "Communication";
|
|
11482
|
+
Value: 1;
|
|
11483
|
+
EnumType: typeof globalThis.Enum.FeatureRestrictionAbuseVector;
|
|
11484
|
+
}
|
|
11485
|
+
export const Communication: Communication;
|
|
11486
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FeatureRestrictionAbuseVector>;
|
|
11487
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FeatureRestrictionAbuseVector | undefined;
|
|
11488
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FeatureRestrictionAbuseVector | undefined;
|
|
11489
|
+
}
|
|
11490
|
+
export type FeatureRestrictionAbuseVector = FeatureRestrictionAbuseVector.ExperienceChat | FeatureRestrictionAbuseVector.Communication;
|
|
11456
11491
|
/**
|
|
11457
11492
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FieldOfViewMode)
|
|
11458
11493
|
*/
|
package/include/roblox.d.ts
CHANGED
|
@@ -76,9 +76,9 @@ interface GetGroupsAsyncResult {
|
|
|
76
76
|
IsInClan: boolean;
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
-
type HttpHeaders = Record<string, string> | Map<string, string>;
|
|
79
|
+
type HttpHeaders = Record<string, string | Secret> | Map<string, string | Secret>;
|
|
80
80
|
interface RequestAsyncRequest {
|
|
81
|
-
Url: string;
|
|
81
|
+
Url: string | Secret;
|
|
82
82
|
Method?: "GET" | "HEAD" | "POST" | "PUT" | "DELETE" | "PATCH";
|
|
83
83
|
Body?: string;
|
|
84
84
|
Headers?: HttpHeaders;
|