8 lines
177 B
GDScript
8 lines
177 B
GDScript
extends Node
|
|
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
func placeholder():
|
|
# print all children of the node
|
|
for _i in self.get_children():
|
|
print(_i
|