Toshusai blog

知識の保管庫

【Godot】Dictionaryでforループ

for key in dict.keys():
    print(dict[key])

キーを取得しなくても要素はキーになる

for key in dict:
    print(dict[key])

キーを使わないなら

for value in dict.values():
    print(value)

Ref

docs.godotengine.org

docs.godotengine.org