Revert "Remove X setter from CatchHitObject"

This reverts commit 7cbbd74d
This commit is contained in:
ekrctb
2020-12-14 13:18:14 +09:00
parent 7cbbd74df2
commit d96399ea42
12 changed files with 44 additions and 36 deletions

View File

@ -105,7 +105,7 @@ namespace osu.Game.Rulesets.Catch.Tests
{
var fruit = new Fruit
{
OriginalX = getXCoords(hit),
X = getXCoords(hit),
LastInCombo = i % 4 == 0,
StartTime = playfieldTime + 800 + (200 * i)
};
@ -122,7 +122,7 @@ namespace osu.Game.Rulesets.Catch.Tests
var juice = new JuiceStream
{
OriginalX = xCoords,
X = xCoords,
StartTime = playfieldTime + 1000,
Path = new SliderPath(PathType.Linear, new[]
{
@ -145,7 +145,7 @@ namespace osu.Game.Rulesets.Catch.Tests
{
var banana = new Banana
{
OriginalX = getXCoords(hit),
X = getXCoords(hit),
LastInCombo = i % 4 == 0,
StartTime = playfieldTime + 800 + (200 * i)
};