Skip to content

Latest commit

 

History

History
45 lines (34 loc) · 644 Bytes

File metadata and controls

45 lines (34 loc) · 644 Bytes

UEA0012: CameraMainIsSlow

Property Value
Id UEA0012
Category GC
Severity Warning

Example

Code with Diagnostic

using UnityEngine;

class Example : MonoBehaviour
{
    void Update()
    {
        var orthographicSize = Camera.main.orthographicSize;
    }
}

Code with Fix

using UnityEngine;

class Example : MonoBehaviour
{
    Camera cachedCamera;

    void Start()
    {
        cachedCamera = Camera.main;
    }

    void Update()
    {
        var orthographicSize = cachedCamera.orthographicSize;
    }
}