From 2cb1a6fdaabe4eb9a4696358f93cfa271f902553 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Fri, 21 Jul 2023 14:23:53 +0900 Subject: [PATCH] Adjust metrics further --- osu.Game/Screens/Menu/StarFountain.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osu.Game/Screens/Menu/StarFountain.cs b/osu.Game/Screens/Menu/StarFountain.cs index debf0007eb..0d35f6e0e0 100644 --- a/osu.Game/Screens/Menu/StarFountain.cs +++ b/osu.Game/Screens/Menu/StarFountain.cs @@ -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)), }; }