AssetBundleGraph.NodeGUIInspectorHelper.UpdateErrors C# (CSharp) 메소드

UpdateErrors() 공개 메소드

public UpdateErrors ( List errorsSource ) : void
errorsSource List
리턴 void
        public void UpdateErrors(List<string> errorsSource)
        {
            this.errors = errorsSource;
        }

Usage Example

예제 #1
0
 public void ResetErrorStatus()
 {
     m_hasErrors = false;
     Inspector.UpdateNode(this);
     Inspector.UpdateErrors(new List <string>());
 }
NodeGUIInspectorHelper