Move enemies away from player when taking damage
This commit is contained in:
parent
24d5eb9eaf
commit
8d4c4bc0bd
|
@ -116,19 +116,27 @@ void APlayerCharacter::OnGarlicEndOverlap(UPrimitiveComponent* OverlappedComp, A
|
||||||
|
|
||||||
void APlayerCharacter::GarlicUpdate()
|
void APlayerCharacter::GarlicUpdate()
|
||||||
{
|
{
|
||||||
for (int i = 0; i < OverlappedEnemies.Num(); i++)
|
TArray<AEnemyCharacter*> OverlappedEnemiesCache = OverlappedEnemies;
|
||||||
|
|
||||||
|
for (int i = 0; i < OverlappedEnemiesCache.Num(); i++)
|
||||||
{
|
{
|
||||||
bool deadCheck = false;
|
bool deadCheck = false;
|
||||||
UHealthComponent* EnemyHealthComponent = OverlappedEnemies[i]->GetHealthComponent();
|
UHealthComponent* EnemyHealthComponent = OverlappedEnemiesCache[i]->GetHealthComponent();
|
||||||
|
|
||||||
if (!EnemyHealthComponent->GetIsDead())
|
if (!EnemyHealthComponent->GetIsDead())
|
||||||
{
|
{
|
||||||
|
FVector Direction = OverlappedEnemiesCache[i]->GetActorLocation() - this->GetActorLocation();
|
||||||
|
Direction.Normalize();
|
||||||
|
float distance = GarlicSphereComponent->GetScaledSphereRadius();
|
||||||
|
Direction *= distance;
|
||||||
|
OverlappedEnemiesCache[i]->SetActorLocation(OverlappedEnemiesCache[i]->GetActorLocation() + Direction);
|
||||||
|
|
||||||
if (EnemyHealthComponent->GetCurrentHealth() < GarlicDamage)
|
if (EnemyHealthComponent->GetCurrentHealth() < GarlicDamage)
|
||||||
{
|
{
|
||||||
deadCheck = true;
|
deadCheck = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
EnemyHealthComponent->TakeDamage(OverlappedEnemies[i], GarlicDamage, nullptr, GetController(), this);
|
EnemyHealthComponent->TakeDamage(OverlappedEnemiesCache[i], GarlicDamage, nullptr, GetController(), this);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (deadCheck)
|
if (deadCheck)
|
||||||
|
|
Loading…
Reference in New Issue