0 votes

I am making a database type thing and each entry is stored as a dictionary inside of an array, I would like the items of each dictionary to be added as different lines in an ItemList.
How would I do this?

Godot version version 3.4
in Engine by (58 points)

1 Answer

0 votes

Something like this maybe:

for _item in _dictionary.values():
     _itemList.add_item(_item)

Should do it...

by (70 points)
Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.