14 lines
282 B
C#
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;
|
|
}
|
|
} |