Remove StartScale from ParticleSpewer particles

This commit is contained in:
Opelkuh
2021-09-05 16:25:24 +02:00
parent db662f8c5c
commit 6d68da8ff0
3 changed files with 1 additions and 4 deletions

View File

@ -40,7 +40,6 @@ namespace osu.Game.Graphics.Particles
p.Duration = RNG.NextSingle((float)particle_lifetime * 0.8f, (float)particle_lifetime);
p.Velocity = direction * new Vector2(RNG.NextSingle(velocity_min, velocity_max));
p.AngularVelocity = RNG.NextSingle(-angular_velocity, angular_velocity);
p.StartScale = 1f;
p.EndScale = 2f;
return p;