@quenty/draw 4.1.0 → 4.1.1
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 +11 -0
- package/package.json +2 -2
- package/src/Shared/Draw.lua +2 -2
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
|
+
## [4.1.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/draw@4.1.0...@quenty/draw@4.1.1) (2022-08-01)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Disable CanQuery/CanTouch on debug line part ([#275](https://github.com/Quenty/NevermoreEngine/issues/275)) ([00c6cfd](https://github.com/Quenty/NevermoreEngine/commit/00c6cfd5958ba0cca8787f7976ab01bb45721cf2))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [4.1.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/draw@4.0.0...@quenty/draw@4.1.0) (2022-06-21)
|
|
7
18
|
|
|
8
19
|
**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": "4.1.
|
|
3
|
+
"version": "4.1.1",
|
|
4
4
|
"description": "A utility library to debug things in 3D space for Roblox.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public"
|
|
30
30
|
},
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "0f42ea877636753d2ec56b04c03ffe225b6c2d84"
|
|
32
32
|
}
|
package/src/Shared/Draw.lua
CHANGED
|
@@ -100,8 +100,8 @@ function Draw.ray(ray, color, parent, meshDiameter, diameter)
|
|
|
100
100
|
rotatedPart.Anchored = true
|
|
101
101
|
rotatedPart.Archivable = false
|
|
102
102
|
rotatedPart.CanCollide = false
|
|
103
|
-
|
|
104
|
-
|
|
103
|
+
rotatedPart.CanQuery = false
|
|
104
|
+
rotatedPart.CanTouch = false
|
|
105
105
|
rotatedPart.CastShadow = false
|
|
106
106
|
rotatedPart.CFrame = CFrame.new(ray.Origin, ray.Origin + ray.Direction)
|
|
107
107
|
rotatedPart.Transparency = 1
|