1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 01:02:55 +08:00

Fix scale more.

This commit is contained in:
Dean Herbert 2016-11-02 17:08:34 +09:00
parent e939746159
commit 92b85b251e
2 changed files with 8 additions and 3 deletions

View File

@ -86,6 +86,7 @@ namespace osu.Game.Beatmaps.Objects.Osu.Drawable
//sane defaults
ring.Alpha = circle.Alpha = number.Alpha = approachCircle.Alpha = glow.Alpha = 1;
explode.Alpha = 0;
Scale = Vector2.One;
//always-present transforms
Transforms.Add(new TransformAlpha { StartTime = t - 1000, EndTime = t - 800, StartValue = 0, EndValue = 1 });

View File

@ -32,7 +32,7 @@ namespace osu.Game.GameModes.Play.Osu
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
RelativeSizeAxes = Axes.Both;
Size = new Vector2(0.86f);
Size = new Vector2(0.75f);
AddInternal(new Box
{
@ -43,13 +43,17 @@ namespace osu.Game.GameModes.Play.Osu
Alpha = 0.5f,
});
AddInternal(hitObjectContainer = new Container
AddInternal(hitObjectContainer = new HitObjectContainer
{
RelativeSizeAxes = Axes.Both,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Scale = new Vector2(0.4f),
});
}
class HitObjectContainer : Container
{
protected override Vector2 ChildScale => new Vector2(0.625f);
}
}
}