@rbxts/types 1.0.754 → 1.0.755

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.
@@ -15045,6 +15045,7 @@ interface WireframeHandleAdornment extends HandleAdornment {
15045
15045
  AddLine(this: WireframeHandleAdornment, from: Vector3, to: Vector3): void;
15046
15046
  AddLines(this: WireframeHandleAdornment, points: Array<any>): void;
15047
15047
  AddPath(this: WireframeHandleAdornment, points: Array<any>, loop: boolean): void;
15048
+ AddText(this: WireframeHandleAdornment, point: Vector3, text: string, size?: number): void;
15048
15049
  Clear(this: WireframeHandleAdornment): void;
15049
15050
  }
15050
15051
 
@@ -15298,6 +15299,20 @@ interface Path2D extends GuiBase {
15298
15299
  * @deprecated
15299
15300
  */
15300
15301
  readonly _nominal_Path2D: unique symbol;
15302
+ Color: Color3;
15303
+ Position: UDim2;
15304
+ Visible: boolean;
15305
+ ZIndex: number;
15306
+ GetControlPoint(this: Path2D, index: number): Path2DControlPoint;
15307
+ GetControlPoints(this: Path2D): unknown;
15308
+ GetPositionOnCurve(this: Path2D, t: number): UDim2;
15309
+ GetPositionOnCurveArcLength(this: Path2D, t: number): UDim2;
15310
+ GetTangentOnCurve(this: Path2D, t: number): Vector2;
15311
+ GetTangentOnCurveArcLength(this: Path2D, t: number): Vector2;
15312
+ InsertControlPoint(this: Path2D, index: number, point: Path2DControlPoint): void;
15313
+ RemoveControlPoint(this: Path2D, index: number): void;
15314
+ SetControlPoints(this: Path2D, controlPoints: Array<any>): void;
15315
+ UpdateControlPoint(this: Path2D, index: number, point: Path2DControlPoint): void;
15301
15316
  }
15302
15317
 
15303
15318
  /** 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.
@@ -1929,6 +1929,17 @@ interface PathWaypointConstructor {
1929
1929
 
1930
1930
  declare const PathWaypoint: PathWaypointConstructor;
1931
1931
 
1932
+ interface Path2DControlPoint {
1933
+ /**
1934
+ * **DO NOT USE!**
1935
+ *
1936
+ * This field exists to force TypeScript to recognize this as a nominal type
1937
+ * @hidden
1938
+ * @deprecated
1939
+ */
1940
+ readonly _nominal_Path2DControlPoint: unique symbol;
1941
+ }
1942
+
1932
1943
  // PhysicalProperties
1933
1944
  interface PhysicalProperties {
1934
1945
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.754",
3
+ "version": "1.0.755",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },