literally nothing

This commit is contained in:
superdimensional 2021-05-05 06:19:10 -04:00
parent 138fdd3166
commit 8ebe183e48
2 changed files with 0 additions and 5 deletions

View file

@ -4,7 +4,6 @@ from boombox import BoomBox
counter = 0 counter = 0
# determans which image is shown # determans which image is shown
def alien_select(index, omnitrix_button): def alien_select(index, omnitrix_button):
BoomBox("res/sound_switch.mp3").play() BoomBox("res/sound_switch.mp3").play()
global counter global counter
@ -15,17 +14,14 @@ def alien_select(index, omnitrix_button):
omnitrix_button.image = img # keep a reference omnitrix_button.image = img # keep a reference
# controls how much up or down the list you go # controls how much up or down the list you go
def button_press(): def button_press():
BoomBox("res/sound_transformation.mp3").play() BoomBox("res/sound_transformation.mp3").play()
# whenever the "middle_button" button is pressed play sound effect # whenever the "middle_button" button is pressed play sound effect
def start(): def start():
BoomBox("res/sound_startup.mp3").play() BoomBox("res/sound_startup.mp3").play()
# when program first starts up, plays sound effect # when program first starts up, plays sound effect
def image_display(index): def image_display(index):
alien = alien_table(index) alien = alien_table(index)
if(alien == 0): if(alien == 0):

View file

@ -6,7 +6,6 @@ from PIL import ImageTk, Image
start() start()
# start up sound effect # start up sound effect
root = Tk() root = Tk()
background = StringVar() background = StringVar()
background.set("#70b607") background.set("#70b607")