12 lines
187 B
C#
12 lines
187 B
C#
using UnityEngine;
|
|
|
|
public class MoveCameraToCharacter : MonoBehaviour
|
|
{
|
|
public GameObject Target;
|
|
|
|
private void Update()
|
|
{
|
|
base.transform.position = Target.transform.position;
|
|
}
|
|
}
|