feat(orb): contra-atac amb bullet_double dirigida al jugador en rebre impacte

This commit is contained in:
2026-05-26 18:53:34 +02:00
parent a77bbe4420
commit 885caa6bc3
7 changed files with 174 additions and 10 deletions
+1 -1
View File
@@ -114,6 +114,6 @@ void Bullet::desactivar() {
void Bullet::draw() const {
if (is_active_ && shape_) {
Rendering::renderShape(renderer_, shape_, center_, angle_, 1.0F, 1.0F, brightness_, config_->colors.normal);
Rendering::renderShape(renderer_, shape_, center_, angle_, config_->shape.scale, 1.0F, brightness_, config_->colors.normal);
}
}