Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 466 Bytes

File metadata and controls

33 lines (24 loc) · 466 Bytes

UNT0033 Incorrect message case

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.