16 lines
267 B
C#
16 lines
267 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class Follow : MonoBehaviour
|
|
{
|
|
public Transform target;
|
|
public Vector3 offset;
|
|
|
|
|
|
void Update()
|
|
{
|
|
transform.position = target.position + offset;
|
|
}
|
|
}
|