Textures.gd 155 B

1234567891011
  1. extends Node
  2. var dict = {}
  3. func _ready():
  4. for i in get_children().size():
  5. dict[i] = get_child(i).get_texture()
  6. pass # Replace with function body.