Files
Caleb Sandford deQuincey 715fb68744 Initial commitment
2025-06-25 11:10:11 +01:00

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;
}
}