@rbxts/types 1.0.783 → 1.0.784
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.
|
@@ -173,6 +173,7 @@ interface Services {
|
|
|
173
173
|
TutorialService: TutorialService;
|
|
174
174
|
TweenService: TweenService;
|
|
175
175
|
UGCAvatarService: UGCAvatarService;
|
|
176
|
+
UIDragDetectorService: UIDragDetectorService;
|
|
176
177
|
UnvalidatedAssetService: UnvalidatedAssetService;
|
|
177
178
|
UserInputService: UserInputService;
|
|
178
179
|
UserService: UserService;
|
|
@@ -958,6 +959,8 @@ interface Instance {
|
|
|
958
959
|
* * [Instance:GetAttribute](https://developer.roblox.com/en-us/api-reference/function/Instance/GetAttribute), returns the attribute which has been assigned to the given name
|
|
959
960
|
* * [Instance.AttributeChanged](https://developer.roblox.com/en-us/api-reference/event/Instance/AttributeChanged), fires whenever an attribute is changed on the instance
|
|
960
961
|
* * [Instance:GetAttributeChangedSignal](https://developer.roblox.com/en-us/api-reference/function/Instance/GetAttributeChangedSignal), returns an event that fires when the given attribute changes
|
|
962
|
+
*
|
|
963
|
+
* Tags: CustomLuaState
|
|
961
964
|
*/
|
|
962
965
|
GetAttributes(this: Instance): Map<string, AttributeValue>;
|
|
963
966
|
/**
|
|
@@ -11830,6 +11833,7 @@ interface GetTextBoundsParams extends Instance {
|
|
|
11830
11833
|
*/
|
|
11831
11834
|
readonly _nominal_GetTextBoundsParams: unique symbol;
|
|
11832
11835
|
Font: Font;
|
|
11836
|
+
RichText: boolean;
|
|
11833
11837
|
Size: number;
|
|
11834
11838
|
Text: string;
|
|
11835
11839
|
Width: number;
|
|
@@ -35865,7 +35869,9 @@ interface UIDragDetector extends UIComponent {
|
|
|
35865
35869
|
* @deprecated
|
|
35866
35870
|
*/
|
|
35867
35871
|
readonly _nominal_UIDragDetector: unique symbol;
|
|
35872
|
+
ActivatedCursorIcon: string;
|
|
35868
35873
|
BoundingUI: GuiBase2d | undefined;
|
|
35874
|
+
CursorIcon: string;
|
|
35869
35875
|
DragAxis: Vector2;
|
|
35870
35876
|
DragRelativity: Enum.UIDragDetectorDragRelativity;
|
|
35871
35877
|
DragRotation: number;
|
|
@@ -36498,6 +36504,17 @@ interface UIStroke extends UIComponent {
|
|
|
36498
36504
|
Transparency: number;
|
|
36499
36505
|
}
|
|
36500
36506
|
|
|
36507
|
+
interface UIDragDetectorService extends Instance {
|
|
36508
|
+
/**
|
|
36509
|
+
* **DO NOT USE!**
|
|
36510
|
+
*
|
|
36511
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
36512
|
+
* @hidden
|
|
36513
|
+
* @deprecated
|
|
36514
|
+
*/
|
|
36515
|
+
readonly _nominal_UIDragDetectorService: unique symbol;
|
|
36516
|
+
}
|
|
36517
|
+
|
|
36501
36518
|
interface UnvalidatedAssetService extends Instance {
|
|
36502
36519
|
/**
|
|
36503
36520
|
* **DO NOT USE!**
|
|
@@ -20125,27 +20125,6 @@ declare namespace Enum {
|
|
|
20125
20125
|
}
|
|
20126
20126
|
export type TickCountSampleMethod = TickCountSampleMethod.Fast | TickCountSampleMethod.Benchmark | TickCountSampleMethod.Precise;
|
|
20127
20127
|
|
|
20128
|
-
export namespace TonemapperPreset {
|
|
20129
|
-
export interface Default extends globalThis.EnumItem {
|
|
20130
|
-
Name: "Default";
|
|
20131
|
-
Value: 0;
|
|
20132
|
-
EnumType: typeof globalThis.Enum.TonemapperPreset;
|
|
20133
|
-
}
|
|
20134
|
-
|
|
20135
|
-
export const Default: Default;
|
|
20136
|
-
|
|
20137
|
-
export interface Retro extends globalThis.EnumItem {
|
|
20138
|
-
Name: "Retro";
|
|
20139
|
-
Value: 1;
|
|
20140
|
-
EnumType: typeof globalThis.Enum.TonemapperPreset;
|
|
20141
|
-
}
|
|
20142
|
-
|
|
20143
|
-
export const Retro: Retro;
|
|
20144
|
-
|
|
20145
|
-
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TonemapperPreset>;
|
|
20146
|
-
}
|
|
20147
|
-
export type TonemapperPreset = TonemapperPreset.Default | TonemapperPreset.Retro;
|
|
20148
|
-
|
|
20149
20128
|
export namespace TopBottom {
|
|
20150
20129
|
export interface Top extends globalThis.EnumItem {
|
|
20151
20130
|
Name: "Top";
|