Files
A Thousand Ships 0343cedd48 General proofreading (#1262)
* General proofreading for grammar and spelling
* General formatting
* Addition of appropriate literals where appropriate, i.e. `&"foo"` for `StringName` cases and `^"foo/bar"` for `NodePath` cases
2025-10-11 01:39:59 -07:00

12 lines
252 B
GDScript

extends Window
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
close_requested.connect(_on_close_requested)
func _on_close_requested() -> void:
print("%s %s was hidden." % [str(get_class()), name])
hide()