UnityEngine.Events.InvokableCallList.ClearPersistent C# (CSharp) 메소드

ClearPersistent() 공개 메소드

public ClearPersistent ( ) : void
리턴 void
        public void ClearPersistent()
        {
            this.m_PersistentCalls.Clear();
            this.m_NeedsUpdate = true;
        }

Usage Example

예제 #1
0
 private void DirtyPersistentCalls()
 {
     m_Calls.ClearPersistent();
     m_CallsDirty = true;
 }