UNT0033 Incorrect message case

November 16, 2022 ยท View on GitHub

This Unity message uses an incorrect method case.

Examples of patterns that are flagged by this analyzer

using UnityEngine;

class Camera : MonoBehaviour
{
    private void UPDATE()
    {
    }
}

Solution

Fix message case:

using UnityEngine;

class Camera : MonoBehaviour
{
    private void Update()
    {
    }
}

A code fix is offered for this diagnostic to automatically apply this change.