mirror of
https://github.com/tobspr-games/shapez.io.git
synced 2026-01-20 11:31:15 -08:00
Fix belt planner placing down once a dialog pops up
This commit is contained in:
parent
749383a318
commit
7def60c050
1 changed files with 6 additions and 0 deletions
|
|
@ -253,6 +253,12 @@ export class HUDBuildingPlacerLogic extends BaseHUDPart {
|
|||
* @see BaseHUDPart.update
|
||||
*/
|
||||
update() {
|
||||
// Abort placement if a dialog was shown in the meantime
|
||||
if (this.root.hud.hasBlockingOverlayOpen()) {
|
||||
this.abortPlacement();
|
||||
return;
|
||||
}
|
||||
|
||||
// Always update since the camera might have moved
|
||||
const mousePos = this.root.app.mousePosition;
|
||||
if (mousePos) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue