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 Feb 21, 2024
1 parent f83d12c commit 459a2a3
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions include/generated/None.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15045,6 +15045,7 @@ interface WireframeHandleAdornment extends HandleAdornment {
AddLine(this: WireframeHandleAdornment, from: Vector3, to: Vector3): void;
AddLines(this: WireframeHandleAdornment, points: Array<any>): void;
AddPath(this: WireframeHandleAdornment, points: Array<any>, loop: boolean): void;
AddText(this: WireframeHandleAdornment, point: Vector3, text: string, size?: number): void;
Clear(this: WireframeHandleAdornment): void;
}

Expand Down Expand Up @@ -15298,6 +15299,20 @@ interface Path2D extends GuiBase {
* @deprecated
*/
readonly _nominal_Path2D: unique symbol;
Color: Color3;
Position: UDim2;
Visible: boolean;
ZIndex: number;
GetControlPoint(this: Path2D, index: number): Path2DControlPoint;
GetControlPoints(this: Path2D): unknown;
GetPositionOnCurve(this: Path2D, t: number): UDim2;
GetPositionOnCurveArcLength(this: Path2D, t: number): UDim2;
GetTangentOnCurve(this: Path2D, t: number): Vector2;
GetTangentOnCurveArcLength(this: Path2D, t: number): Vector2;
InsertControlPoint(this: Path2D, index: number, point: Path2DControlPoint): void;
RemoveControlPoint(this: Path2D, index: number): void;
SetControlPoints(this: Path2D, controlPoints: Array<any>): void;
UpdateControlPoint(this: Path2D, index: number, point: Path2DControlPoint): void;
}

/** The GuiService is a service which currently allows developers to control what [GuiObject](https://developer.roblox.com/en-us/api-reference/class/GuiObject) is currently being selected by the gamepad navigator. It also allows clients to check if Roblox's main menu is currently open.
Expand Down

0 comments on commit 459a2a3

Please sign in to comment.