Skip to content

Commit

Permalink
Simplify judgement chart design
Browse files Browse the repository at this point in the history
  • Loading branch information
LumpBloom7 committed Sep 28, 2024
1 parent 718e5ff commit 2cba73b
Show file tree
Hide file tree
Showing 3 changed files with 143 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,13 @@ 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,
});
}
}
}
329 changes: 0 additions & 329 deletions osu.Game.Rulesets.Sentakki/Statistics/ChartEntry.cs

This file was deleted.

Loading

0 comments on commit 2cba73b

Please sign in to comment.