Answers for "smooth camera unity"

C#
2

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;
Posted by: Guest on January-25-2021

C# Answers by Framework

Browse Popular Code Answers by Language