From c699a72578b23ad870603b084e2e5ea8d15f04d6 Mon Sep 17 00:00:00 2001 From: Rob Kelly Date: Wed, 8 Jan 2025 15:42:07 -0700 Subject: [PATCH] NICE SHOT message now only triggers within 5% of perfect (was 20%) --- src/player/shot_setup/shot_setup.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/player/shot_setup/shot_setup.gd b/src/player/shot_setup/shot_setup.gd index fb1ae07..e92f688 100644 --- a/src/player/shot_setup/shot_setup.gd +++ b/src/player/shot_setup/shot_setup.gd @@ -48,7 +48,7 @@ const SHOT_OFFSET_Z_FACTOR := 2.0 / 45.0 const CURVE_FACTOR := 0.002 ## Maximum absolute curve for the "nice shot" animation to play -const NICE_THRESHOLD := 0.2 +const NICE_THRESHOLD := 0.05 ## Force by which explosions knock the ball away const EXPLOSIVE_FORCE_FACTOR := 0.12