diff options
author | ajreckof <66184050+ajreckof@users.noreply.github.com> | 2023-06-05 04:54:48 +0200 |
---|---|---|
committer | ajreckof <66184050+ajreckof@users.noreply.github.com> | 2023-06-05 04:54:48 +0200 |
commit | 7f4f219a245ecb3391672aaaf29173df2674dd82 (patch) | |
tree | 48f1a36f62c32b9be5ece9016709f1dc096437d4 /editor/plugins/path_3d_editor_plugin.cpp | |
parent | db5113de36aa59b3b3ffcd3399d06f4b76476df8 (diff) | |
download | redot-engine-7f4f219a245ecb3391672aaaf29173df2674dd82.tar.gz |
Add move control points button to PAth3D Editor
Diffstat (limited to 'editor/plugins/path_3d_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/path_3d_editor_plugin.cpp | 30 |
1 files changed, 23 insertions, 7 deletions
diff --git a/editor/plugins/path_3d_editor_plugin.cpp b/editor/plugins/path_3d_editor_plugin.cpp index d49c04445e..09c47a4aa3 100644 --- a/editor/plugins/path_3d_editor_plugin.cpp +++ b/editor/plugins/path_3d_editor_plugin.cpp @@ -474,6 +474,9 @@ EditorPlugin::AfterGUIInput Path3DEditorPlugin::forward_3d_gui_input(Camera3D *p } } } + if (curve_edit_curve->is_pressed()) { + mb->set_shift_pressed(true); + } } return EditorPlugin::AFTER_GUI_INPUT_PASS; @@ -505,6 +508,7 @@ void Path3DEditorPlugin::make_visible(bool p_visible) { if (p_visible) { curve_create->show(); curve_edit->show(); + curve_edit_curve->show(); curve_del->show(); curve_close->show(); handle_menu->show(); @@ -512,6 +516,7 @@ void Path3DEditorPlugin::make_visible(bool p_visible) { } else { curve_create->hide(); curve_edit->hide(); + curve_edit_curve->hide(); curve_del->hide(); curve_close->hide(); handle_menu->hide(); @@ -527,10 +532,11 @@ void Path3DEditorPlugin::make_visible(bool p_visible) { } } -void Path3DEditorPlugin::_mode_changed(int p_idx) { - curve_create->set_pressed(p_idx == 0); - curve_edit->set_pressed(p_idx == 1); - curve_del->set_pressed(p_idx == 2); +void Path3DEditorPlugin::_mode_changed(int p_mode) { + curve_create->set_pressed(p_mode == MODE_CREATE); + curve_edit_curve->set_pressed(p_mode == MODE_EDIT_CURVE); + curve_edit->set_pressed(p_mode == MODE_EDIT); + curve_del->set_pressed(p_mode == MODE_DELETE); } void Path3DEditorPlugin::_close_curve() { @@ -574,6 +580,7 @@ void Path3DEditorPlugin::_update_theme() { // TODO: Split the EditorPlugin instance from the UI instance and connect this properly. // See the 2D path editor for inspiration. curve_edit->set_icon(Node3DEditor::get_singleton()->get_theme_icon(SNAME("CurveEdit"), SNAME("EditorIcons"))); + curve_edit_curve->set_icon(Node3DEditor::get_singleton()->get_theme_icon(SNAME("CurveCurve"), SNAME("EditorIcons"))); curve_create->set_icon(Node3DEditor::get_singleton()->get_theme_icon(SNAME("CurveCreate"), SNAME("EditorIcons"))); curve_del->set_icon(Node3DEditor::get_singleton()->get_theme_icon(SNAME("CurveDelete"), SNAME("EditorIcons"))); curve_close->set_icon(Node3DEditor::get_singleton()->get_theme_icon(SNAME("CurveClose"), SNAME("EditorIcons"))); @@ -582,9 +589,10 @@ void Path3DEditorPlugin::_update_theme() { void Path3DEditorPlugin::_notification(int p_what) { switch (p_what) { case NOTIFICATION_ENTER_TREE: { - curve_create->connect("pressed", callable_mp(this, &Path3DEditorPlugin::_mode_changed).bind(0)); - curve_edit->connect("pressed", callable_mp(this, &Path3DEditorPlugin::_mode_changed).bind(1)); - curve_del->connect("pressed", callable_mp(this, &Path3DEditorPlugin::_mode_changed).bind(2)); + curve_create->connect("pressed", callable_mp(this, &Path3DEditorPlugin::_mode_changed).bind(MODE_CREATE)); + curve_edit_curve->connect("pressed", callable_mp(this, &Path3DEditorPlugin::_mode_changed).bind(MODE_EDIT_CURVE)); + curve_edit->connect("pressed", callable_mp(this, &Path3DEditorPlugin::_mode_changed).bind(MODE_EDIT)); + curve_del->connect("pressed", callable_mp(this, &Path3DEditorPlugin::_mode_changed).bind(MODE_DELETE)); curve_close->connect("pressed", callable_mp(this, &Path3DEditorPlugin::_close_curve)); _update_theme(); @@ -623,6 +631,14 @@ Path3DEditorPlugin::Path3DEditorPlugin() { curve_edit->set_tooltip_text(TTR("Select Points") + "\n" + TTR("Shift+Drag: Select Control Points") + "\n" + keycode_get_string((Key)KeyModifierMask::CMD_OR_CTRL) + TTR("Click: Add Point") + "\n" + TTR("Right Click: Delete Point")); Node3DEditor::get_singleton()->add_control_to_menu_panel(curve_edit); + curve_edit_curve = memnew(Button); + curve_edit_curve->set_flat(true); + curve_edit_curve->set_toggle_mode(true); + curve_edit_curve->hide(); + curve_edit_curve->set_focus_mode(Control::FOCUS_NONE); + curve_edit_curve->set_tooltip_text(TTR("Select Control Points (Shift+Drag)")); + Node3DEditor::get_singleton()->add_control_to_menu_panel(curve_edit_curve); + curve_create = memnew(Button); curve_create->set_flat(true); curve_create->set_toggle_mode(true); |