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

@ -32,22 +32,22 @@ namespace osu.Game.Rulesets.Catch.Tests.Mods
{
new Fruit
{
OriginalX = CatchPlayfield.CENTER_X,
X = CatchPlayfield.CENTER_X,
StartTime = 0
},
new Fruit
{
OriginalX = 0,
X = 0,
StartTime = 1000
},
new Fruit
{
OriginalX = CatchPlayfield.WIDTH,
X = CatchPlayfield.WIDTH,
StartTime = 2000
},
new JuiceStream
{
OriginalX = CatchPlayfield.CENTER_X,
X = CatchPlayfield.CENTER_X,
StartTime = 3000,
Path = new SliderPath(PathType.Linear, new[] { Vector2.Zero, Vector2.UnitY * 200 })
}