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

Override transform update functions in bar line

This commit is contained in:
iiSaLMaN 2019-08-26 15:15:48 +03:00
parent fb69755869
commit 3f93780306

View File

@ -69,7 +69,11 @@ namespace osu.Game.Rulesets.Mania.Objects.Drawables
Alpha = 0.2f;
}
protected override void UpdateState(ArmedState state)
protected override void UpdateInitialTransforms()
{
}
protected override void UpdateStateTransforms(ArmedState state)
{
}
}