Develop a custom ambisonic audio decoder to decode the ambisonic audio format into a specific output format, such as stereo or surround sound.
Refer to Introduction to ambisonic audio decoders for information about decoders.
Follow these steps to develop your own ambisonic audio decoder plug-in for Unity:
Create a custom audio plug-in using the Native audio plug-in SDK.
Set a flag in the description bit-field of the effect:
definition.flags |= UnityAudioEffectDefinitionFlags_IsAmbisonicDecoder;
When you’re done configuring your plug-in, compile your file. Make sure it compiles on your preferred platforms.
Optionally, convert your file to a .dll file.
Move your plug-in file into your Unity project’s Asset folder.
For more information on how to work with your ambisonic audio plug-in in Unity, refer to Ambisonic Audio.