Skip to content

Commit

Permalink
menu theme
Browse files Browse the repository at this point in the history
  • Loading branch information
cflavio committed Feb 9, 2017
1 parent 7992530 commit fdf1236
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 2 deletions.
Binary file removed assets/music/Alan Walker - Fade.ogg
Binary file not shown.
Binary file added assets/music/Start Your Engines.ogg
Binary file not shown.
Binary file removed assets/music/menu.ogg
Binary file not shown.
3 changes: 2 additions & 1 deletion menu/creditpage.py
Expand Up @@ -10,8 +10,9 @@ def build_page(self):
self.widgets += [txt]
flavio = _('Code')+': Flavio Calva'
luca = _('Art')+': Luca Quartero'
jay = _('Audio')+': Jay Bachelor'
dario = _('Testing')+': Dario Murgia'
text = '\n\n'.join([flavio, luca, dario])
text = '\n\n'.join([flavio, luca, jay, dario])
self.widgets[0]['text'] = text
PageGui.build_page(self)

Expand Down
2 changes: 1 addition & 1 deletion yorg/audio.py
Expand Up @@ -5,6 +5,6 @@ class _Audio(Audio):

def __init__(self, mdt):
Audio.__init__(self, mdt)
self.menu_music = loader.loadSfx('assets/music/Alan Walker - Fade.ogg')
self.menu_music = loader.loadSfx('assets/music/Start Your Engines.ogg')
self.game_music = loader.loadSfx('assets/music/on_the_other_side.ogg')
map(lambda mus: mus.set_loop(True), [self.menu_music, self.game_music])

0 comments on commit fdf1236

Please sign in to comment.