Files

14 lines
252 B
C#
Raw Permalink Normal View History

2026-02-16 17:41:09 +00:00
using UnityEngine;
using UnityEngine.AI;
namespace Plugins.RaycastPro.Demo.Scripts
{
public class RollBot : MonoBehaviour
{
[SerializeField] private NavMeshAgent agent;
[SerializeField] private Transform rollingBall;
}
}