コード例 #1
0
 public void ReLoadFlow()
 {
     Release();
     if (mCurrent != null && mCurrent.name.Length > 0)
     {
         mCurrent = NodeFlowEditorLoader.Load(mCurrent.name);
     }
 }
コード例 #2
0
        public void LoadFlowByPath(string path)
        {
            Release();

            mCurrent = NodeFlowEditorLoader.Load(path);
            if (mCurrent != null)
            {
                mCurrent.name = path;
            }
        }