We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66b3aa9 commit d0fef33Copy full SHA for d0fef33
src/Tools/DesignTools/CurveTool.gd
@@ -213,7 +213,7 @@ func _clear() -> void:
213
214
## Get the [member _curve]'s baked points, and draw lines between them using [method _fill_gap].
215
func _bezier() -> Array[Vector2i]:
216
- var last_pixel := Global.canvas.current_pixel
+ var last_pixel := Global.canvas.current_pixel.floor()
217
if Global.mirror_view:
218
# Mirror the last point of the curve
219
last_pixel.x = (Global.current_project.size.x - 1) - last_pixel.x
0 commit comments