UEA0014: AudioSourceMuteUsesCPU

October 2, 2019 ยท View on GitHub

PropertyValue
IdUEA0014
CategoryPerformance
SeverityInfo

Example

Code with Diagnostic

using UnityEngine;

class Example : MonoBehaviour
{
    AudioSource audioSource;

    void Update()
    {
        audioSource.mute = true;
    }
}

Code with Fix

using UnityEngine;

class Example : MonoBehaviour
{
    AudioSource audioSource;

    void Update()
    {
        audioSource.enabled = false;
    }
}