You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-24 15:26:15 +00:00
Add functionality to move selected tiles in tile map editor
This change adds a new entry "Move Selection" to the "Tile Map" menu in the tile map editor. It allows the user to easily move as set of selected tiles.
This commit is contained in:
@@ -61,6 +61,7 @@ class TileMapEditor : public VBoxContainer {
|
||||
TOOL_BUCKET,
|
||||
TOOL_PICKING,
|
||||
TOOL_DUPLICATING,
|
||||
TOOL_MOVING
|
||||
};
|
||||
|
||||
enum Options {
|
||||
@@ -72,6 +73,7 @@ class TileMapEditor : public VBoxContainer {
|
||||
OPTION_ERASE_SELECTION,
|
||||
OPTION_PAINTING,
|
||||
OPTION_FIX_INVALID,
|
||||
OPTION_MOVE
|
||||
};
|
||||
|
||||
TileMap *node;
|
||||
|
||||
Reference in New Issue
Block a user