fix: 商店防呆警告 Label 移出按钮行 + 记录 D5 端到端验收

MCP 端到端验收 D5 时发现警告 Label 原位置 (120,448) 遮挡背包/语言/设置按钮行;
移至 (250,502) 商店按钮下方空白区,实测红字警告清晰可读、不遮挡。
端到端结果:纯 Modifier 卡组点『出发下一波』被拦截且波次不推进;含 ACTION 正常进入下一波。

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-20 15:46:19 +08:00
co-authored by Claude Opus 4.8
parent e65066a8fb
commit 707e1269b7
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -306,7 +306,7 @@ func _setup_shop_ui() -> void:
_shop_layer.add_child(_close_btn)
_shop_warn = Label.new()
_shop_warn.position = Vector2(120, 448)
_shop_warn.position = Vector2(250, 502) # 商店按钮行下方空白区,避免遮挡背包/语言/设置按钮
_shop_warn.add_theme_color_override("font_color", Color(1.0, 0.45, 0.35))
_shop_warn.visible = false
_shop_layer.add_child(_shop_warn)