AIEditor.PathDisplay.ClearPath C# (CSharp) Method

ClearPath() public method

public ClearPath ( ) : void
return void
        public void ClearPath()
        {
            while (mPath.Count != 0)
            {
                ShapeManager.Remove(mPath[0]);
            }

            while (mCosts.Count != 0)
            {
                TextManager.RemoveText(mCosts[0]);
            }
        }

Usage Example

コード例 #1
0
 public void ClearPath()
 {
     mPathDisplay.ClearPath();
 }