This website uses cookies to improve our services and deliver relevant ads.
By interacting with this site, you agree to this use. For more information, see our Cookies Policy
This version of the guide is out of date. Click here for the latest version.
The Oculus Audio Manager provides sound fx management that is external to Unity scene files. This has audio workflow benefits as well as providing you with the ability to group sound FX events together for greater flexibility.
The Oculus Audio Manager provides greater control over your audio compared to using AudioSource components:
The basic premise is that you create sound effect groups as collections of sound effects that share common parameters. Each sound effect you define is then a sound event that you can play back using the class SoundFXRef.
To create sound effects groups and events:


Run the Test scene located in Assets/OVRAudioManager/Scenes to try out basic audio manager functionality. Browsing through the OVRAudioManager scene object should give you a basic understanding of the Audio Manager data architecture.
Press 1 and 2 on your keyboard to trigger different sound events. Take a look at the example scene script TestScript.cs to see how we use public SoundFXRef soundName and soundName.PlaySoundAt(position) to trigger the sound events.