![]() |
Attention | Topic was automatically imported from the old Question2Answer platform. |
![]() |
Asked By | JulioYagami |
When I add children by code, I see no reference to them. Like for example:
func _ready():
var n = 0
while n != 5:
var i = something.instance()
add_child(i)
n += 1
# And now I can not access any of that type of node?