mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 23:12:56 +08:00
Get first Spinner,Slider or HitCircle instead of only HitCircle
Fixes bug
This commit is contained in:
parent
d18bd2d2ac
commit
7c40072c47
@ -61,11 +61,11 @@ namespace osu.Game.Rulesets.Osu.Mods
|
|||||||
|
|
||||||
public void ApplyToDrawableRuleset(DrawableRuleset<OsuHitObject> drawableRuleset)
|
public void ApplyToDrawableRuleset(DrawableRuleset<OsuHitObject> drawableRuleset)
|
||||||
{
|
{
|
||||||
|
OsuHitObject firstObject = drawableRuleset.Beatmap.HitObjects.Where(o => o is Spinner || o is Slider || o is HitCircle).First();
|
||||||
// Multiplying by 2 results in an initial size that is too large, hence 1.90 has been chosen
|
// Multiplying by 2 results in an initial size that is too large, hence 1.90 has been chosen
|
||||||
// Also avoids the HitObject bleeding around the edges of the bubble drawable at minimum size
|
// Also avoids the HitObject bleeding around the edges of the bubble drawable at minimum size
|
||||||
bubbleSize = (float)(drawableRuleset.Beatmap.HitObjects.OfType<HitCircle>().First().Radius * 1.90f);
|
bubbleSize = (float)firstObject.Radius * 1.90f;
|
||||||
bubbleFade = drawableRuleset.Beatmap.HitObjects.OfType<HitCircle>().First().TimePreempt * 2;
|
bubbleFade = firstObject.TimePreempt * 2;
|
||||||
|
|
||||||
// We want to hide the judgements since they are obscured by the BubbleDrawable (due to layering)
|
// We want to hide the judgements since they are obscured by the BubbleDrawable (due to layering)
|
||||||
drawableRuleset.Playfield.DisplayJudgements.Value = false;
|
drawableRuleset.Playfield.DisplayJudgements.Value = false;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user