diff options
author | matricola787 <62719360+matricola787@users.noreply.github.com> | 2023-12-14 19:19:55 +0100 |
---|---|---|
committer | GreenCrowDev <pcalifano@outlook.it> | 2024-11-16 12:59:08 +0100 |
commit | 790efbb7830a4beef7f6b37c60fad605cc5330d1 (patch) | |
tree | 519a202b13e2b055b46ab2f97b2741682ebfca23 /editor/plugins/path_3d_editor_plugin.h | |
parent | ef8d981267702de38ffc24136f9d823d31781c60 (diff) | |
download | redot-engine-790efbb7830a4beef7f6b37c60fad605cc5330d1.tar.gz |
Implement closed path for Curve3d
Diffstat (limited to 'editor/plugins/path_3d_editor_plugin.h')
-rw-r--r-- | editor/plugins/path_3d_editor_plugin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/path_3d_editor_plugin.h b/editor/plugins/path_3d_editor_plugin.h index 60cb7f940f..3e45c2718f 100644 --- a/editor/plugins/path_3d_editor_plugin.h +++ b/editor/plugins/path_3d_editor_plugin.h @@ -120,7 +120,7 @@ class Path3DEditorPlugin : public EditorPlugin { Button *curve_edit_curve = nullptr; Button *curve_edit_tilt = nullptr; Button *curve_del = nullptr; - Button *curve_close = nullptr; + Button *curve_closed = nullptr; Button *curve_clear_points = nullptr; MenuButton *handle_menu = nullptr; @@ -144,7 +144,7 @@ class Path3DEditorPlugin : public EditorPlugin { void _update_toolbar(); void _mode_changed(int p_mode); - void _close_curve(); + void _toggle_closed_curve(); void _handle_option_pressed(int p_option); bool handle_clicked = false; bool mirror_handle_angle = true; |