Merge pull request #56557 from timothyqiu/missing-break

This commit is contained in:
Rémi Verschelde 2022-01-06 14:47:28 +01:00 committed by GitHub
commit 95bface706
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -87,10 +87,10 @@ void NavigationObstacle2D::_notification(int p_what) {
case NOTIFICATION_PARENTED: {
parent_node2d = Object::cast_to<Node2D>(get_parent());
reevaluate_agent_radius();
}
} break;
case NOTIFICATION_UNPARENTED: {
parent_node2d = nullptr;
}
} break;
case NOTIFICATION_INTERNAL_PHYSICS_PROCESS: {
if (parent_node2d) {
Navigation2DServer::get_singleton()->agent_set_position(agent, parent_node2d->get_global_transform().get_origin());