Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 466 Bytes

File metadata and controls

30 lines (21 loc) · 466 Bytes

UEA0003: EmptyMonoBehaviourMethod

Property Value
Id UEA0003
Category Miscellaneous
Severity Warning

Example

Code with Diagnostic

public class Example : MonoBehaviour
{
    // UEA0003: Empty MonoBehaviour methods are executed and incur a small overhead
    void FixedUpdate()
    {

    }
}

Code with Fix

Remove empty monobehaviour methods