From a29b4d43794b73c505bb554030f70cf7e192c8bb Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Wed, 1 Oct 2025 20:10:42 +0200 Subject: [PATCH] =?UTF-8?q?scoreboard.cpp:=20modificada=20la=20easing=20fu?= =?UTF-8?q?nction=20de=20despla=C3=A7ament=20vertical=20a=20easeInOutSine?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/scoreboard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/scoreboard.cpp b/source/scoreboard.cpp index a023da3..ead63b1 100644 --- a/source/scoreboard.cpp +++ b/source/scoreboard.cpp @@ -443,7 +443,7 @@ void Scoreboard::renderEnterNameMode(size_t panel_index) { void Scoreboard::renderEnterToShowNameMode(size_t panel_index) { // Calcular progreso suavizado de la animación (0.0 a 1.0) - const float t = static_cast(easeOutCubic(text_slide_offset_.at(panel_index))); + const float t = static_cast(easeInOutSine(text_slide_offset_.at(panel_index))); // Calcular desplazamientos reales entre slots (no son exactamente ROW_SIZE) const float delta_1_to_2 = slot4_2_.y - slot4_1_.y; // Diferencia real entre ROW1 y ROW2