0 votes

I want to get an individual items position but can't seem to work it out.

Godot version Godot 3.4
in Engine by (12 points)

Do you mean you want the index of an item in the list? Or do you have a list of nodes and you want to get their position property?

Going by the documentation I think you're going to have to use a For Loop searching for the string you're looking for which returns the position of the iterator.

var idx: int = GetPositionInItemList(searchValue, itemList)

func GetPositionInItemList(searchVal: string, _itemList: ItemList) -> int:
for i in _itemList.get_item_count():
     if _itemList.get_item_text(i) == searchVal:
          return i

Please log in or register to answer this question.

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.