mirror of
https://git.tonybark.com/tonytins/legendsonline.git
synced 2025-06-26 03:44:42 -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/GameKit.gd
Normal file
15
client/source/GameKit.gd
Normal file
|
@ -0,0 +1,15 @@
|
|||
extends Node
|
||||
|
||||
const NOT_IMPLEMENTED = "This feature is not implemented"
|
||||
|
||||
func is_game_paused(is_paused):
|
||||
if is_paused == true:
|
||||
get_tree().paused = true
|
||||
else:
|
||||
get_tree().paused = false
|
||||
|
||||
func switch_scenes(is_mode):
|
||||
if is_mode == "title":
|
||||
get_tree().change_scene_to_file("res://scenes/TitleScn.tscn")
|
||||
elif is_mode == "game":
|
||||
get_tree().change_scene_to_file("res://scenes/GameScn.tscn")
|
Loading…
Add table
Add a link
Reference in a new issue