1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 22:47:24 +08:00

Remove another invalidate

This commit is contained in:
Dan Balasescu 2022-09-20 20:59:58 +09:00
parent c28ed477e1
commit 102c140967

View File

@ -35,20 +35,7 @@ namespace osu.Game.Rulesets.Osu.Skinning.Legacy
private const float max_rotation = 0.25f; private const float max_rotation = 0.25f;
private int rotationSeed = RNG.Next(); protected int RotationSeed { get; set; } = RNG.Next();
protected int RotationSeed
{
get => rotationSeed;
set
{
if (rotationSeed == value)
return;
rotationSeed = value;
Invalidate(Invalidation.DrawNode);
}
}
protected override double LifetimeAfterSmokeEnd protected override double LifetimeAfterSmokeEnd
{ {