/* * author: mark joshwel * date: 15/08/2024 * description: vehicular target */ using UnityEngine; public class VehicleWaypoint : MonoBehaviour { /// /// next vehicle target waypoint for the vehicle to move to /// [SerializeField] private GameObject nextTarget; }