From ed77e27ecd1101f02e3d7fb83cca5a4b62dd3dca Mon Sep 17 00:00:00 2001 From: perivesta <> Date: Fri, 7 Jul 2023 22:54:40 +0200 Subject: very simple drawing --- Scripts/drawing.gd | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Scripts/drawing.gd (limited to 'Scripts/drawing.gd') diff --git a/Scripts/drawing.gd b/Scripts/drawing.gd new file mode 100644 index 0000000..34129ac --- /dev/null +++ b/Scripts/drawing.gd @@ -0,0 +1,18 @@ +extends Node + +var drawing = false +var line: Line2D + + +func _ready(): + line = $TrackLine + Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE) + +func _input(event): + if event is InputEventMouseButton and event.button_index == MOUSE_BUTTON_LEFT: + # start/stop drawing + drawing = event.pressed + + if event is InputEventMouseMotion and drawing: + # extend the line + line.add_point(event.position) -- cgit