ArkaliaCore.Game.Game.Engines.PathEngine.CreateNodePath C# (CSharp) Method

CreateNodePath() public static method

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

Same methods

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