Skip to content

Commit

Permalink
Simplify JudgementChart
Browse files Browse the repository at this point in the history
No longer contains the ratio bar, since that seems redundant and approximate at best
  • Loading branch information
LumpBloom7 committed Sep 8, 2024
1 parent 718e5ff commit eaccb4f
Show file tree
Hide file tree
Showing 3 changed files with 144 additions and 358 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
using System.Collections.Generic;
using NUnit.Framework;
using osu.Framework.Graphics;
using osu.Game.Rulesets.Scoring;
using osu.Game.Rulesets.Sentakki.Objects;
using osu.Game.Rulesets.Sentakki.Statistics;
using osu.Game.Tests.Visual;
using osuTK;

namespace osu.Game.Rulesets.Sentakki.Tests.Statistics
{
Expand Down Expand Up @@ -58,7 +60,14 @@ public partial class TestSceneJudgementChart : OsuTestScene

public TestSceneJudgementChart()
{
Add(new JudgementChart(testevents));
Add(new JudgementChart(testevents)
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Size = new Vector2(1, 250),
RelativeSizeAxes = Axes.X,
});

}

Check notice on line 71 in osu.Game.Rulesets.Sentakki.Tests/Statistics/TestSceneJudgementChart.cs

View check run for this annotation

codefactor.io / CodeFactor

osu.Game.Rulesets.Sentakki.Tests/Statistics/TestSceneJudgementChart.cs#L71

A closing brace should not be preceded by a blank line. (SA1508)
}
}
329 changes: 0 additions & 329 deletions osu.Game.Rulesets.Sentakki/Statistics/ChartEntry.cs

This file was deleted.

Loading

0 comments on commit eaccb4f

Please sign in to comment.