correct shrinking sliders for slider with odd amount of repeats

This commit is contained in:
yugecin
2016-12-04 21:12:22 +01:00
parent 00fcf0ebc1
commit 50f475e0f7
3 changed files with 34 additions and 2 deletions

View File

@@ -159,6 +159,12 @@ public abstract class Curve {
}
}
public void reverse() {
if (renderState == null)
renderState = new CurveRenderState(hitObject, curve);
renderState.reverse();
}
/**
* Returns the angle of the first control point.
*/