Server interface for low-level 2D navigation access NavigationServer2D is the server responsible for all 2D navigation. It creates the agents, maps, and regions for navigation to work as expected. This 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, while avoiding static obstacles. 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. Sets the map for the region. Sets the navigation mesh for the region. Sets the global transformation for the region.