mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 09:37:24 +08:00
42 lines
1.2 KiB
C#
42 lines
1.2 KiB
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Game.Skinning;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Skinning
|
|
{
|
|
public class LegacyHitTarget : CompositeDrawable
|
|
{
|
|
[BackgroundDependencyLoader]
|
|
private void load(ISkinSource skin)
|
|
{
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
InternalChildren = new Drawable[]
|
|
{
|
|
new Sprite
|
|
{
|
|
Texture = skin.GetTexture("approachcircle"),
|
|
Scale = new Vector2(0.73f),
|
|
Alpha = 0.7f,
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
},
|
|
new Sprite
|
|
{
|
|
Texture = skin.GetTexture("taikobigcircle"),
|
|
Scale = new Vector2(0.7f),
|
|
Alpha = 0.5f,
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
}
|