diff options
author | Max Hilbrunner <mhilbrunner@users.noreply.github.com> | 2018-07-03 18:32:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-03 18:32:39 +0200 |
commit | 72e05f3f9927f23efaeac727a56e34a5a37cd47b (patch) | |
tree | dbb6fd82e94d0c968ab72cbc9ce2eafaafceef5f /modules/gridmap/grid_map_editor_plugin.h | |
parent | dce4bf96cc96e250ccb7e570b6585d3fb6027a53 (diff) | |
parent | 0f04a522c2cc3641757ebc4c2ce3f881ef023131 (diff) |
Merge pull request #16944 from rainerdeyke/master
Added 'fill selection' command to grid map editor
Diffstat (limited to 'modules/gridmap/grid_map_editor_plugin.h')
-rw-r--r-- | modules/gridmap/grid_map_editor_plugin.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/gridmap/grid_map_editor_plugin.h b/modules/gridmap/grid_map_editor_plugin.h index f79d9aefa0..7c5feda125 100644 --- a/modules/gridmap/grid_map_editor_plugin.h +++ b/modules/gridmap/grid_map_editor_plugin.h @@ -168,6 +168,7 @@ class GridMapEditor : public VBoxContainer { MENU_OPTION_SELECTION_MAKE_EXTERIOR_CONNECTOR, MENU_OPTION_SELECTION_DUPLICATE, MENU_OPTION_SELECTION_CLEAR, + MENU_OPTION_SELECTION_FILL, MENU_OPTION_REMOVE_AREA, MENU_OPTION_GRIDMAP_SETTINGS @@ -200,6 +201,7 @@ class GridMapEditor : public VBoxContainer { void _floor_changed(float p_value); void _delete_selection(); + void _fill_selection(); EditorNode *editor; bool do_input_action(Camera *p_camera, const Point2 &p_point, bool p_click); |