11 lines
304 B
GDScript
11 lines
304 B
GDScript
extends Control
|
|
|
|
func _ready():
|
|
$VBoxContainer/MasterVolume.value = db_to_linear(AudioServer.get_bus_volume_db(0))
|
|
|
|
func _process(_delta: float) -> void:
|
|
AudioServer.set_bus_volume_db(0,linear_to_db($VBoxContainer/MasterVolume.value))
|
|
|
|
func _on_master_volume_mouse_exited() -> void:
|
|
release_focus()
|