diff options
author | Juan Linietsky <reduzio@gmail.com> | 2021-09-07 11:59:46 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-07 11:59:46 -0300 |
commit | 93aa158b5e1b3b11c3482834504e791c3898baf0 (patch) | |
tree | dd0de472b6a31e4878a765025990d08977619320 /editor/plugins/tiles/tile_map_editor.h | |
parent | 88c3e3180a52b2460429dfc031555392394fd97d (diff) | |
parent | 4bd7700e89f4476a3b2c76e7bed4263a111b3c09 (diff) |
Merge pull request #52277 from groud/implement_array_property_hint
Implement properties arrays in the Inspector.
Diffstat (limited to 'editor/plugins/tiles/tile_map_editor.h')
-rw-r--r-- | editor/plugins/tiles/tile_map_editor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/tiles/tile_map_editor.h b/editor/plugins/tiles/tile_map_editor.h index 6e2f2ce2ba..6126db59e9 100644 --- a/editor/plugins/tiles/tile_map_editor.h +++ b/editor/plugins/tiles/tile_map_editor.h @@ -341,7 +341,7 @@ private: void _update_layers_selection(); // Inspector undo/redo callback. - void _undo_redo_inspector_callback(Object *p_undo_redo, Object *p_edited, String p_property, Variant p_new_value); + void _move_tile_map_array_element(Object *p_undo_redo, Object *p_edited, String p_array_prefix, int p_from_index, int p_to_pos); protected: void _notification(int p_what); |