1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2026-03-02 03:39:21 +00:00

Fix right click to delete not working

This commit is contained in:
tobspr
2020-06-21 21:22:33 +02:00
parent 2ca5dc9715
commit 38114ff3f6
3 changed files with 5 additions and 17 deletions

View File

@@ -237,18 +237,6 @@ export class HUDBuildingPlacerLogic extends BaseHUDPart {
}
}
/**
* Canvas click handler
* @param {Vector} mousePos
* @param {boolean} cancelAction
*/
onCanvasClick(mousePos, cancelAction = false) {
// Prevent any other canvas clicks
if (this.currentMetaBuilding.get()) {
return STOP_PROPAGATION;
}
}
/**
* Tries to place the current building at the given tile
* @param {Vector} tile
@@ -473,7 +461,7 @@ export class HUDBuildingPlacerLogic extends BaseHUDPart {
this.currentlyDragging = true;
this.currentlyDeleting = true;
this.lastDragTile = this.root.camera.screenToWorld(pos).toTileSpace();
this.currentMetaBuilding.set(null);
this.deleteBelowCursor();
return STOP_PROPAGATION;
}