diff options
author | ClarkeCode <33846391+ClarkeCode@users.noreply.github.com> | 2023-02-08 16:00:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-08 16:00:53 +0100 |
commit | 233d8896093cd1fef145c0b8483c50cf6d068721 (patch) | |
tree | f72ebd20ff1854ff298270ac3707f3465226520c /game/src/OptionsMenu.gd | |
parent | 2c0ef462ac500d089ea107f2bc00b0905606d070 (diff) | |
parent | f998d1b539f572a87cea81843e8d76ceb6960b8c (diff) |
Merge pull request #5 from ClarkeCode/basic-ui
Exploration of UI and rudimentary scene switching.
Diffstat (limited to 'game/src/OptionsMenu.gd')
-rw-r--r-- | game/src/OptionsMenu.gd | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/game/src/OptionsMenu.gd b/game/src/OptionsMenu.gd new file mode 100644 index 0000000..adcd3b5 --- /dev/null +++ b/game/src/OptionsMenu.gd @@ -0,0 +1,43 @@ +extends Control + + +# Called when the node enters the scene tree for the first time. +func _ready(): + print("TODO: Load user settings!") + pass # Replace with function body. + +## Called every frame. 'delta' is the elapsed time since the previous frame. +#func _process(delta): +# pass + +func _on_resolution_selector_item_selected(index): + print("Selected index: %d" % index) + +func _on_screen_mode_selector_item_selected(index): + print("Selected index: %d" % index) + +func _on_monitor_display_selector_item_selected(index): + print("Selected index: %d" % index) + +func _on_music_volume_value_changed(value): + print("Music: %f" % value) + + +func _on_sfx_volume_value_changed(value): + print("SFX: %f" % value) + + +func _on_ear_exploder_toggled(button_pressed): + print("KABOOM!!!" if button_pressed else "DEFUSED!!!") + + +func _on_save_settings_button_pressed(): + print("TODO: save current settings!") + + +func _on_back_button_pressed(): + get_tree().change_scene_to_file("res://src/MainMenu.tscn") + + +func _on_spin_box_value_changed(value): + print("Spinbox: %d" % value) |