Hi,
I want to create smooth rotation of flashlight movement in the wrist.
Everything works fine now, but I cannot get smooth rotation from original angles to new angles by using slerp or lerp functions. Whenever I try something it stops working or just ignores interpolation. Perhaps I did some mistake in previous lines before using interpolation at the end?
private void Aim()
{
//Flashlight
aimDirection = pointer.transform.position - aimer.transform.position;
rotationToObject = Quaternion.LookRotation(aimDirection);
wristRotation = Quaternion.RotateTowards(rightWrist.rotation, rotationToObject * Quaternion.Euler(new Vector2(90, 0)), 110);
rightWrist.rotation = Quaternion.Lerp(rightWrist.rotation, wristRotation, 0.9f);
}
Thank you.
↧