Change parry threshold

This commit is contained in:
RochesterX
2025-03-05 13:31:40 -05:00
parent 6bf9825855
commit a8ad374e82
6 changed files with 588 additions and 22 deletions

View File

@@ -7,7 +7,7 @@ public class Block : MonoBehaviour
public bool blocking = false;
private InputActionAsset actions;
private float blockPressTime = 0f;
private float parryThreshold = 0.2f;
[SerializeField] private float parryThreshold = 0.2f;
private bool isParrying = false;
private void Start()