corregida velocitat_y en createChild()

This commit is contained in:
2025-09-24 11:42:48 +02:00
parent c9a29e26dd
commit 232a23a5dd

View File

@@ -217,7 +217,7 @@ void BalloonManager::createChildBalloon(const std::shared_ptr<Balloon> &balloon,
auto b = createBalloon(config); auto b = createBalloon(config);
// Establece parametros (deltaTime en segundos - velocidades en pixels/segundo) // Establece parametros (deltaTime en segundos - velocidades en pixels/segundo)
constexpr float VEL_Y_BALLOON_PER_S = -9.0F; // -0.15 pixels/ms convertido a pixels/segundo (-0.15 * 60 = -9) constexpr float VEL_Y_BALLOON_PER_S = -150.0F; // -2.50 pixels/frame convertido a pixels/segundo (-2.50 * 60 = -150)
b->setVelY(b->getType() == Balloon::Type::BALLOON ? VEL_Y_BALLOON_PER_S : Balloon::VELX_NEGATIVE * 2.0F); b->setVelY(b->getType() == Balloon::Type::BALLOON ? VEL_Y_BALLOON_PER_S : Balloon::VELX_NEGATIVE * 2.0F);
// Herencia de estados // Herencia de estados