1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

Add option to move Tile/GridMap editors to another side

This commit is contained in:
Michael Alexsander Silva Dias
2018-08-21 01:35:48 -03:00
parent 9c69671611
commit 6fa1b5eca7
8 changed files with 97 additions and 31 deletions

View File

@@ -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); }