mirror of https://github.com/ppy/osu
Modify comment
This commit is contained in:
parent
7e14679606
commit
995ef953c6
|
@ -33,7 +33,7 @@ public override bool HandleMovement(MoveSelectionEvent<HitObject> moveEvent)
|
|||
|
||||
if (deltaX == 0)
|
||||
{
|
||||
// Returns true: even there is no positional change, there may be a time change.
|
||||
// Even there is no positional change, there may be a time change.
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -96,7 +96,7 @@ private IEnumerable<float> getOriginalPositions(HitObject hitObject)
|
|||
case JuiceStream juiceStream:
|
||||
foreach (var nested in juiceStream.NestedHitObjects.OfType<CatchHitObject>())
|
||||
{
|
||||
// Exclude tiny droplets: even if `OriginalX` is outside the playfield, it can be moved inside the playfield after the random offset application.
|
||||
// Even if `OriginalX` is outside the playfield, tiny droplets can be moved inside the playfield after the random offset application.
|
||||
if (!(nested is TinyDroplet))
|
||||
yield return nested.OriginalX;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue