This commit is contained in:
EVAST9919 2017-05-13 03:10:13 +03:00
parent 5532d3ec49
commit 6d9e11a74f
1 changed files with 3 additions and 4 deletions

View File

@ -10,7 +10,6 @@
using OpenTK;
using OpenTK.Graphics;
using osu.Game.Rulesets.Osu.UI;
using osu.Game.Beatmaps;
using osu.Framework.Allocation;
namespace osu.Game.Rulesets.Osu.Objects.Drawables
@ -24,7 +23,7 @@ public class DrawableSpinner : DrawableOsuHitObject
private readonly Container circleContainer;
private readonly DrawableHitCircle circle;
private float beatmapOD;
private float beatmapOd;
public DrawableSpinner(Spinner s) : base(s)
{
@ -78,7 +77,7 @@ public DrawableSpinner(Spinner s) : base(s)
[BackgroundDependencyLoader(permitNulls: true)]
private void load(OsuGame game)
{
beatmapOD = game?.Beatmap?.Value.Beatmap.BeatmapInfo.Difficulty.OverallDifficulty ?? 5;
beatmapOd = game?.Beatmap?.Value.Beatmap.BeatmapInfo.Difficulty.OverallDifficulty ?? 5;
}
protected override void CheckJudgement(bool userTriggered)
@ -118,7 +117,7 @@ protected override void CheckJudgement(bool userTriggered)
private Vector2 scaleToCircle => circle.Scale * circle.DrawWidth / DrawWidth * 0.95f;
private float spinsPerMinuteNeeded => 100 + beatmapOD * 15;
private float spinsPerMinuteNeeded => 100 + beatmapOd * 15;
private float rotationsNeeded => (float)(spinsPerMinuteNeeded * (spinner.EndTime - spinner.StartTime) / 60000f);