Please help! How to create search bar with buttons

I need search bar with button, one button to one thing and more buttons to more things
and these buttons need to create with search bar system or logic
My project is Architecturial. Search bar for Room, for example i need to find room 8 in 3 floor
please help

1 Like

If English is not your first language, describe what you need to LLM (like chat GPT), when it gets what you need, ask to translate into English.

My first guess is:

  • use gameplay tags
  • put correct tag on each actor in level
  • make searching for game play taqs
  • when you have that, you need extra layer (in search function) that counts and checks for certain keywords (like door, kitchen toilet window) and out of those keywords decides what gaem play is correct to search. So like 2 step search, first gets what human wrote, then picks best game play tag, finally seeks actor with it.
1 Like

Hey, you can set this up by tagging your room actors with things like “Room8” and “Floor3”. When the user types in the search bar, break the input into keywords, match them to the tags, and find the right actors. Then create buttons dynamically for each result; these can focus the camera or show info. To make the search smarter, you can map common words (like “toilet” or “kitchen”) to tags before searching, like Nawrot mentioned. Let me know if you need help with any part.