blob: 337afca676c04919428329157f26f1ed02b7c356 (
plain) (
tree)
|
|
extends Node
var drawing = false
@onready var line: Line2D = $TrackLine
@onready var path: Path2D = $TrackPath
func _ready():
Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE)
func start_drawing():
reset()
drawing = true
func _end_drawing():
drawing = false
line.simplify()
#line.draw_borders()
owner.set_driving(true)
func _input(event):
if drawing and event is InputEventMouseMotion:
line.add_point(event.position)
path.curve.add_point(event.position)
if event is InputEventMouseButton and event.button_index == MOUSE_BUTTON_RIGHT:
drawing = false
reset()
func reset():
line.clear_points()
#line.clear_borders()
path.curve.clear_points()
|