1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 12:17:26 +08:00

Add t=0 display to notes.

This commit is contained in:
smoogipooo 2017-05-11 12:57:07 +09:00
parent 8160f36a48
commit 7fcbf2d8d4

View File

@ -41,6 +41,12 @@ namespace osu.Game.Rulesets.Mania.Objects.Drawables
}
}
protected override void Update()
{
if (Time.Current > HitObject.StartTime)
Colour = Color4.Green;
}
protected override void UpdateState(ArmedState state)
{
}