Improve Xian emperor escort battle pacing

This commit is contained in:
2026-06-19 14:26:17 +09:00
parent 585c2e76a0
commit b25743a4a7
4 changed files with 252 additions and 21 deletions

View File

@@ -1515,8 +1515,8 @@ func _create_hud() -> void:
briefing_objective_header.add_child(_make_section_caption("승리와 패배", 548))
briefing_objective_toggle_button = Button.new()
briefing_objective_toggle_button.text = "조건 접"
briefing_objective_toggle_button.tooltip_text = "승리와 패배 조건을 거나 펼칩니다."
briefing_objective_toggle_button.text = ""
briefing_objective_toggle_button.tooltip_text = "승리와 패배 조건을 거나 펼칩니다."
briefing_objective_toggle_button.custom_minimum_size = Vector2(124, 28)
briefing_objective_toggle_button.pressed.connect(_on_briefing_objective_toggle_pressed)
briefing_objective_header.add_child(briefing_objective_toggle_button)
@@ -5798,7 +5798,7 @@ func _update_briefing_objective_visibility() -> void:
briefing_objective_panel.visible = has_text and not briefing_objective_collapsed
if briefing_objective_toggle_button != null:
briefing_objective_toggle_button.visible = has_text
briefing_objective_toggle_button.text = "조건 보" if briefing_objective_collapsed else "조건 접"
briefing_objective_toggle_button.text = "펼치" if briefing_objective_collapsed else ""
func _on_begin_battle_pressed() -> void: