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