10 lines
219 B
C#
10 lines
219 B
C#
using UnityEngine;
|
|
|
|
public class BaseHovercarController : MonoBehaviour
|
|
{
|
|
|
|
[Tooltip("Ordered list of checkpoints for the AI to follow.")]
|
|
public Transform[] checkpoints;
|
|
|
|
public bool canAccelerate = false;
|
|
} |