12 - Damaging the Hero

为HeroCharacter 添加iDamageable 接口


12 - Damaging the Hero_第1张图片

编译 添加Affect Health event 类似上一节的enemycharacter逻辑 只在最后destryactor不仅需要删除自身 还需要删除武器


12 - Damaging the Hero_第2张图片

编辑EnemyCharacter 添加一个BoxCollision 用来检测与hero的碰撞事件


12 - Damaging the Hero_第3张图片

在ActorBeginOverlap中将碰撞体保存为变量Hero 同时调用SetTimer 循环调用DamageTheHero


12 - Damaging the Hero_第4张图片


12 - Damaging the Hero_第5张图片

在ActorEndObelap中 判断 碰撞体为hero时 关闭timer调用


12 - Damaging the Hero_第6张图片

你可能感兴趣的:(12 - Damaging the Hero)