@quenty/draw 7.8.4 → 7.8.5-canary.11a5dcf.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,14 @@
|
|
|
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.8.5-canary.11a5dcf.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/draw@7.8.4...@quenty/draw@7.8.5-canary.11a5dcf.0) (2025-05-10)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/draw
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [7.8.4](https://github.com/Quenty/NevermoreEngine/compare/@quenty/draw@7.8.3...@quenty/draw@7.8.4) (2025-04-10)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @quenty/draw
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/draw",
|
|
3
|
-
"version": "7.8.
|
|
3
|
+
"version": "7.8.5-canary.11a5dcf.0",
|
|
4
4
|
"description": "A utility library to debug things in 3D space for Roblox.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"access": "public"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@quenty/loader": "
|
|
33
|
-
"@quenty/maid": "
|
|
32
|
+
"@quenty/loader": "10.8.4-canary.11a5dcf.0",
|
|
33
|
+
"@quenty/maid": "3.4.4-canary.11a5dcf.0"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "11a5dcf7d4c7a0bfbf3337e97d30e8346ea09d3f"
|
|
36
36
|
}
|
package/src/Shared/Draw.lua
CHANGED
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
@class Draw
|
|
23
23
|
]=]
|
|
24
24
|
|
|
25
|
-
local Workspace = game:GetService("Workspace")
|
|
26
|
-
local RunService = game:GetService("RunService")
|
|
27
25
|
local CollectionService = game:GetService("CollectionService")
|
|
26
|
+
local RunService = game:GetService("RunService")
|
|
28
27
|
local TextService = game:GetService("TextService")
|
|
28
|
+
local Workspace = game:GetService("Workspace")
|
|
29
29
|
|
|
30
30
|
local Terrain = Workspace.Terrain
|
|
31
31
|
|
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
@class Draw.story
|
|
3
3
|
]]
|
|
4
4
|
|
|
5
|
-
local require =
|
|
5
|
+
local require =
|
|
6
|
+
require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
|
|
6
7
|
|
|
7
8
|
local UserInputService = game:GetService("UserInputService")
|
|
8
9
|
local Workspace = game:GetService("Workspace")
|
|
@@ -32,7 +33,7 @@ return function(_target)
|
|
|
32
33
|
local baseRay = camera:ViewportPointToRay(position.x, position.y, 0)
|
|
33
34
|
local ray = Ray.new(baseRay.Origin, baseRay.Direction.unit * 50)
|
|
34
35
|
local cframe = CFrame.new(ray.Origin, ray.Origin + ray.Direction.unit)
|
|
35
|
-
* CFrame.Angles(0, math.pi/4, math.pi/4)
|
|
36
|
+
* CFrame.Angles(0, math.pi / 4, math.pi / 4)
|
|
36
37
|
local size = Vector3.new(4, 4, 4)
|
|
37
38
|
local direction = ray.Direction
|
|
38
39
|
|
|
@@ -50,4 +51,4 @@ return function(_target)
|
|
|
50
51
|
return function()
|
|
51
52
|
topMaid:DoCleaning()
|
|
52
53
|
end
|
|
53
|
-
end
|
|
54
|
+
end
|
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
@class Draw.story
|
|
3
3
|
]]
|
|
4
4
|
|
|
5
|
-
local require =
|
|
5
|
+
local require =
|
|
6
|
+
require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
|
|
6
7
|
|
|
7
8
|
local UserInputService = game:GetService("UserInputService")
|
|
8
9
|
local Workspace = game:GetService("Workspace")
|
|
@@ -40,7 +41,6 @@ return function(_target)
|
|
|
40
41
|
end
|
|
41
42
|
end
|
|
42
43
|
|
|
43
|
-
|
|
44
44
|
local camera = Workspace.CurrentCamera
|
|
45
45
|
local position = inputObject.Position
|
|
46
46
|
local baseRay = camera:ViewportPointToRay(position.x, position.y, 0)
|
|
@@ -62,4 +62,4 @@ return function(_target)
|
|
|
62
62
|
return function()
|
|
63
63
|
topMaid:DoCleaning()
|
|
64
64
|
end
|
|
65
|
-
end
|
|
65
|
+
end
|
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
@class Draw.story
|
|
3
3
|
]]
|
|
4
4
|
|
|
5
|
-
local require =
|
|
5
|
+
local require =
|
|
6
|
+
require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
|
|
6
7
|
|
|
7
8
|
local UserInputService = game:GetService("UserInputService")
|
|
8
9
|
local Workspace = game:GetService("Workspace")
|
|
@@ -40,7 +41,6 @@ return function(_target)
|
|
|
40
41
|
end
|
|
41
42
|
end
|
|
42
43
|
|
|
43
|
-
|
|
44
44
|
local camera = Workspace.CurrentCamera
|
|
45
45
|
local position = inputObject.Position
|
|
46
46
|
local baseRay = camera:ViewportPointToRay(position.x, position.y, 0)
|
|
@@ -62,4 +62,4 @@ return function(_target)
|
|
|
62
62
|
return function()
|
|
63
63
|
topMaid:DoCleaning()
|
|
64
64
|
end
|
|
65
|
-
end
|
|
65
|
+
end
|