Cycling74 / rnbo.unity.audioplugin

RNBO Adapter for Unity's Native Audio Plugin
MIT License
40 stars 8 forks source link

Plugin turns inputs into Mono even though it has 2 outputs #35

Closed JimPapanick closed 7 months ago

JimPapanick commented 7 months ago

In Unity, I have a sound source in an empty room and I want to have sound coming out of it and be directional, if the player turns right it should be more on their right speaker etc. However When the Audio Mixer bypasses my plugin it plays Stereo as it should. But when I run it through plugin it turns into Mono. image

Plugin looks like this: image

What am I missing?

x37v commented 7 months ago

What am I missing?

your patch is only listening to 1 channel.. see the [in~ 1] at the top? you need [in~ 2] as well

JimPapanick commented 7 months ago

You are right! It takes a stereo signal and only reads one of the channels.... How did I miss this.

Thanks