There is any way to slerp in c++ like unity?

Spherical linear interpolation in Unreal uses quaternions, not vectors, you can convert your vectors to FQuat and use FQuat::Slerp.

Otherwise, you can look at this post.

1 Like