-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmenu.gd
49 lines (34 loc) · 1.32 KB
/
menu.gd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
class_name Menu
extends Control
@onready var play_button = $VBoxContainer/PlayButton as TextureButton
@onready var options_button = $VBoxContainer/OptionsButton as TextureButton
@onready var exit_button = $VBoxContainer/ExitButton as TextureButton
@onready var options_menu = $Options as OptionsMenu
@onready var vbox_container = $VBoxContainer as VBoxContainer
@onready var start_game = preload("res://main.tscn") as PackedScene
func _ready():
handle_connecting_signals()
var volume_default = -20
var bus_index = AudioServer.get_bus_index("Master")
AudioServer.set_bus_volume_db(
bus_index,
volume_default
)
func _on_play_button_pressed() -> void:
get_tree().change_scene_to_packed(start_game)
func _on_options_button_pressed() -> void:
vbox_container.visible = false
$Title.visible = false
options_menu.set_process(true)
options_menu.visible = true
func _on_exit_button_pressed() -> void:
get_tree().quit()
func _on_exit_menu_pressed() -> void:
vbox_container.visible = true
$Title.visible = true
options_menu.visible = false
func handle_connecting_signals() -> void:
play_button.button_down.connect(_on_play_button_pressed)
options_button.button_down.connect(_on_options_button_pressed)
exit_button.button_down.connect(_on_exit_button_pressed)
options_menu.exit_options_menu.connect(_on_exit_menu_pressed)