diff options
author | Juan Linietsky <reduzio@gmail.com> | 2021-08-23 09:46:19 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-23 09:46:19 -0300 |
commit | a0ef77eaee427cf077ac884a8d3a956137ee615a (patch) | |
tree | 40bf21e1beae1a6883770d2ac0473222ff41ae65 /editor/plugins/mesh_editor_plugin.h | |
parent | 2d446771d6701bb77432b6df5a768e53c9a6c95d (diff) | |
parent | 5cecdfa8afb91a60305b429f5b738e27dadbc83f (diff) |
Merge pull request #51983 from reduz/remove-bind-vmethod
Entirely removes BIND_VMETHOD in favor of GDVIRTUAL
Diffstat (limited to 'editor/plugins/mesh_editor_plugin.h')
-rw-r--r-- | editor/plugins/mesh_editor_plugin.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/editor/plugins/mesh_editor_plugin.h b/editor/plugins/mesh_editor_plugin.h index 455fcb5fe9..1e88b70202 100644 --- a/editor/plugins/mesh_editor_plugin.h +++ b/editor/plugins/mesh_editor_plugin.h @@ -64,8 +64,7 @@ class MeshEditor : public SubViewportContainer { protected: void _notification(int p_what); - void _gui_input(Ref<InputEvent> p_event); - static void _bind_methods(); + void gui_input(const Ref<InputEvent> &p_event) override; public: void edit(Ref<Mesh> p_mesh); |