MuffleMusic()

Found in:

public void MuffleMusic()
    {
        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 *