Remove X setter from CatchHitObject

This commit is contained in:
ekrctb
2020-12-14 11:38:07 +09:00
parent f621d977fc
commit 7cbbd74df2
12 changed files with 36 additions and 44 deletions

View File

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