I've been trying to Lerp my camera between multiple points in my game, but for some reason it jumps between the points I Lerp between:
https://imgur.com/a/cFlW2oR
My code:
Not Sure Why Camera Jumping
https://imgur.com/a/cFlW2oR
My code:
Code (CSharp):
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class CameraSLERP : MonoBehaviour
- {
- [SerializeField] Transform cam;
- [SerializeField] OrbitCam orbitCam;
- [SerializeField]...