20 lines
383 B
C#
20 lines
383 B
C#
|
|
using System.Collections;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
public class CameraController : MonoBehaviour
|
||
|
|
{
|
||
|
|
public GameObject player;
|
||
|
|
private Vector3 offset;
|
||
|
|
|
||
|
|
void Start()
|
||
|
|
{
|
||
|
|
offset = transform.position - player.transform.position;
|
||
|
|
}
|
||
|
|
|
||
|
|
void LateUpdate()
|
||
|
|
{
|
||
|
|
transform.position = player.transform.position + offset;
|
||
|
|
}
|
||
|
|
}
|