camera smoth follow in unity code example
Example: camera follow player unity smooth
// CAMERA FOLLOW PLAYER - IN FIXEDUPDATE
Vector3.SmoothDamp(cam.position, transform.position + cameraOffset, ref cameraVelocity, CameraFollowSmoothTime);
cam.position = cam.position + cameraVelocity * Time.deltaTime;