Remove unnecessary testing
This commit is contained in:
parent
bff484f139
commit
596bae1855
|
@ -243,15 +243,7 @@ void APlayerCharacter::CalculateHits(TArray<FHitResult>* hits)
|
||||||
FVector TraceStart;
|
FVector TraceStart;
|
||||||
FRotator PlayerRot;
|
FRotator PlayerRot;
|
||||||
|
|
||||||
APlayerController* Con;
|
GetController<APlayerController>()->GetPlayerViewPoint(TraceStart, PlayerRot);
|
||||||
Con = GetController<APlayerController>();
|
|
||||||
|
|
||||||
if (!Con)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
Con->GetPlayerViewPoint(TraceStart, PlayerRot);
|
|
||||||
TraceStart = GetRootComponent()->GetComponentLocation();
|
TraceStart = GetRootComponent()->GetComponentLocation();
|
||||||
FVector AimDir = PlayerRot.Vector();
|
FVector AimDir = PlayerRot.Vector();
|
||||||
TraceStart = TraceStart + AimDir * ((GetInstigator()->GetActorLocation() - TraceStart) | AimDir);
|
TraceStart = TraceStart + AimDir * ((GetInstigator()->GetActorLocation() - TraceStart) | AimDir);
|
||||||
|
|
Loading…
Reference in New Issue