This commit is contained in:
Gerard Gascón 2025-04-24 14:30:07 +02:00
commit 102013b228
1443 changed files with 1065651 additions and 0 deletions

View file

@ -0,0 +1,18 @@
using UnityEngine;
[System.Serializable]
public class Waypoint{
[Min(0)] public float startDelay;
[Header("Easing")]
public bool ease;
[Range(0f, 2f)] public float easeAmount;
[Header("Waypoints")]
[Min(0)] public float timeBetweenWaypoints;
[Min(0)] public int endWaypoint;
[Header("Field of View")]
[Range(1, 179)] public float fieldOfView = 60;
}