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: