diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-08-23 09:04:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-23 09:04:12 +0200 |
commit | 18e1268cd74a22f78454bb6c270c761466504b54 (patch) | |
tree | dc30289213e9454e6c72237b16c4c53fb6546a40 /editor/plugins/tile_map_editor_plugin.h | |
parent | 0c0aa5fc6f50374beb9add3a7f7bcdd5ddaeb287 (diff) | |
parent | 6fa1b5eca7bfcc32c4f9284819a7c3e87b08ad3c (diff) |
Merge pull request #21254 from YeldhamDev/tile_grid_map_side
Add option to move Tile/GridMap editors to another side
Diffstat (limited to 'editor/plugins/tile_map_editor_plugin.h')
-rw-r--r-- | editor/plugins/tile_map_editor_plugin.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/plugins/tile_map_editor_plugin.h b/editor/plugins/tile_map_editor_plugin.h index bb76879b02..d72224263a 100644 --- a/editor/plugins/tile_map_editor_plugin.h +++ b/editor/plugins/tile_map_editor_plugin.h @@ -220,6 +220,9 @@ class TileMapEditorPlugin : public EditorPlugin { TileMapEditor *tile_map_editor; +protected: + void _notification(int p_what); + public: virtual bool forward_canvas_gui_input(const Ref<InputEvent> &p_event) { return tile_map_editor->forward_gui_input(p_event); } virtual void forward_draw_over_viewport(Control *p_overlay) { tile_map_editor->forward_draw_over_viewport(p_overlay); } |