From 54a17d969c85e150486e0960e90ab166e945c359 Mon Sep 17 00:00:00 2001 From: Viljami Ilola <+@hix.fi> Date: Fri, 26 Apr 2024 12:08:06 +0300 Subject: initial music --- src/sliceitoff/game/explodeout.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/sliceitoff/game/explodeout.py') diff --git a/src/sliceitoff/game/explodeout.py b/src/sliceitoff/game/explodeout.py index 34bd9fe..6cebec5 100644 --- a/src/sliceitoff/game/explodeout.py +++ b/src/sliceitoff/game/explodeout.py @@ -1,6 +1,7 @@ """ game.explodeout - For showing explogind effect and waiting for a key """ import pygame +from sliceitoff.sfx import sfx from .anykey import anykey class ExplodeOutGroup(pygame.sprite.Group): @@ -31,4 +32,5 @@ class ExplodeOutGroup(pygame.sprite.Group): def do_fadeout(self): """ Just kicks off exploding phase """ + sfx.play("glass") self.explode = True -- cgit v1.2.3