From 516635e22464699fa940ed981a186088352ba734 Mon Sep 17 00:00:00 2001 From: IcECreAm777 Date: Sat, 8 Jul 2023 17:05:48 +0200 Subject: some cleanups --- Scripts/drawing.gd | 7 ------- 1 file changed, 7 deletions(-) (limited to 'Scripts/drawing.gd') diff --git a/Scripts/drawing.gd b/Scripts/drawing.gd index 51e7f21..18e2a6c 100644 --- a/Scripts/drawing.gd +++ b/Scripts/drawing.gd @@ -8,12 +8,6 @@ var drawing = false func _ready(): Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE) -func _process(delta): - pass - -func _physics_process(delta): - pass - func _start_drawing(): line.clear_points() @@ -31,4 +25,3 @@ func _input(event): if drawing and event is InputEventMouseMotion: line.add_point(event.position) path.curve.add_point(event.position) - -- cgit