Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 624 Bytes

File metadata and controls

41 lines (30 loc) · 624 Bytes

UEA0009: InvokeFunctionMissing

Property Value
Id UEA0009
Category Performance
Severity Warning

Example

Code with Diagnostic

using UnityEngine;

class CC : MonoBehaviour { }

class C : MonoBehaviour
{
    private CC cc;
    void Start() { cc.InvokeRepeating("DoSomething", 0f, 0f); }
}

Code with Fix

using UnityEngine;

class CC : MonoBehaviour 
{ 
    public void DoSomething() { }
}

class C : MonoBehaviour
{
    private CC cc;
    void Start() { cc.InvokeRepeating("DoSomething", 0f, 0f); }
}