1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00

Ensure gizmos are added to newly created Node3D-derivatives and silence error for attempting to create gizmos twice

This commit is contained in:
SaracenOne
2022-04-13 04:10:44 +01:00
parent 895f2a21f4
commit f8cc2e054d
2 changed files with 4 additions and 10 deletions

View File

@@ -7120,7 +7120,9 @@ void Node3DEditor::_request_gizmo(Object *p_obj) {
}
}
}
sp->update_gizmos();
if (!sp->get_gizmos().is_empty()) {
sp->update_gizmos();
}
}
}