.. Automatically generated file - do not modify.

.. function:: SetCharacterVolume(voice_tag, volume=None)
    
    This allows the volume of each characters to be adjusted.
    If `volume` is None, this returns the value of volume of `voice_tag`.
    Otherwise, this set it to `volume`.
    
    `volume` is a number between 0.0 and 1.0, and is interpreted as a
    fraction of the mixer volume for `voice` channel.

.. function:: SetVoiceMute(voice_tag, mute)
    
    If `mute` is true, mutes voices that are played with the given
    `voice_tag`. If `mute` is false, unmutes voices that are played
    with `voice_tag`.

.. function:: ToggleVoiceMute(voice_tag, invert=False)
    
    Toggles the muting of `voice_tag`. This is selected if
    the given voice tag is muted, unless `invert` is true,
    in which case it's selected if the voice is unmuted.

.. function:: VoiceReplay()
    
    Replays the most recently played voice.

