mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 01:59:43 +01:00
Don't commit tile events if removing entities
This commit is contained in:
parent
f2bb58bba2
commit
662a86d1cd
1 changed files with 10 additions and 6 deletions
|
@ -2512,19 +2512,23 @@ void editorclass::handle_tile_placement(const int tile)
|
||||||
|
|
||||||
void editorclass::tool_remove()
|
void editorclass::tool_remove()
|
||||||
{
|
{
|
||||||
if (!placing_tiles)
|
|
||||||
{
|
|
||||||
placing_tiles = true;
|
|
||||||
update_old_tiles();
|
|
||||||
}
|
|
||||||
|
|
||||||
switch (current_tool)
|
switch (current_tool)
|
||||||
{
|
{
|
||||||
case EditorTool_WALLS:
|
case EditorTool_WALLS:
|
||||||
case EditorTool_BACKING:
|
case EditorTool_BACKING:
|
||||||
|
if (!placing_tiles)
|
||||||
|
{
|
||||||
|
placing_tiles = true;
|
||||||
|
update_old_tiles();
|
||||||
|
}
|
||||||
handle_tile_placement(0);
|
handle_tile_placement(0);
|
||||||
break;
|
break;
|
||||||
case EditorTool_SPIKES:
|
case EditorTool_SPIKES:
|
||||||
|
if (!placing_tiles)
|
||||||
|
{
|
||||||
|
placing_tiles = true;
|
||||||
|
update_old_tiles();
|
||||||
|
}
|
||||||
set_tile_interpolated(old_tilex, tilex, old_tiley, tiley, 0);
|
set_tile_interpolated(old_tilex, tilex, old_tiley, tiley, 0);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Reference in a new issue