diff options
author | Logan <logan@cflip.net> | 2022-10-01 19:00:19 -0600 |
---|---|---|
committer | Logan <logan@cflip.net> | 2022-10-01 19:00:19 -0600 |
commit | c976e1bfefad2d3c8f7608c3ef436879794f3b9d (patch) | |
tree | 98d8476d7619c3338e7a1f40a21cbc36f38c5ba4 /scenes | |
parent | 78a037a2652e2b7cc5f652f9c24119bbc8ec7df2 (diff) |
Add initial implementation of a timeout screen.
Diffstat (limited to 'scenes')
-rw-r--r-- | scenes/interface.tscn | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/scenes/interface.tscn b/scenes/interface.tscn index 8b37f8f..cba0c37 100644 --- a/scenes/interface.tscn +++ b/scenes/interface.tscn @@ -21,4 +21,15 @@ text = "Timer: " [node name="Timer" type="Timer" parent="."] +[node name="Control" type="Control" parent="."] +visible = false + +[node name="Label" type="Label" parent="Control"] +margin_top = 40.0 +margin_right = 214.0 +margin_bottom = 80.0 +text = "YOU LOSE. YOU WIN NOTHING. +GOOD DAY SIR!" +align = 1 + [connection signal="timeout" from="Timer" to="." method="_on_Timer_timeout"] |