handled edge case where navigation_link_2d is outside of the tree when calling _edit_get_rect()
This commit is contained in:
parent
432c4c40a9
commit
1d233ce58c
1 changed files with 4 additions and 0 deletions
|
@ -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());
|
||||
|
|
Loading…
Reference in a new issue