godotstarter/project/src/GameKit.gd
Anthony Wilcox f801b82abe Working title and game screen
- Added local translations
- Added functionality to the title and game screens
- Fixed a few overlooked things
2019-01-09 21:17:39 -05:00

15 lines
No EOL
373 B
GDScript

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("res://scn/TitleScn.tscn")
elif is_mode == "game":
get_tree().change_scene("res://scn/GameScn.tscn")