Merge pull request #48229 from smix8/issue_47334_navagent3d_target_reached
Fix NavigationAgent3D not emitting "target_reached" Signal
This commit is contained in:
commit
3dfb740a20
@ -111,12 +111,7 @@ void NavigationAgent3D::_notification(int p_what) {
|
|||||||
case NOTIFICATION_INTERNAL_PHYSICS_PROCESS: {
|
case NOTIFICATION_INTERNAL_PHYSICS_PROCESS: {
|
||||||
if (agent_parent) {
|
if (agent_parent) {
|
||||||
NavigationServer3D::get_singleton()->agent_set_position(agent, agent_parent->get_global_transform().origin);
|
NavigationServer3D::get_singleton()->agent_set_position(agent, agent_parent->get_global_transform().origin);
|
||||||
if (!target_reached) {
|
_check_distance_to_target();
|
||||||
if (distance_to_target() < target_desired_distance) {
|
|
||||||
emit_signal("target_reached");
|
|
||||||
target_reached = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} break;
|
} break;
|
||||||
}
|
}
|
||||||
@ -314,6 +309,7 @@ void NavigationAgent3D::update_navigation() {
|
|||||||
while (o.distance_to(navigation_path[nav_path_index] - Vector3(0, navigation_height_offset, 0)) < target_desired_distance) {
|
while (o.distance_to(navigation_path[nav_path_index] - Vector3(0, navigation_height_offset, 0)) < target_desired_distance) {
|
||||||
nav_path_index += 1;
|
nav_path_index += 1;
|
||||||
if (nav_path_index == navigation_path.size()) {
|
if (nav_path_index == navigation_path.size()) {
|
||||||
|
_check_distance_to_target();
|
||||||
nav_path_index -= 1;
|
nav_path_index -= 1;
|
||||||
navigation_finished = true;
|
navigation_finished = true;
|
||||||
emit_signal("navigation_finished");
|
emit_signal("navigation_finished");
|
||||||
@ -322,3 +318,12 @@ void NavigationAgent3D::update_navigation() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void NavigationAgent3D::_check_distance_to_target() {
|
||||||
|
if (!target_reached) {
|
||||||
|
if (distance_to_target() < target_desired_distance) {
|
||||||
|
emit_signal("target_reached");
|
||||||
|
target_reached = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -147,6 +147,7 @@ public:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
void update_navigation();
|
void update_navigation();
|
||||||
|
void _check_distance_to_target();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user