Files
MagicDog/Assets/Animals/Assets/Scripts/Follow.cs
2026-04-14 16:37:06 +02:00

20 lines
402 B
C#

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