mirror of
https://github.com/Relintai/the_tower.git
synced 2024-11-12 10:25:06 +01:00
9 lines
158 B
GDScript
9 lines
158 B
GDScript
extends HSlider
|
|
|
|
func _ready():
|
|
connect("value_changed", self, "on_value_changed")
|
|
|
|
func on_value_changed(value):
|
|
AudioServer.set_bus_volume_db(0, value)
|
|
|