Files
RollABall/Assets/Scripts/CameraFollow.cs

14 lines
282 B
C#

using UnityEngine;
public class CameraFollow : MonoBehaviour {
public GameObject player;
private Vector3 offset;
void Start() {
offset = transform.position;
}
void LateUpdate() {
transform.position = player.transform.position + offset;
}
}