From b62d06fbeddfd7e584587d1a86f69ed09dff65e6 Mon Sep 17 00:00:00 2001 From: Micky Date: Sat, 13 Aug 2022 12:26:13 +0200 Subject: Rename Navigation's `neighbor_dist` to `neightbor_distance` NavigationAgent2D/3D.`neighbor_dist` -> `neighbor_distance` (also affects setters and getters) NavigationServer2D/3D.`agent_set_neighbor_dist()` -> `agent_set_neighbor_distance()` Also changes their parameters' names. Doesn't affect "Agent.neighborDist_" in Agent.h --- servers/navigation_server_3d.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'servers/navigation_server_3d.h') diff --git a/servers/navigation_server_3d.h b/servers/navigation_server_3d.h index f24c0117d1..79b0ea84b0 100644 --- a/servers/navigation_server_3d.h +++ b/servers/navigation_server_3d.h @@ -147,7 +147,7 @@ public: /// time of the simulation. If the number is too /// low, the simulation will not be safe. /// Must be non-negative. - virtual void agent_set_neighbor_dist(RID p_agent, real_t p_dist) const = 0; + virtual void agent_set_neighbor_distance(RID p_agent, real_t p_distance) const = 0; /// The maximum number of other agents this /// agent takes into account in the navigation. -- cgit v1.2.3