1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 04:19:53 +08:00
Commit Graph

3 Commits

  • Remove bindable usage in PathControlPoint
    This is quite a breaking change, but I think it is beneficial due to the large amount of usage of this class.
    
    I originally intended just to remove the allocations of the two delegates handling the `Changed` flow internally, but as nothing was really using the bindables for anything more than a general "point has changed" case, this felt like a better direction.
  • Add JuiceStreamPath to allow editing JuiceStream in catch editor
    A `JuiceStream` holds a legacy `SliderPath` as the representation of the path.
    However, the `SliderPath` representation is difficult to work with because `SliderPath` works in 2D position, while osu!catch works in `(time, x)` coordinates.
    This `JuiceStreamPath` represents the path in a more convenient way, a polyline connecting list of `(distance, x)` vertices.