AudioManager
Several helper functions for managing the volume levels of various buses in your game.
Functional Example:
Let's demonstrate how these functions can assist us in audio management within our game:
The script above is a modification of the following script, incorporating our GodotEssentialAudio class. https://github.com/godotessentials/Veneno/blob/main/scenes/ui/options.gd
API reference
Accessible normal variables
Here is an array list of the available buses set up in your project, for example:
change_volume(bus, value: float) -> void
Change the volume of selected bus_index if it exists. Can receive the bus parameter as name or index.
get_actual_volume_db_from_bus_name(name: String) -> float
Retrieve the current volume value for the selected bus by its name. If the bus_name
does not exist in your project, it will raise an error and return a value of 0.0.
get_actual_volume_db_from_bus_index(index: int) -> float
Retrieve the current volume value for the selected bus by its index.
Last updated