1
Fork 0
mirror of https://github.com/Steffo99/swear-jar.git synced 2024-10-16 22:37:26 +00:00
swear-jar/main.gd
2023-10-02 15:12:52 +02:00

53 lines
1.1 KiB
GDScript

extends Node
class_name Main
@onready var tree: SceneTree = get_tree()
@onready var game_safe_ui: MarginContainer = $CustomUI/GameSafeUI
@onready var game_ui: GameUI = $CustomUI/GameSafeUI/GameUI
@onready var shop_safe_ui: MarginContainer = $CustomUI/ShopSafeUI
@onready var shop_ui: ShopUI = $CustomUI/ShopSafeUI/ShopUI
enum UIState {
GAME,
SHOP,
SCORE,
}
@export var ui_state: UIState:
get:
return ui_state
set(value):
match value:
UIState.GAME:
tree.paused = false
game_safe_ui.show()
shop_safe_ui.hide()
shop_safe_ui.process_mode = Node.PROCESS_MODE_DISABLED
UIState.SHOP:
tree.paused = true
game_safe_ui.hide()
shop_safe_ui.show()
shop_safe_ui.process_mode = Node.PROCESS_MODE_ALWAYS
UIState.SCORE:
pass
func _on_game_ui_score_button_pressed():
ui_state = UIState.SCORE
func _on_shop_ui_back_button_pressed():
ui_state = UIState.GAME
func _on_shop_ui_delete_button_pressed():
ui_state = UIState.GAME
func _on_shop_ui_score_button_pressed():
ui_state = UIState.SCORE
func _on_game_ui_shop_button_pressed():
ui_state = UIState.SHOP
func _on_shop_ui_purchase_begin(_what):
ui_state = UIState.GAME