You know, if you really want that, you can do it by yourself with some console aliases.
You want to change snd_sfxvolume, snd_menuvolume, and snd_musicvolume.
To lower all three values:
Code: Select all
alias snd_lowerall "eval - $snd_sfxvolume 0.1 snd_sfxvolume; eval - $snd_sfxvolume 0.1 snd_menuvolume; eval - $snd_sfxvolume 0.1 snd_musicvolume"
To raise all three values:
Code: Select all
alias snd_lowerall "eval + $snd_sfxvolume 0.1 snd_sfxvolume; eval + $snd_sfxvolume 0.1 snd_menuvolume; eval + $snd_sfxvolume 0.1 snd_musicvolume"
With some barely more complicated code, you can first store the current values in temporary user CVARs and then do proper toggling.
You can even make yourself a small
menu mod like mine where you put the console aliases in a KEYCONF lump and then you can add the raise all and lower all functions as commands in the [wiki]MENUDEF[/wiki] part.
You know, if you really want that, you can do it by yourself with some console aliases.
You want to change snd_sfxvolume, snd_menuvolume, and snd_musicvolume.
To lower all three values:
[code]alias snd_lowerall "eval - $snd_sfxvolume 0.1 snd_sfxvolume; eval - $snd_sfxvolume 0.1 snd_menuvolume; eval - $snd_sfxvolume 0.1 snd_musicvolume"[/code]
To raise all three values:
[code]alias snd_lowerall "eval + $snd_sfxvolume 0.1 snd_sfxvolume; eval + $snd_sfxvolume 0.1 snd_menuvolume; eval + $snd_sfxvolume 0.1 snd_musicvolume"[/code]
With some barely more complicated code, you can first store the current values in temporary user CVARs and then do proper toggling.
You can even make yourself a small [url=http://forum.zdoom.org/viewtopic.php?f=19&t=35219]menu mod like mine[/url] where you put the console aliases in a KEYCONF lump and then you can add the raise all and lower all functions as commands in the [wiki]MENUDEF[/wiki] part.