Remove UE_LOG
This commit is contained in:
parent
03023ed494
commit
a4d66dc45d
|
@ -37,7 +37,6 @@ void APickup::Tick(float DeltaSeconds)
|
||||||
if (currentDistance <= PickupMovementRange)
|
if (currentDistance <= PickupMovementRange)
|
||||||
{
|
{
|
||||||
double speed = 400 / currentDistance;
|
double speed = 400 / currentDistance;
|
||||||
UE_LOG(LogTemp, Warning, TEXT("The integer value is: %f"), speed);
|
|
||||||
FVector location = FMath::VInterpTo(actorLocation, playerLocation, DeltaSeconds, speed);
|
FVector location = FMath::VInterpTo(actorLocation, playerLocation, DeltaSeconds, speed);
|
||||||
SetActorLocation(location);
|
SetActorLocation(location);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue