UnMuffleMusic()

Found in:

public void UnMuffleMusic()
    {
        if (mixer.GetFloat("MusicVol", out float currVol))
        {
            float reducedPercent = currVol * .2f;
            AdjustMusicVolume(currVol + reducedPercent);
        }
    }


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *