Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 548 Bytes

UNT0006.md

File metadata and controls

33 lines (24 loc) · 548 Bytes

UNT0006 Incorrect message signature

This Unity message uses an incorrect method signature.

Examples of patterns that are flagged by this analyzer

using UnityEngine;

class Camera : MonoBehaviour
{
    private void OnApplicationPause(int foo, bool pause, string[] bar)
    {
    }
}

Solution

Fix message signature:

using UnityEngine;

class Camera : MonoBehaviour
{
    private void OnApplicationPause(bool pause)
    {
    }
}

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