mirror of
https://github.com/clarkjohn/wizard-chase.git
synced 2026-01-23 02:14:32 +00:00
11 lines
183 B
GDScript
11 lines
183 B
GDScript
extends Node
|
|
|
|
|
|
func _ready():
|
|
hide_all()
|
|
|
|
|
|
func hide_all() -> void:
|
|
for i in self.get_child_count():
|
|
var node = self.get_child(i) as TextureRect
|
|
node.visible = false
|