Access master volume

how do you make a GUI slider that controls the overall volume, like the audio manager’s volume?

One way is to modify the static variable AudioListener.volume.

well, could I access what I want to, the total volume, or do I have to do it via audio listeners?

AudioListener.volume determines the global volume. Isn’t that what you’re looking for?

Also, note that it’s a static variable, so you don’t have to have an AudioListener instance available to access it.

ok, thanks