Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Assets/SplineMesh/Scripts/MeshProcessing/MeshBender.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public void SetInterval(CubicBezierCurve curve) {
/// outside the given interval.
/// </summary>
/// <param name="spline">The <see cref="SplineMesh"/> to bend the source mesh along.</param>
/// <param name="intervalStart">Distance from the spline start to place the mesh minimum X.<param>
/// <param name="intervalStart">Distance from the spline start to place the mesh minimum X.</param>
/// <param name="intervalEnd">Distance from the spline start to stop deforming the source mesh.</param>
public void SetInterval(Spline spline, float intervalStart, float intervalEnd = 0) {
if (this.spline == spline && this.intervalStart == intervalStart && this.intervalEnd == intervalEnd) return;
Expand Down Expand Up @@ -326,4 +326,4 @@ private void FillStretch() {


}
}
}