How to move actor in the way its facing? (Editor Utility)

Forward vector is a unit vector in the direction the actor is facing. To move a location in that direction, do this:
NewLocation = CurrentLocation + (Distance * Forward)

2 Likes