Converting a vector from world space to local space, and vice versa, in blueprint

Incase some one need it:

FVector WorldLocation = FVector(100, 100, 0);
FTransform WorldTransform = GetTransform();|
FVector LocalLocation = WorldTransform.InverseTransformVector(WorldLocation);

10 Likes