fix #94
This commit is contained in:
@@ -124,8 +124,6 @@ public class Slider extends GameObject {
|
||||
|
||||
public int baseSliderFrom;
|
||||
|
||||
private boolean reversed;
|
||||
|
||||
/**
|
||||
* Initializes the Slider data type with images and dimensions.
|
||||
* @param container the game container
|
||||
|
||||
@@ -155,11 +155,13 @@ public abstract class Curve {
|
||||
else {
|
||||
if (renderState == null)
|
||||
renderState = new CurveRenderState(hitObject, curve);
|
||||
renderState.draw(color, borderColor, t1, t2); // TODO
|
||||
renderState.draw(color, borderColor, t1, t2);
|
||||
}
|
||||
}
|
||||
|
||||
public void splice(int from, int to) {
|
||||
if (renderState == null)
|
||||
renderState = new CurveRenderState(hitObject, curve);
|
||||
renderState.splice(from, to);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user