godot-wildlings / cyberpunk-jam-2019

https://itch.io/jam/cyberpunk-jam-2019
MIT License
2 stars 0 forks source link

radio seems really quiet, even with maxed volume slider #74

Closed plexsoup closed 5 years ago

plexsoup commented 5 years ago

Here's the formula for setting the radio decibels: but it seems too quiet.

    var ratio = clamp(value/100, 0, 1.0)
    AudioServer.set_bus_volume_db(1, ( (log(ratio) * 20) + 7))
plexsoup commented 5 years ago

I quadrupled the max volume of the radio. Uses linear2db now instead of log.