Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Thank you for the feedback, glad you liked it! Yeah haha gotta admit could've used a bit more work on the sound

(+1)

The sounds themselves were fine, just the volume :D

It's a pretty quick fix in godot, for future jams you might wanna just add a quick h or v slider somewhere and connect the value changed signal like this:

func _on_h_slider_value_changed(value: float) -> void:
     if value <= 0:
          return
     AudioServer.set_bus_volume_db(0, linear_to_db(value))

Good luck!
(+1)

Noted!