How to control the default bus layout parameters by GDScript?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By JulioYagami

I need to change the buses volumes and also disable/enable some sound effects

:bust_in_silhouette: Reply From: SIsilicon

Here’s hoping that you don’t misread, access to the AudioServer’s what you need.

AudioServer.set_bus_volume_db(bus_index, decibel)
AudioServer.set_bus_effect_enabled(bus_index, effect_index, enabled)

Now I have another question. How do I get the default bus (that is the current I’m using)?

JulioYagami | 2018-12-26 22:19