1
0
mirror of https://github.com/JohnBreaux/Boat-Battle.git synced 2024-11-15 05:25:57 +00:00
Boat-Battle/godot_ship/script/credits/Credits.gd

22 lines
590 B
GDScript3
Raw Normal View History

extends Control
2021-11-23 04:39:42 +00:00
var light_theme = load("res://light_theme.tres")
var dark_theme = load("res://dark_theme.tres")
# Called when the node enters the scene tree for the first time.
func _ready():
2021-11-23 04:39:42 +00:00
var _errno = 0;
_errno += OptionsController.connect("change_theme", self, "_on_change_theme")
_on_change_theme(OptionsController.get_theme())
func _on_Back_pressed():
AudioBus.emit_signal("button_clicked")
queue_free()
pass # Replace with function body.
2021-11-23 04:39:42 +00:00
func _on_change_theme(theme):
if theme == "light":
self.set_theme(light_theme)
elif theme == "dark":
self.set_theme(dark_theme)