extends Node signal logout_button_pressed const WINDOW_TITLE_INPUT = "GUI/Settings/Menus/TabContainer/Test/ScrollContainer/VBoxContainer/TitleBox/Title" func _ready(): get_tree().get_root().connect("size_changed", self, "on_window_size_changed") global.get_node("GUI").show() global.get_node("GUI").play() func _process(delta): pass func on_window_size_changed(): change_title() func change_title(): var title_node = get_node( WINDOW_TITLE_INPUT ) var title = "Khanat" if title_node and not title_node.text.strip_edges() == "": title = title_node.text.strip_edges() title += " (" + String(OS.get_window_size().x) + "x" + String(OS.get_window_size().y) + ")" OS.set_window_title( title )