parilitest

This commit is contained in:
ohgushiyuga
2026-07-13 16:47:37 +09:00
parent 43ba4da2df
commit 568ed162fb
9 changed files with 452 additions and 98 deletions

View File

@@ -132,12 +132,14 @@ public class BossController : MonoBehaviour, IDamageble
}
}
public void TriggerParryStun()
public bool TriggerParryStun()
{
if (currentState is SpiderBiteState || currentState is SpiderChargeState)
{
ChangeState<SpiderStunState>();
return true;
}
return false;
}
public void ResetChargeCooldown()