Skip to content

Commit

Permalink
Added the missing "AddCurveRight" override in the HermiteSpline class.
Browse files Browse the repository at this point in the history
  • Loading branch information
BlizzCrafter committed Mar 21, 2021
1 parent 552bcda commit 205598a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions MonoGame.SplineFlower/Spline/Types/HermiteSpline.cs
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,13 @@ public override void AddCurveLeft()
CreateTangents();
}

public override void AddCurveRight()
{
base.AddCurveRight();

CreateTangents();
}

public override void Reset()
{
base.Reset();
Expand Down

0 comments on commit 205598a

Please sign in to comment.