gdscript iterate dictionary
for key in dictionary.keys():
...
# .keys() is optional:
for key in dictionary:
# If you need both, key and value:
var value = dictionary[value]
...
# If you only need the values:
for value in dictionary.values():
...