Skip to content

Commit

Permalink
Update generated files [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow committed Aug 8, 2024
1 parent 011c9ea commit e3a6103
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions include/generated/None.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36117,10 +36117,17 @@ interface UIDragDetector extends UIComponent {
MinDragTranslation: UDim2;
ReferenceUIInstance: GuiObject | undefined;
ResponseStyle: Enum.UIDragDetectorResponseStyle;
AddConstraintFunction(this: UIDragDetector, priority: number, callback: Callback): RBXScriptConnection;
AddConstraintFunction(
this: UIDragDetector,
priority: number,
callback: (
proposedPosition: UDim2,
proposedRotation: number,
) => LuaTuple<[UDim2, number, Enum.UIDragDetectorDragRelativity?, Enum.UIDragDetectorDragSpace?]>,
): RBXScriptConnection;
GetReferencePosition(this: UIDragDetector): UDim2;
GetReferenceRotation(this: UIDragDetector): number;
SetDragStyleFunction(this: UIDragDetector, callback: Callback): void;
SetDragStyleFunction(this: UIDragDetector, callback: (inputPosition: UDim2) => UDim2 | void): void;
readonly DragContinue: RBXScriptSignal<(inputPosition: Vector2) => void>;
readonly DragEnd: RBXScriptSignal<(inputPosition: Vector2) => void>;
readonly DragStart: RBXScriptSignal<(inputPosition: Vector2) => void>;
Expand Down

0 comments on commit e3a6103

Please sign in to comment.