mirror of
https://git.tonybark.com/tonytins/legendsonline.git
synced 2025-06-26 03:54:44 -04:00
Basic TCP connections
This commit is contained in:
parent
cd3ef1c3da
commit
60d28a2879
20 changed files with 968 additions and 30 deletions
15
client/source/PauseScn.gd
Normal file
15
client/source/PauseScn.gd
Normal file
|
@ -0,0 +1,15 @@
|
|||
extends Control
|
||||
|
||||
func _resume_game() -> void:
|
||||
$PauseWin.hide()
|
||||
GameKit.is_game_paused(false)
|
||||
|
||||
func _on_resume_btn_pressed() -> void:
|
||||
_resume_game()
|
||||
|
||||
func _on_exit_btn_pressed() -> void:
|
||||
GameKit.is_game_paused(false)
|
||||
GameKit.switch_scenes("title")
|
||||
|
||||
func _on_pause_win_close_requested() -> void:
|
||||
_resume_game()
|
Loading…
Add table
Add a link
Reference in a new issue