Implement mania note skinning

This commit is contained in:
smoogipoo
2020-03-31 15:29:25 +09:00
parent b926d570ee
commit c4f76ffdaf
16 changed files with 247 additions and 52 deletions

View File

@ -12,12 +12,12 @@ namespace osu.Game.Rulesets.Mania.Edit.Blueprints.Components
{
public EditNotePiece()
{
Height = NotePiece.NOTE_HEIGHT;
Height = DefaultNotePiece.NOTE_HEIGHT;
CornerRadius = 5;
Masking = true;
InternalChild = new NotePiece();
InternalChild = new DefaultNotePiece();
}
[BackgroundDependencyLoader]