Quick Start
Start with a tiny working version
Parries and just-guards are exciting because they turn defense into a skill expression moment, but they also create frustration very quickly when players cannot tell why they failed. In many projects the real problem is not that the timing window is short.
Build it in small code pieces
1. 値を用意する
Inspectorで変更できる値と表示先を置きます。
[SerializeField] private TextMeshProUGUI statusText;
[SerializeField] private float parryWindowSeconds = 1f;
[SerializeField] private float guardReduction = 2f;
[SerializeField] private float inputOffsetSeconds = 3f;2. 状態を変える
ボタンを押した時に、1つだけ状態を進めます。
public void NextStep()
{
step = (step + 1) % 3;
var label = step == 0 ? "通常ガード" : step == 1 ? "成功判定" : "失敗を返す";
if (statusText != null)
{
statusText.text = $"{label}\nparryWindowSeconds={parryWindowSeconds:0.##}\nguardReduction={guardReduction:0.##}\ninputOffsetSeconds={inputOffsetSeconds:0.##}";
}3. 画面に表示する
変わった結果を画面に出して確認します。
if (statusText != null)
{
statusText.text = $"{label}\nparryWindowSeconds={parryWindowSeconds:0.##}\nguardReduction={guardReduction:0.##}\ninputOffsetSeconds={inputOffsetSeconds:0.##}";
}
Debug.Log($"パリィとジャストガード: {label}");Complete script
using UnityEngine;
using TMPro;
public class ParryGuardTutorial : MonoBehaviour
{
[SerializeField] private TextMeshProUGUI statusText;
[SerializeField] private float parryWindowSeconds = 1f;
[SerializeField] private float guardReduction = 2f;
[SerializeField] private float inputOffsetSeconds = 3f;
private int step;
public void NextStep()
{
step = (step + 1) % 3;
var label = step == 0 ? "通常ガード" : step == 1 ? "成功判定" : "失敗を返す";
if (statusText != null)
{
statusText.text = $"{label}\nparryWindowSeconds={parryWindowSeconds:0.##}\nguardReduction={guardReduction:0.##}\ninputOffsetSeconds={inputOffsetSeconds:0.##}";
}
Debug.Log($"パリィとジャストガード: {label}");
}
}Inspector
Summary
What to take away
A practical guide to parry timing windows, success cues, failure readability, and learning loops that keep defensive combat from feeling unfair.
The page is designed to help you move from reading to a small practical decision. Use the checklist above before jumping into the next related article.
