From e802cf475c7fe67cda18eafd6db73d98d772c1d8 Mon Sep 17 00:00:00 2001 From: marcin Date: Sat, 20 Sep 2025 06:29:18 +0200 Subject: [PATCH] bug fix in combo break --- .../iOS/addressables_content_state.bin | Bin 2517 -> 2517 bytes ...nvector@MeleeCombat Player PRO2.controller | 15 +++------------ .../bMeleeAttackControl.cs | 17 ++++++++++++----- 3 files changed, 15 insertions(+), 17 deletions(-) diff --git a/Assets/AddressableAssetsData/iOS/addressables_content_state.bin b/Assets/AddressableAssetsData/iOS/addressables_content_state.bin index 36b690b1c3cb9cb2a70713f790763304efa98b7b..1531a70f8d9727497640b42537ff13cda64f3dc2 100644 GIT binary patch delta 59 zcmV-B0L1^*6V(&2kO2WUvylO#1q5$3+{KeP2gd}QZBMw90|7M1`2 delta 59 zcmV-B0L1^*6V(&2kO2WSvylO#1qAAhvm}!^2gd|kMs+Zg0| 0f) { if (currentNormalizedTime >= blockInputBeforeTime) @@ -262,7 +263,8 @@ namespace Invector.vMelee BlockAttack(true); // Block input } } - + */ + if (!useComboTimingWindow) return; bool isInsideWindow = currentNormalizedTime >= comboWindowStartTime; @@ -273,9 +275,14 @@ namespace Invector.vMelee { _comboWindowEffectTriggered = true; TimeController.Instance.SetTimeScaleForRealTimeSec(comboWindowTimeScale, comboWindowDuration, false); + BlockAttack(false); if (debug) Debug.Log($"({damageType}) COMBO WINDOW OPEN. Accepting input."); } } + else + { + BlockAttack(true); + } } // --- Other methods remain unchanged ---