Hello! I have a ball that moves along a rectilinear trajectory according to the formula: FVector direction= GetActorLocation()+speed*deltaTime; The problem is that I would like to change the angle of the direction vector so that the sphere can move at an angle. Are there ways in c++ to rotate a vector? For example, through Euler angles…