Hey everybody! Is anybody familliar with Splines?
I am trying to make use of Splines to have my AI enemies follow bezier curved paths.
SplinePathwinder.cs
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Splines;
namespace EZLerps
{
public class SplinePathwinder : EZLerp
{
SplineContainer container;
}
}
UnityEngine.Splines; and SplineContainer container; both give me the error involving namespace or assemblies.
error CS0234: The type or namespace name 'Splines' does not exist in the namespace 'UnityEngine' (are you missing an assembly reference?)