In Unreal Engine 3 I would just do something like this to Lerp Two Vectors.
Vector1 = VLerp(Vector1, Vector2, 0.1);
How would I do something like this In C++? I couldn’t find anything too obvious when I searched the code base. I simply want to make the camera have a smooth lag behind the player.