diff --git a/osu.Game.Rulesets.Sandbox.Tests/osu.Game.Rulesets.Sandbox.Tests.csproj b/osu.Game.Rulesets.Sandbox.Tests/osu.Game.Rulesets.Sandbox.Tests.csproj index 0845c60..a43a26f 100644 --- a/osu.Game.Rulesets.Sandbox.Tests/osu.Game.Rulesets.Sandbox.Tests.csproj +++ b/osu.Game.Rulesets.Sandbox.Tests/osu.Game.Rulesets.Sandbox.Tests.csproj @@ -7,7 +7,7 @@ WinExe - net6.0 + net8.0 osu.Game.Rulesets.Sandbox.Tests \ No newline at end of file diff --git a/osu.Game.Rulesets.Sandbox/SandboxRuleset.cs b/osu.Game.Rulesets.Sandbox/SandboxRuleset.cs index b090f48..7840d63 100644 --- a/osu.Game.Rulesets.Sandbox/SandboxRuleset.cs +++ b/osu.Game.Rulesets.Sandbox/SandboxRuleset.cs @@ -35,7 +35,7 @@ public partial class SandboxRuleset : Ruleset public override string ShortName => "sandbox"; - public override string PlayingVerb => "Doing random stuff"; + public override string PlayingVerb => "Sandboxing"; public override Drawable CreateIcon() => new SandboxIcon(this); diff --git a/osu.Game.Rulesets.Sandbox/Screens/Visualizer/Components/Layouts/TypeA/CircularBeatmapLogo.cs b/osu.Game.Rulesets.Sandbox/Screens/Visualizer/Components/Layouts/TypeA/CircularBeatmapLogo.cs index 4748269..fce14eb 100644 --- a/osu.Game.Rulesets.Sandbox/Screens/Visualizer/Components/Layouts/TypeA/CircularBeatmapLogo.cs +++ b/osu.Game.Rulesets.Sandbox/Screens/Visualizer/Components/Layouts/TypeA/CircularBeatmapLogo.cs @@ -69,7 +69,7 @@ protected override void Update() base.Update(); var track = Beatmap.Value?.Track; - progress.Current.Value = (track == null || track.Length == 0) ? 0 : (track.CurrentTime / track.Length); + progress.Progress = (track == null || track.Length == 0) ? 0 : (track.CurrentTime / track.Length); } } } diff --git a/osu.Game.Rulesets.Sandbox/osu.Game.Rulesets.Sandbox.csproj b/osu.Game.Rulesets.Sandbox/osu.Game.Rulesets.Sandbox.csproj index a2888cc..86d2f75 100644 --- a/osu.Game.Rulesets.Sandbox/osu.Game.Rulesets.Sandbox.csproj +++ b/osu.Game.Rulesets.Sandbox/osu.Game.Rulesets.Sandbox.csproj @@ -1,6 +1,6 @@  - net6.0 + net8.0 osu.Game.Rulesets.Sandbox Library AnyCPU @@ -11,6 +11,6 @@ - + \ No newline at end of file