From 86b8d02777af7cef0f0daba89289c2dbf11f93d1 Mon Sep 17 00:00:00 2001 From: Tipragot Date: Sun, 5 Nov 2023 21:23:47 +0100 Subject: [PATCH] Ajout son --- src/scenes/story/boss_fight.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/scenes/story/boss_fight.py b/src/scenes/story/boss_fight.py index 6f816e0..82ffa43 100644 --- a/src/scenes/story/boss_fight.py +++ b/src/scenes/story/boss_fight.py @@ -423,7 +423,7 @@ def __create_zone_attack(world: World, number: int = 2): ) yield animation.wait() entity.destroy() - world.new_entity().set(Sound(world[Assets].get_sound("zone"))) + world.new_entity().set(Sound(world[Assets].get_sound("zone"), volume=0.5)) for i in range(10): projectile = world.new_entity() @@ -468,6 +468,7 @@ def __create_zone_attack(world: World, number: int = 2): yield wait(1.75) for entity in world.query(ZoneAttack): entity.destroy() + world.new_entity().set(Sound(world[Assets].get_sound("zone"), volume=0.5)) for _z in range(2): for i in range(10): projectile = world.new_entity()