Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 443 Bytes

File metadata and controls

30 lines (22 loc) · 443 Bytes

UEA0006: DoNotUseCoroutines

Property Value
Id UEA0006
Category GC
Severity Info

Example

Code with Diagnostic

using UnityEngine;

public class Example : MonoBehaviour
{
    void Update()
    {
        // UEA0006: Use of coroutines cause some allocations
        StartCoroutine("");
    }
}

Code with Fix