From 216fdc88ab950b0325aecf7651d41085ed994dd6 Mon Sep 17 00:00:00 2001 From: Artur David Date: Tue, 2 Jun 2026 09:26:46 +0200 Subject: [PATCH] slowed down card hover --- scripts/perk_card.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/perk_card.gd b/scripts/perk_card.gd index 36e1295..ef5454c 100644 --- a/scripts/perk_card.gd +++ b/scripts/perk_card.gd @@ -148,7 +148,7 @@ func animate_in(): if not is_instance_valid(self): return _hover_tween = create_tween().set_loops() - _hover_tween.tween_method(func(t: float): position.y = rest_y + sin(t * TAU) * 5.0, 0.0, 1.0, 2.0) + _hover_tween.tween_method(func(t: float): position.y = rest_y + sin(t * TAU) * 5.0, 0.0, 1.0, 4.0) func animate_out():