1234567891011 |
- using System.Collections.Generic;
- using UnityEngine;
- namespace Routes
- {
- [CreateAssetMenu(fileName = "Route", menuName = "ScriptableObjects/RouteTrajectory", order = 0)]
- public class RouteTrajectory : ScriptableObject
- {
- public List<Vector3> points;
- }
- }
|