Leave only one track type, WIP: track deletion.

This commit is contained in:
2025-07-27 23:52:25 +02:00
parent 90e85f5404
commit ecadfb7033
15 changed files with 190 additions and 218 deletions

9
Scripts/TrackLineEdit.gd Normal file
View File

@@ -0,0 +1,9 @@
extends LineEdit
func _ready() -> void:
text_submitted.connect(submit)
func submit(text: String):
caret_column = 0
release_focus()
pass