diff --git a/functions.py b/functions.py index 5e38454..41318e5 100644 --- a/functions.py +++ b/functions.py @@ -4,7 +4,6 @@ from boombox import BoomBox counter = 0 # determans which image is shown - def alien_select(index, omnitrix_button): BoomBox("res/sound_switch.mp3").play() global counter @@ -15,17 +14,14 @@ def alien_select(index, omnitrix_button): omnitrix_button.image = img # keep a reference # controls how much up or down the list you go - def button_press(): BoomBox("res/sound_transformation.mp3").play() # whenever the "middle_button" button is pressed play sound effect - def start(): BoomBox("res/sound_startup.mp3").play() # when program first starts up, plays sound effect - def image_display(index): alien = alien_table(index) if(alien == 0): diff --git a/omnitrix.py b/omnitrix.py index 86e012c..87787d1 100644 --- a/omnitrix.py +++ b/omnitrix.py @@ -6,7 +6,6 @@ from PIL import ImageTk, Image start() # start up sound effect - root = Tk() background = StringVar() background.set("#70b607")