Simple Bézier curve creator. The project also includes 1 example for the quadratic curve.
Cubic curve script was created but not visualized in the editor.
Also needs a fourth point at the BezierCurve.cs
public void Reset()
{
Points = new Vector3[]
{
new Vector3(1f, 0, 0),
new Vector3(2f, 0, 0),
new Vector3(3f, 0, 0),
new Vector3(4f, 0, 0)
};
}