osu/osu.Game.Rulesets.Mania/Objects/Drawables/DrawableNote.cs

55 lines
1.5 KiB
C#
Raw Normal View History

2017-05-03 06:50:42 +00:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using OpenTK.Graphics;
2017-05-04 06:36:37 +00:00
using osu.Framework.Allocation;
2017-05-03 06:50:42 +00:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Sprites;
using osu.Game.Rulesets.Mania.Objects.Drawables.Pieces;
using osu.Game.Rulesets.Objects.Drawables;
namespace osu.Game.Rulesets.Mania.Objects.Drawables
{
public class DrawableNote : DrawableManiaHitObject<Note>
{
private NotePiece headPiece;
public DrawableNote(Note hitObject)
: base(hitObject)
{
RelativeSizeAxes = Axes.X;
AutoSizeAxes = Axes.Y;
Add(headPiece = new NotePiece
{
Anchor = Anchor.BottomCentre,
Origin = Anchor.BottomCentre
});
2017-05-04 06:36:37 +00:00
}
public override Color4 AccentColour
2017-05-04 06:36:37 +00:00
{
get { return AccentColour; }
set
{
if (base.AccentColour == value)
return;
base.AccentColour = value;
headPiece.AccentColour = value;
}
2017-05-03 06:50:42 +00:00
}
2017-05-11 03:57:07 +00:00
protected override void Update()
{
if (Time.Current > HitObject.StartTime)
Colour = Color4.Green;
}
2017-05-03 06:50:42 +00:00
protected override void UpdateState(ArmedState state)
{
}
}
}