mirror of
https://github.com/ppy/osu
synced 2025-03-02 01:21:19 +00:00
Modify comment
This commit is contained in:
parent
7e14679606
commit
995ef953c6
@ -33,7 +33,7 @@ namespace osu.Game.Rulesets.Catch.Edit
|
|||||||
|
|
||||||
if (deltaX == 0)
|
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;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -96,7 +96,7 @@ namespace osu.Game.Rulesets.Catch.Edit
|
|||||||
case JuiceStream juiceStream:
|
case JuiceStream juiceStream:
|
||||||
foreach (var nested in juiceStream.NestedHitObjects.OfType<CatchHitObject>())
|
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))
|
if (!(nested is TinyDroplet))
|
||||||
yield return nested.OriginalX;
|
yield return nested.OriginalX;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user