diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2018-12-30 15:42:30 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-30 15:42:30 +0100 |
| commit | ac46862097902da0f89af7f255292517a55d47bb (patch) | |
| tree | fc0b87c7241c73d4d313c0a5b792b63f3f57284b /editor/plugins/path_editor_plugin.cpp | |
| parent | dcc7f2b54b562ad5a58dcd0dfe72ad8e6f05deb9 (diff) | |
| parent | 6b15b4f90469375ac388a73477356c90bd6e194d (diff) | |
| download | redot-engine-ac46862097902da0f89af7f255292517a55d47bb.tar.gz | |
Merge pull request #24506 from JFonS/expose_gizmos
Expose the new gizmo plugin system to scripting
Diffstat (limited to 'editor/plugins/path_editor_plugin.cpp')
| -rw-r--r-- | editor/plugins/path_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/path_editor_plugin.cpp b/editor/plugins/path_editor_plugin.cpp index df6c40ed02..6e0e609aa8 100644 --- a/editor/plugins/path_editor_plugin.cpp +++ b/editor/plugins/path_editor_plugin.cpp @@ -563,7 +563,7 @@ PathEditorPlugin::PathEditorPlugin(EditorNode *p_node) { Ref<PathSpatialGizmoPlugin> gizmo_plugin; gizmo_plugin.instance(); - SpatialEditor::get_singleton()->register_gizmo_plugin(gizmo_plugin); + SpatialEditor::get_singleton()->add_gizmo_plugin(gizmo_plugin); sep = memnew(VSeparator); sep->hide(); |
