Files
LowPolyRPG/Assets/Plugins/RaycastPro/_Demo/_Scripts/RollBot.cs

14 lines
252 B
C#
Raw Normal View History

2025-06-25 11:10:11 +01:00
using UnityEngine;
using UnityEngine.AI;
namespace Plugins.RaycastPro.Demo.Scripts
{
public class RollBot : MonoBehaviour
{
[SerializeField] private NavMeshAgent agent;
[SerializeField] private Transform rollingBall;
}
}