diff options
author | perivesta <> | 2023-07-08 16:45:32 +0200 |
---|---|---|
committer | perivesta <> | 2023-07-08 16:45:32 +0200 |
commit | 8b08fec313ac3517e782d946cbd203958801e6be (patch) | |
tree | cab276d81c92fd0ff8d75694c4c252812b4b827c /Scripts/UI_Control.gd | |
parent | d98cee8592e15f23ce85e8d54abb29aa341c97da (diff) | |
parent | 78b6db9f792e18d848383856693cff4ef223a10f (diff) | |
download | 2023-8b08fec313ac3517e782d946cbd203958801e6be.tar.gz 2023-8b08fec313ac3517e782d946cbd203958801e6be.tar.bz2 2023-8b08fec313ac3517e782d946cbd203958801e6be.zip |
Merge branch 'game-control'
Diffstat (limited to 'Scripts/UI_Control.gd')
-rw-r--r-- | Scripts/UI_Control.gd | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Scripts/UI_Control.gd b/Scripts/UI_Control.gd new file mode 100644 index 0000000..b7ce2a5 --- /dev/null +++ b/Scripts/UI_Control.gd @@ -0,0 +1,27 @@ +extends Control + +@onready var in_game_ui = $InGameUI +@onready var post_game_ui = $PostGameUI + +@onready var time_label = $InGameUI/CurrentTime + + +func update_timer_label(new_time: float): + if(new_time < 0): + time_label.text = "Waiting for player to start driving..." + return + time_label.text = str(new_time).pad_decimals(3) + +func switch_to_post_game_UI(): + in_game_ui.visible = false + post_game_ui.visible = true + $PostGameUI/FinalTime.text = time_label.text + +func switch_to_in_game_UI(): + in_game_ui.visible = true + post_game_ui.visible = false + +func _on_start_button_pressed(): + var root = owner.owner + if root and root.has_method("start_driving"): + root.start_driving() |