Using GetActorLocation()

S03 L65 GetActorLocation()

I am surprised by the number of ways that you can go about getting the location, having looked at some of the other posts.

1 Like

yeah I found this one work like charm too.

Super::BeginPlay();
FString ObjectName = GetOwner()->GetName();
FVector ObjectPos = GetOwner()->GetActorLocation();
UE_LOG(LogTemp, Warning, TEXT(“position of %s is in %s”),*ObjectName , *ObjectPos.ToString());
}

1 Like

I feel using actor location its more natural for me , as I came from blueprint development.

1 Like

Privacy & Terms