thedocruby / resounding

A New Minecraft mod that provides realistic audio physics using parallel wave tracing and an improved physics algorithm.
https://thedocruby.dev/resounding
GNU Lesser General Public License v3.0
85 stars 4 forks source link

GUI sfx: too loud #36

Open YurgenSchn opened 2 years ago

YurgenSchn commented 2 years ago

I noticed this difference in volume by testing Resounding settings, in this case the Enable/Disable at the top. The GUI sounds are much louder with the mod enabled (even in the Main Menu, outside of a loaded world). I can't tell if ingame sounds are a bit louder due to this aswell (at least sounds close to the player), but they are certainly not as noticeable/problematic as the GUI.

It doesnt seem that the generic settings such as reverb volume and strenght, affect UI volume. It's straight up louder with the mod enabled.

My Machine

Sounds are louder

thedocruby commented 2 years ago

This is known, It is caused because Resounding re-applies the direct gain.

In vanilla Minecraft, UI sounds are hard-coded to have about half volume compared to other sounds, since things like fading over distance don't apply in the UI. This is kinda smart, but currently Resounding does not implement anything like this, and sets the volume to 100% for all sounds unaffected by in-game physics. This should be an easy fix tho now that I think about it.

Thanks for reporting it!