Channel.allVolume - multiple declarations
Function Channel.allVolume
Acts as Mix_Volume(-1, -1)
which gets the volume of all channels
static ubyte allVolume() @property @trusted;
Returns
volume ranging from 0
to 128
Function Channel.allVolume
Acts as Mix_Volume(-1, newVolume)
which sets the volume of all channels
static void allVolume
(
ubyte newVolume
) @property @trusted;
Parameters
Name | Description |
---|---|
newVolume | new volume ranging from 0 to 128 |