From 064428adcf121e0c20095611d9fbed427ddb0eb2 Mon Sep 17 00:00:00 2001 From: Tabby <41929769+tabby-cat-nya@users.noreply.github.com> Date: Sun, 20 Apr 2025 21:01:02 +1000 Subject: [PATCH] neat --- player.gd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/player.gd b/player.gd index f5d42ce..04b7ef3 100644 --- a/player.gd +++ b/player.gd @@ -34,8 +34,8 @@ func _process(delta: float) -> void: scorecard.score = score scorecard.alive = alive lifetime += delta - #if(linear_velocity.length() < 35 and lifetime > 3): - #linear_velocity *= 1.1 + if(linear_velocity.length() < 35 and lifetime > 10): + linear_velocity *= 1.1 if(not alive): modulate = Color("ffffff42") contact_monitor = false