Merge pull request #84055 from smix8/navobstacle_editor
Fix NavigationObstacle3DEditor parenting error
This commit is contained in:
commit
b662d232a2
1 changed files with 5 additions and 1 deletions
|
@ -503,7 +503,11 @@ void NavigationObstacle3DEditor::edit(Node *p_node) {
|
||||||
wip.clear();
|
wip.clear();
|
||||||
wip_active = false;
|
wip_active = false;
|
||||||
edited_point = -1;
|
edited_point = -1;
|
||||||
|
if (point_lines_meshinstance->get_parent()) {
|
||||||
|
point_lines_meshinstance->reparent(p_node, false);
|
||||||
|
} else {
|
||||||
p_node->add_child(point_lines_meshinstance);
|
p_node->add_child(point_lines_meshinstance);
|
||||||
|
}
|
||||||
_polygon_draw();
|
_polygon_draw();
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue