@quenty/draw 7.9.5 → 7.10.0

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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [7.10.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/draw@7.9.5...@quenty/draw@7.10.0) (2026-01-16)
7
+
8
+
9
+ ### Features
10
+
11
+ * Add luau typing to a variety of classes ([0271856](https://github.com/Quenty/NevermoreEngine/commit/0271856de02cc28c1d1d512c43bd6adeeaa41587))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [7.9.5](https://github.com/Quenty/NevermoreEngine/compare/@quenty/draw@7.9.4...@quenty/draw@7.9.5) (2026-01-12)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/draw",
3
- "version": "7.9.5",
3
+ "version": "7.10.0",
4
4
  "description": "A utility library to debug things in 3D space for Roblox.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -35,5 +35,5 @@
35
35
  "@quenty/loader": "10.9.3",
36
36
  "@quenty/maid": "3.5.3"
37
37
  },
38
- "gitHead": "55f4a7407de7247aceea574de4d2f57dab70cb91"
38
+ "gitHead": "8d2e7927e4399b4297a04d474d29bdd85692051d"
39
39
  }
@@ -563,7 +563,7 @@ end
563
563
  @param parent Instance? -- Optional parent
564
564
  @return BasePart
565
565
  ]=]
566
- function Draw.sphere(position: Vector3Like, radius: number, color: Color3?, parent: Instance)
566
+ function Draw.sphere(position: Vector3Like, radius: number, color: Color3?, parent: Instance?): BasePart
567
567
  return Draw.point(position, color, parent, radius * 2)
568
568
  end
569
569
 
@@ -872,7 +872,7 @@ end
872
872
  --[=[
873
873
  Draws a screen point
874
874
  ]=]
875
- function Draw.screenPoint(position: Vector2, parent: Instance, color: Color3Like?, diameter: number?): Frame
875
+ function Draw.screenPoint(position: Vector2, parent: Instance?, color: Color3Like?, diameter: number?): Frame
876
876
  local pointColor = Draw._toColor3(color) or Color3.new(0.658824, 0.501961, 0.501961)
877
877
  local pointDiameter = diameter or 3
878
878