14 lines
252 B
C#
14 lines
252 B
C#
|
|
using UnityEngine;
|
||
|
|
using UnityEngine.AI;
|
||
|
|
|
||
|
|
namespace Plugins.RaycastPro.Demo.Scripts
|
||
|
|
{
|
||
|
|
public class RollBot : MonoBehaviour
|
||
|
|
{
|
||
|
|
[SerializeField] private NavMeshAgent agent;
|
||
|
|
[SerializeField] private Transform rollingBall;
|
||
|
|
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|