// Copyright (c) 2015 Robert Rouhani and other contributors (see CONTRIBUTORS file). // Licensed under the MIT License - https://raw.github.com/Robmaister/SharpNav/master/LICENSE using System; namespace SharpNav.Pathfinding { /// /// Flags for choosing how the path is built. /// [Flags] public enum PathBuildFlags { /// /// Build normally. /// None = 0x00, /// /// Adds a vertex to the path at each polygon edge crossing, but only when the areas of the two polygons are /// different /// AreaCrossingVertices = 0x01, /// /// Adds a vertex to the path at each polygon edge crossing. /// AllCrossingVertices = 0x02 } }