Searching for FMOD components in Unity Editor

I have what may be a silly question.

In Unity, if I search through the scene hierarchy for a specific component (e.g. the Animator, RigidBody2D, etc), the specific game objects using those components are returned in the search results (provided that I type out the full name of the component with no spaces).

I have not had the same luck when searching for the FMOD components in the hierarchy. Is it possible to search for them and if so, how should I search for it?

Good question- I couldn’t find any official Unity docs on this, but Unity’s hierarchy search is based on the script name. If you type the name of the component with no spaces, minus “FMOD”, it should pop up in the hierarchy search, i.e “StudioEventEmitter”, “StudioListener”.

1 Like

Perfect! That did it. Thanks!!