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

Merge pull request #89847 from GreenCrowDev/missing-bezier-handles

UX and stability improvements for `Path3D` node
This commit is contained in:
Rémi Verschelde
2024-04-04 14:31:49 +02:00
5 changed files with 100 additions and 51 deletions

View File

@@ -7798,6 +7798,10 @@ Vector<int> Node3DEditor::get_subgizmo_selection() {
return ret;
}
void Node3DEditor::clear_subgizmo_selection(Object *p_obj) {
_clear_subgizmo_selection(p_obj);
}
void Node3DEditor::add_control_to_menu_panel(Control *p_control) {
ERR_FAIL_NULL(p_control);
ERR_FAIL_COND(p_control->get_parent());