online multiplayer chess game (note server currently down)
Diffstat (limited to 'ui/StartMenu.gd')
| -rw-r--r-- | ui/StartMenu.gd | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ui/StartMenu.gd b/ui/StartMenu.gd index 2bbcabe..fa47bbc 100644 --- a/ui/StartMenu.gd +++ b/ui/StartMenu.gd @@ -10,6 +10,7 @@ onready var settings := $ColorRect/Settings onready var colorrect := $ColorRect onready var tween := $Tween onready var timer := $Timer +onready var lobby := $ColorRect/Lobby func _ready(): @@ -43,3 +44,7 @@ func _on_Timer_timeout(): tween.interpolate_property(colorrect, "color", colorrect.color, clr, timer_length, Tween.TRANS_ELASTIC) tween.start() timer.start(timer_length) + + +func _on_multiplayer_pressed(): + lobby.toggle(true) |