diff options
author | IcECreAm777 <hgk.1998@googlemail.com> | 2023-07-08 17:05:48 +0200 |
---|---|---|
committer | IcECreAm777 <hgk.1998@googlemail.com> | 2023-07-08 17:05:48 +0200 |
commit | 516635e22464699fa940ed981a186088352ba734 (patch) | |
tree | 9fcce535afb4b59f6109d95644b23ca5f5873b72 /Scripts/drawing.gd | |
parent | 8b08fec313ac3517e782d946cbd203958801e6be (diff) | |
download | 2023-516635e22464699fa940ed981a186088352ba734.tar.gz 2023-516635e22464699fa940ed981a186088352ba734.tar.bz2 2023-516635e22464699fa940ed981a186088352ba734.zip |
some cleanups
Diffstat (limited to 'Scripts/drawing.gd')
-rw-r--r-- | Scripts/drawing.gd | 7 |
1 files changed, 0 insertions, 7 deletions
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) - |