Brighten mission title text

This commit is contained in:
2026-06-20 20:27:19 +09:00
parent fa1067cde2
commit 9b92471921
2 changed files with 10 additions and 2 deletions

View File

@@ -3962,6 +3962,12 @@ func _check_ancient_ui_theme(failures: Array[String]) -> void:
failures.append("dialogue continue button should use the project serif font override")
if scene.mission_title_label == null or scene.mission_title_label.text != "전투 목표":
failures.append("mission panel title should use clear Korean wording")
elif scene.mission_title_label.get_theme_color("font_color").get_luminance() < 0.68:
failures.append("mission panel title should stay bright enough to read on the dark side panel: %s" % str(scene.mission_title_label.get_theme_color("font_color")))
elif scene.mission_title_label.get_theme_font_size("font_size") < 15:
failures.append("mission panel title should keep a readable QHD size: %d" % scene.mission_title_label.get_theme_font_size("font_size"))
elif not scene.mission_title_label.tooltip_text.contains("승리 조건"):
failures.append("mission panel title tooltip should explain the objective section: %s" % scene.mission_title_label.tooltip_text)
if scene.mission_toggle_button == null or scene.mission_toggle_button.text != "" or scene.mission_toggle_button.icon == null or not bool(scene.mission_toggle_button.get_meta("icon_only", false)):
failures.append("mission objective panel should start compact with an icon-only open control")
else: