mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
Add comment about animation presence
This commit is contained in:
parent
db4c8b2ba5
commit
f5526890cc
@ -24,11 +24,12 @@ namespace osu.Game.Rulesets.Taiko.UI
|
||||
InternalChild = textureAnimation = createTextureAnimation(state).With(animation =>
|
||||
{
|
||||
animation.Origin = animation.Anchor = Anchor.BottomLeft;
|
||||
RelativeSizeAxes = Axes.Both;
|
||||
});
|
||||
|
||||
RelativeSizeAxes = Axes.Both;
|
||||
Origin = Anchor = Anchor.BottomLeft;
|
||||
|
||||
// needs to be always present to prevent the animation clock consuming time spent when not present.
|
||||
AlwaysPresent = true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user