mirror of
https://github.com/DerTyp7/grow-ai-unity.git
synced 2025-10-29 12:32:10 +01:00
22 lines
436 B
C#
22 lines
436 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.AI;
|
|
|
|
public class PersonMovement : MonoBehaviour
|
|
{
|
|
NavMeshAgent agent;
|
|
|
|
private void Awake()
|
|
{
|
|
agent = GetComponent<NavMeshAgent>();
|
|
agent.updateRotation = false;
|
|
agent.updateUpAxis = false;
|
|
}
|
|
|
|
public void SetTarget(Transform target)
|
|
{
|
|
agent.SetDestination(target.position);
|
|
}
|
|
}
|