ArkaliaCore.Game.Game.Engines.PathEngine.CreateNodePath C# (CSharp) 메소드

CreateNodePath() 공개 정적인 메소드

Return string path with a node
public static CreateNodePath ( Pathfinding node ) : string
node Pathfinding
리턴 string
        public static string CreateNodePath(Pathfinding.PathNode node)
        {
            return GetDirChar(node.Dir) + GetCellChars(node.CellID);
        }

Same methods

PathEngine::CreateNodePath ( int dir, int cellid ) : string