Compact post move command menu

This commit is contained in:
2026-06-21 04:14:50 +09:00
parent b71c4d1dfc
commit 48e2d463c6
3 changed files with 26 additions and 26 deletions

View File

@@ -4261,10 +4261,10 @@ func _check_ancient_ui_theme(failures: Array[String]) -> void:
failures.append("post-move command panel should not show decorative seal imagery")
if scene.post_move_menu.find_child("GeneratedSealRibbon", true, false) != null:
failures.append("post-move command panel should not show decorative ribbon imagery")
_check_local_command_labeled_button(failures, scene.post_move_attack_button, "공격", "attack")
_check_local_command_labeled_button(failures, scene.post_move_tactic_button, "책략", "tactic")
_check_local_command_labeled_button(failures, scene.post_move_item_button, "도구", "item")
_check_local_command_labeled_button(failures, scene.post_move_wait_button, "대기", "wait")
_check_local_command_icon_button(failures, scene.post_move_attack_button, "공격", "attack")
_check_local_command_icon_button(failures, scene.post_move_tactic_button, "책략", "tactic")
_check_local_command_icon_button(failures, scene.post_move_item_button, "도구", "item")
_check_local_command_icon_button(failures, scene.post_move_wait_button, "대기", "wait")
_check_picker_utility_button(failures, scene.post_move_cancel_button, "이동 취소", "cancel", BattleSceneScript.LOCAL_COMMAND_CANCEL_BUTTON_SIZE)
if scene.post_move_picker_back_button == null or scene.post_move_picker_back_button.text != "목록 닫기":
failures.append("post-move picker back button should use immediately readable wording")