mirror of
https://github.com/osukey/osukey.git
synced 2025-08-06 16:13:57 +09:00
Fix wrong resampling times are used for juice stream path
This commit is contained in:
@ -80,7 +80,7 @@ namespace osu.Game.Rulesets.Catch.Edit.Blueprints.Components
|
|||||||
{
|
{
|
||||||
path.ResampleVertices(hitObject.NestedHitObjects
|
path.ResampleVertices(hitObject.NestedHitObjects
|
||||||
.Skip(1).TakeWhile(h => !(h is Fruit)) // Only droplets in the first span are used.
|
.Skip(1).TakeWhile(h => !(h is Fruit)) // Only droplets in the first span are used.
|
||||||
.Select(h => (h.StartTime - hitObject.StartTime) * hitObject.Velocity));
|
.Select(h => h.StartTime - hitObject.StartTime));
|
||||||
}
|
}
|
||||||
|
|
||||||
vertexStates.Clear();
|
vertexStates.Clear();
|
||||||
|
Reference in New Issue
Block a user