You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 22, 2024. It is now read-only.
The FilterTagsDrawable class responsible for drawing the UI for the FilterTags property field runs so slowly as to be unusable in larger projects. The reason for this seems to be that the list of choices for the dropdown calls the function GetAllInteractibleObjects() every OnGUI (every frame, or possibly even more often). This function searches all objects in the current scene and also all objects in the project assets and for larger projects takes a significant amount of time.
Solution would be to cache the results of the process that requires GetAllInteractibleObjects() so it only gets called the first time the UI is rendered instead of every OnGUI.