多轮审查和修复

This commit is contained in:
2026-05-12 15:34:08 +08:00
parent f55d2a57c3
commit ebbbb7332e
805 changed files with 838724 additions and 1905 deletions

View File

@@ -4,8 +4,8 @@ using BaseGames.Combat;
namespace BaseGames.Enemies
{
/// <summary>
/// 敌人战斗组件(Phase 1 桩,架构 07_EnemyModule §4
/// Phase 2 实现:HitBox 按 AttackType 索引管理、伤害来源 SO 注入
/// 敌人战斗组件(架构 07_EnemyModule §4
/// HitBox 按 AttackType 索引管理,动画事件触发 HitBox 开关
/// </summary>
public class EnemyCombat : MonoBehaviour
{
@@ -13,7 +13,6 @@ namespace BaseGames.Enemies
public void StartAttack(AttackType type)
{
// Phase 1 桩Phase 2 播放攻击动画,由 AnimationEvent 触发 HitBox On/Off
int idx = (int)type;
EnableHitBox(idx);
}