diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-08-07 10:31:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-07 10:31:08 +0200 |
commit | 3c85ef14c33c54c8b880610dfab4479c668936a6 (patch) | |
tree | d28428b16a18fc8091a8d8a213f44b84fdc5427a /modules/csg/csg_gizmos.h | |
parent | 9cb4fbe9d583e3f797e6b653fc9124515a7dd8f7 (diff) | |
parent | e4e4a02d3d1eeb3e87e8ee569b433e6fca0c3496 (diff) |
Merge pull request #51353 from AndreaCatania/const_fix
Removes const from set functions on the Gizmos
Diffstat (limited to 'modules/csg/csg_gizmos.h')
-rw-r--r-- | modules/csg/csg_gizmos.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/csg/csg_gizmos.h b/modules/csg/csg_gizmos.h index 847313c0b4..2a6ab91102 100644 --- a/modules/csg/csg_gizmos.h +++ b/modules/csg/csg_gizmos.h @@ -47,8 +47,8 @@ public: virtual String get_handle_name(const EditorNode3DGizmo *p_gizmo, int p_id) const override; virtual Variant get_handle_value(const EditorNode3DGizmo *p_gizmo, int p_id) const override; - virtual void set_handle(const EditorNode3DGizmo *p_gizmo, int p_id, Camera3D *p_camera, const Point2 &p_point) const override; - virtual void commit_handle(const EditorNode3DGizmo *p_gizmo, int p_id, const Variant &p_restore, bool p_cancel) const override; + virtual void set_handle(const EditorNode3DGizmo *p_gizmo, int p_id, Camera3D *p_camera, const Point2 &p_point) override; + virtual void commit_handle(const EditorNode3DGizmo *p_gizmo, int p_id, const Variant &p_restore, bool p_cancel) override; CSGShape3DGizmoPlugin(); }; |