UnityEngine.Events.InvokableCallList.ClearPersistent C# (CSharp) Méthode

ClearPersistent() public méthode

public ClearPersistent ( ) : void
Résultat void
        public void ClearPersistent()
        {
            this.m_PersistentCalls.Clear();
            this.m_NeedsUpdate = true;
        }

Usage Example

 private void DirtyPersistentCalls()
 {
     m_Calls.ClearPersistent();
     m_CallsDirty = true;
 }