コード例 #1
0
ファイル: StateEditor.cs プロジェクト: SandroGX/Scripts
 //remove handle that has transition out of this state
 public void RemoveNext(Handle startHandle)
 {
     NextElem.RemoveAll(x => startHandle.NextElem.Contains(x));
     Next.Remove(startHandle);
 }
コード例 #2
0
ファイル: StateEditor.cs プロジェクト: SandroGX/Scripts
 //add handle that has transition out of this state
 public void AddNext(Handle h)
 {
     NextElem.AddRange(h.NextElem);
     Next.Add(h);
 }