Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

how to get the player view point location and rotation in ue4 c++

#include "GameFrameworks/PlayerController.h"


void YourFunction(int32 yourargument)//note: The return type and the argument tupe is assumed. You can change it to whatever you want.
{
	FVector PlayerViewPointLocation;
  	FRotator PlayerViewPointLocation;
  
  	APlayerController::GetPlayerViewPoint(OUT PlayerViewPointLocation, OUT PlayerViewPointLocation); //Note: You can also use GetWorld()->GetPlayerController()->GetPlayerViewPointLocation() but you have to include the file given above.
  	
}
 
PREVIOUS NEXT
Tagged: #player #view #point #location #rotation
ADD COMMENT
Topic
Name
9+2 =