Rename new path, replace existing one

This commit is contained in:
smoogipoo
2019-12-05 17:49:32 +09:00
parent 5e9b739b67
commit 2702edfa55
3 changed files with 93 additions and 366 deletions

View File

@ -13,12 +13,12 @@ using osuTK;
namespace osu.Game.Tests.Visual.Gameplay
{
public class TestSceneSliderPath2 : OsuTestScene
public class TestSceneSliderPath : OsuTestScene
{
private readonly SmoothPath drawablePath;
private SliderPath2 path;
private SliderPath path;
public TestSceneSliderPath2()
public TestSceneSliderPath()
{
Child = drawablePath = new SmoothPath
{
@ -30,7 +30,7 @@ namespace osu.Game.Tests.Visual.Gameplay
[SetUp]
public void Setup() => Schedule(() =>
{
path = new SliderPath2();
path = new SliderPath();
});
protected override void Update()