Bugfix VisionLink to Deactivate WIP Fucntionalilty
This commit is contained in:
parent
f92605ebee
commit
282705ed2f
@ -38,18 +38,15 @@ void AVisionLink::SendOutPingPulse()
|
|||||||
UpdatePulsesRemaining(NumOfPingPulsesLeftInThisCycle);
|
UpdatePulsesRemaining(NumOfPingPulsesLeftInThisCycle);
|
||||||
if (NumOfPingPulsesLeftInThisCycle < 0) return;
|
if (NumOfPingPulsesLeftInThisCycle < 0) return;
|
||||||
|
|
||||||
FActorSpawnParameters SpawnParams;
|
//FActorSpawnParameters SpawnParams;
|
||||||
SpawnParams.SpawnCollisionHandlingOverride = ESpawnActorCollisionHandlingMethod::AlwaysSpawn;
|
//SpawnParams.SpawnCollisionHandlingOverride = ESpawnActorCollisionHandlingMethod::AlwaysSpawn;
|
||||||
FVector SpawnLoc = (GetActorLocation() - EquippedOffset) + EnemyLOSTestActor.GetDefaultObject()->SpawnOffset;
|
//FVector SpawnLoc = (GetActorLocation() - EquippedOffset) + EnemyLOSTestActor.GetDefaultObject()->SpawnOffset;
|
||||||
|
|
||||||
AActor* LOSTestActor = GetWorld()->SpawnActor<AActor>(EnemyLOSTestActor, SpawnLoc, GetActorRotation(), SpawnParams);
|
// AActor* LOSTestActor = GetWorld()->SpawnActor<AActor>(EnemyLOSTestActor, SpawnLoc, GetActorRotation(), SpawnParams);
|
||||||
TArray<FString> EmptyFStringArray;
|
// TArray<FString> EmptyFStringArray;
|
||||||
Cast<AVisionLinkEnemyLOSTest>(LOSTestActor)->TestLOS(EmptyFStringArray, GetOwner());
|
// Cast<AVisionLinkEnemyLOSTest>(LOSTestActor)->TestLOS(EmptyFStringArray, GetOwner());
|
||||||
|
|
||||||
UE_LOG(LogTemp, Warning, TEXT("Ping Pulse!"));
|
UE_LOG(LogTemp, Warning, TEXT("Ping Pulse!"));
|
||||||
GetWorld()->GetTimerManager().SetTimer(PulseHandle, this, &AVisionLink::SendOutPingPulse, TimeInbetweenPingPulses, false);
|
GetWorld()->GetTimerManager().SetTimer(PulseHandle, this, &AVisionLink::SendOutPingPulse, TimeInbetweenPingPulses, false);
|
||||||
PlayPingPulseAnim(TimeInbetweenPingPulses);
|
PlayPingPulseAnim(TimeInbetweenPingPulses);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user