Adjust metrics further

This commit is contained in:
Dean Herbert 2023-07-21 14:23:53 +09:00
parent b29a2081ac
commit 2cb1a6fdaa
1 changed files with 2 additions and 2 deletions

View File

@ -68,8 +68,8 @@ protected override FallingParticle CreateParticle()
Duration = RNG.NextSingle(particle_duration_min, particle_duration_max),
StartAngle = getRandomVariance(4),
EndAngle = getRandomVariance(2),
EndScale = 1.4f + getRandomVariance(0.4f),
Velocity = new Vector2(getCurrentAngle(), -1200 + getRandomVariance(100)),
EndScale = 2.2f + getRandomVariance(0.4f),
Velocity = new Vector2(getCurrentAngle(), -1400 + getRandomVariance(100)),
};
}