UEA0014: AudioSourceMuteUsesCPU
October 2, 2019 ยท View on GitHub
| Property | Value |
|---|---|
| Id | UEA0014 |
| Category | Performance |
| Severity | Info |
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;
}
}