Merge pull request 'add whistle to train' (#38) from whitleandstats into main

Reviewed-on: #38
This commit was merged in pull request #38.
This commit is contained in:
2026-06-29 08:20:37 +00:00
23 changed files with 879 additions and 38 deletions

View File

@@ -9,10 +9,10 @@ func _ready() -> void:
deselect()
disable()
func set_option_text(text: String) -> void:
func set_option_text(_text: String) -> void:
if label == null:
label = $%Label
label.text = text
label.text = _text
func select() -> void:
if checkbox == null: