Textures.gd 154 B

12345678910
  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.