Server interface for low-level 2D navigation access NavigationServer2D is the server responsible for all 2D navigation. It handles several objects, namely maps, regions and agents. Maps are made up of regions, which are made of navigation polygons. Together, they define the navigable areas in the 2D world. For two regions to be connected to each other, they must share a similar edge. An edge is considered connected to another if both of its two vertices are at a distance less than [code]edge_connection_margin[/code] to the respective other edge's vertex. You may assign navigation layers to regions with [method NavigationServer2D.region_set_layers], which then can be checked upon when requesting a path with [method NavigationServer2D.map_get_path]. This allows allowing or forbidding some areas to 2D objects. To use the collision avoidance system, you may use agents. You can set an agent's target velocity, then the servers will emit a callback with a modified velocity. [b]Note:[/b] The collision avoidance system ignores regions. Using the modified velocity as-is might lead to pushing and agent outside of a navigable area. This is a limitation of the collision avoidance system, any more complex situation may require the use of the physics engine. This server keeps tracks of any call and executes them during the sync phase. This means that you can request any change to the map, using any thread, without worrying. https://godotengine.org/asset-library/asset/117 Creates the agent. Returns true if the map got changed the previous frame. Callback called at the end of the RVO process. Puts the agent in the map. Sets the maximum number of other agents the agent takes into account in the navigation. The larger this number, the longer the running time of the simulation. If the number is too low, the simulation will not be safe. Sets the maximum speed of the agent. Must be positive. Sets the maximum distance to other agents this agent takes into account in the navigation. The larger this number, the longer the running time of the simulation. If the number is too low, the simulation will not be safe. Sets the position of the agent in world space. Sets the radius of the agent. Sets the new target velocity. The minimal amount of time for which the agent's velocities that are computed by the simulation are safe with respect to other agents. The larger this number, the sooner this agent will respond to the presence of other agents, but the less freedom this agent has in choosing its velocities. Must be positive. Sets the current velocity of the agent. Destroy the RID Create a new map. Returns the map cell size. Returns the point closest to the provided [code]to_point[/code] on the navigation mesh surface. Returns the owner region RID for the point returned by [method map_get_closest_point]. Returns the edge connection margin of the map. The edge connection margin is a distance used to connect two regions. Returns the navigation path to reach the destination from the origin. [code]layers[/code] is a bitmask of all region layers that are allowed to be in the path. Returns true if the map is active. Sets the map active. Set the map cell size used to weld the navigation mesh polygons. Set the map edge connection margin used to weld the compatible region edges. Creates a new region. Returns the ending point of a connection door. [code]connection[/code] is an index between 0 and the return value of [method region_get_connections_count]. Returns the starting point of a connection door. [code]connection[/code] is an index between 0 and the return value of [method region_get_connections_count]. Returns how many connections this [code]region[/code] has with other regions in the map. Returns the region's layers. Set the region's layers. This allows selecting regions from a path request (when using [method NavigationServer2D.map_get_path]). Sets the map for the region. Sets the navigation mesh for the region. Sets the global transformation for the region. Emitted when a navigation map is updated, when a region moves or is modified.