From: Neil Date: Fri, 16 May 2014 22:13:41 +0000 (+0200) Subject: Less whimisical credits X-Git-Tag: 0.1~169 X-Git-Url: https://git.ctpug.org.za/?p=naja.git;a=commitdiff_plain;h=ef4b550c67373fa1c56cdc5a0727618ba5462e10 Less whimisical credits --- diff --git a/naja/scenes/credits.py b/naja/scenes/credits.py index 415f0b9..0425963 100644 --- a/naja/scenes/credits.py +++ b/naja/scenes/credits.py @@ -18,18 +18,24 @@ class CreditsScene(Scene): def __init__(self, state): super(CreditsScene, self).__init__(state) self.add(TextWidget( - (480, 160), 'Credits', fontsize=32, colour='white')) + (280, 30), 'Credits', fontsize=32, colour='white')) + self.add(TextWidget( + (20, 80), 'A game about robots and bits and other things', + fontsize=32, colour='white')) + self.add(TextWidget( + (300, 120), 'by', fontsize=32, colour='white')) + self.add(TextBoxWidget( + (20, 160), 'Adrianna Pinska, David Sharpe, Jeremy Thurgood, ' + 'Neil Muller, Simon Cross & Stefano Rivera', + fontsize=32, colour='white', padding=1, border=1, + bg_colour='black', border_colour='black', + box_width=320)) self.add(TextBoxWidget( - (120, 30), '\n'.join([ - 'Your mom A stranger', - 'A', - 'bag full of snakes', - 'A host of really bored bronies', - 'And FIVE GOLDEN RIIIIINGS!' - ]), fontsize=32, - colour='white', padding=1, border=1, + (30, 280), + 'Music by Rolemusic: http://rolemusic.sawsquarenoise.com/', + fontsize=32, colour='white', padding=1, border=1, bg_colour='black', border_colour='black', - box_width=100)) + box_width=320)) def handle_scene_event(self, ev): if ev.type == pgl.KEYDOWN and ev.key in KEYS.QUIT: