From d8cdd29c79ecb52e42dcafdabe52933ac944d45d Mon Sep 17 00:00:00 2001 From: Haze Weathers Date: Mon, 11 Mar 2024 16:12:42 -0400 Subject: [PATCH] improve stain removal on player animation a bit --- objects/player/player_stain.gd | 2 ++ 1 file changed, 2 insertions(+) diff --git a/objects/player/player_stain.gd b/objects/player/player_stain.gd index 4a00d85..f958696 100644 --- a/objects/player/player_stain.gd +++ b/objects/player/player_stain.gd @@ -10,6 +10,8 @@ func _ready() -> void: func _process(delta: float) -> void: lifetime -= delta + if lifetime < 1.0: + global_position.y += 4.0 * delta if lifetime < 0.5: scale = Vector2(lifetime * 2.0, lifetime * 2.0) if lifetime <= 0.0: