handled edge case where navigation_link_2d is outside of the tree when calling _edit_get_rect()

This commit is contained in:
Trashtalk 2022-09-07 00:05:56 +02:00
parent 432c4c40a9
commit 1d233ce58c

View file

@ -113,6 +113,10 @@ void NavigationLink2D::_notification(int p_what) {
#ifdef TOOLS_ENABLED
Rect2 NavigationLink2D::_edit_get_rect() const {
if (!is_inside_tree()) {
return Rect2();
}
real_t radius = NavigationServer2D::get_singleton()->map_get_link_connection_radius(get_world_2d()->get_navigation_map());
Rect2 rect(get_start_location(), Size2());