Oculus Spatializer Plugin for Unity - Requirements and Setup
End-of-Life Notice for Oculus Spatializer Plugin
This documentation is no longer being updated and is subject for removal.
The Oculus Native Spatializer Plugin (ONSP) is an plugin for Unity that allows monophonic sound sources to be spatialized in 3D relative to the user’s head location. In addition, you can use the plugin for audio propagation, which provides real-time reverb and occlusion simulation based on game geometry.
The spatializer ships as a part of the Oculus
XR Plugin or can be downloaded and enabled as a standalone plugin.
- Windows 7/8/10
- Unity 5.2 Professional or Personal, or later.
Import and Enable the Spatializer
You can either download the spatializer as a stand-alone utility, or install the XR Plugin, which includes the spatializer.
-OR-
Download the
Oculus Spatializer Unity package from the
Audio Packages page.
- Extract the zip.
- Open your project in the Unity Editor, or create a new project.
- Select Assets > Import Package > Custom Package
- Select OculusNativeSpatializer.unitypackage and import.
- When the Importing Package dialog opens, leave all assets selected and click Import.
Enable the Oculus Spatializer
Whether you use the Oculus integration package, or download only the audio package, follow these instructions to enable the spatializer.
- Open or create a project in Unity and go to Edit > Project Settings > Audio to open the Audio dialog.
- In the Audio dialog, select OculusSpatializer in the Spatializer Plugin. You can also specify the Oculus Spatializer for the Ambisonics Decoder Plugin. For more information, see Play Ambisonic Audio in Unity.
- Set Default Speaker Mode to Stereo.
For Rift, set DSP Buffer Size to Best latency to set up the minimum supported buffer size for the platform, reducing overall audio latency. For Quest, set DSP Buffer Size to Good or Default to avoid audio distortion.
The following image shows an example of the Rift setting:

Note: Be aware that CPU usage increases when early reflections are turned on and increases proportionately as room dimensions become larger.
Update the Oculus Native Spatializer for Unity
Follow these instructions if you need to update the version of the plugin that you are using.
- Note the settings used in OSPManager in your project.
- Replace
OSPAudioSource.cs
(from previous OSP) on AudioSources with ONSPAudioSource.cs
in {project}/Assets/OSP
. - Set the appropriate values previously used in OSPManager in the plugin effect found on the mixer channel. Note that the native plugin adds functionality, so you will need to adjust to this new set of parameters.
- Remove OSPManager from the project by deleting
OSPManager*.*
from {project}/Assets/OSP
except your newly-added ONSPAudioSource.cs
. - Verify that OculusSpatializer is set in the Audio Manager and that Spatialization is enabled for that voice.
Use the functions on AudioSource to start, stop and modify sounds as required.