This commit is contained in:
2025-12-28 16:25:20 +08:00
parent 642c204f28
commit 98d88c353d
12 changed files with 1000 additions and 1 deletions

View File

@@ -36,13 +36,15 @@ namespace WulaFallenEmpire.EventSystem.AI.UI
_size = new Vector2(Mathf.Max(250f, textWidth + 85f), 85f); // Taller base
}
// Window properties
// Window properties - ensure no input blocking
this.layer = WindowLayer.Super;
this.closeOnClickedOutside = false;
this.forcePause = false;
this.absorbInputAroundWindow = false;
this.doWindowBackground = false;
this.drawShadow = false;
this.focusWhenOpened = false; // Don't steal focus
this.preventCameraMotion = false; // Allow WASD camera control
}
protected override void SetInitialSizeAndPosition()