mirror of
https://git.kittycat.homes/BatHeartTiger/untitled-plant-game.git
synced 2024-08-15 03:16:27 +00:00
10 lines
306 B
GDScript3
10 lines
306 B
GDScript3
|
extends VSlider
|
||
|
|
||
|
export var bus_channel = "Master"
|
||
|
|
||
|
func _ready():
|
||
|
value = db2linear(AudioServer.get_bus_volume_db(AudioServer.get_bus_index(bus_channel)))
|
||
|
|
||
|
func _on_MusicVolume_value_changed(value: float) -> void:
|
||
|
AudioServer.set_bus_volume_db(AudioServer.get_bus_index(bus_channel), linear2db(value))
|