Skip to content

Commit

Permalink
Bumped package version
Browse files Browse the repository at this point in the history
  • Loading branch information
yasirkula committed Jul 25, 2022
1 parent 69ba4d7 commit 0243225
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Plugins/BezierSolution/BezierSpline.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public SplineAutoConstructMode autoConstructMode
}
}
}

private Vector3[] autoConstructedSplineRhs;
private Vector3[] autoConstructedSplineControlPoints;
private float[] autoConstructedSplineTmp;
Expand Down Expand Up @@ -1059,7 +1059,7 @@ public void AutoConstructSpline()
autoConstructedSplineControlPoints = new Vector3[rhsLength]; // Solution vector
if( autoConstructedSplineTmp == null || rhsLength != autoConstructedSplineTmp.Length )
autoConstructedSplineTmp = new float[rhsLength]; // Temp workspace


for( int i = 1; i < n - 1; i++ )
autoConstructedSplineRhs[i] = 4 * endPoints[i].position + 2 * endPoints[i + 1].position;
Expand Down Expand Up @@ -1504,4 +1504,4 @@ internal void Reset()
}
#endif
}
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.yasirkula.beziersolution",
"displayName": "Bezier Solution",
"version": "2.3.1",
"version": "2.3.2",
"documentationUrl": "https://github.com/yasirkula/UnityBezierSolution",
"changelogUrl": "https://github.com/yasirkula/UnityBezierSolution/releases",
"licensesUrl": "https://github.com/yasirkula/UnityBezierSolution/blob/master/LICENSE.txt",
Expand Down

0 comments on commit 0243225

Please sign in to comment.