diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-08-30 14:48:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-30 14:48:04 +0200 |
commit | 9e43129906b87f10314406a93b9f8badbe5aae76 (patch) | |
tree | bebfe56b987abca78d25dd5fa2a0ff17b764bf7c | |
parent | cb63cc86e5ff8d70dc074381eb5f7d32298cd2ef (diff) | |
parent | 07d9b7af7a851d802294bc7fbd0424822277da0a (diff) |
Merge pull request #21596 from JFonS/fix_21262
Fix regression #21262 in Path Gizmo
-rw-r--r-- | editor/plugins/path_editor_plugin.cpp | 2 | ||||
-rw-r--r-- | editor/plugins/path_editor_plugin.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/path_editor_plugin.cpp b/editor/plugins/path_editor_plugin.cpp index 618c70d1a1..ef7ecb0fb0 100644 --- a/editor/plugins/path_editor_plugin.cpp +++ b/editor/plugins/path_editor_plugin.cpp @@ -57,7 +57,7 @@ String PathSpatialGizmo::get_handle_name(int p_idx) const { return n; } -Variant PathSpatialGizmo::get_handle_value(int p_idx) const { +Variant PathSpatialGizmo::get_handle_value(int p_idx) { Ref<Curve3D> c = path->get_curve(); if (c.is_null()) diff --git a/editor/plugins/path_editor_plugin.h b/editor/plugins/path_editor_plugin.h index 61f309e794..c77b2a41cc 100644 --- a/editor/plugins/path_editor_plugin.h +++ b/editor/plugins/path_editor_plugin.h @@ -45,7 +45,7 @@ class PathSpatialGizmo : public EditorSpatialGizmo { public: virtual String get_handle_name(int p_idx) const; - virtual Variant get_handle_value(int p_idx) const; + virtual Variant get_handle_value(int p_idx); virtual void set_handle(int p_idx, Camera *p_camera, const Point2 &p_point); virtual void commit_handle(int p_idx, const Variant &p_restore, bool p_cancel = false); |