Less whimisical credits
authorNeil <neil@dip.sun.ac.za>
Fri, 16 May 2014 22:13:41 +0000 (00:13 +0200)
committerNeil <neil@dip.sun.ac.za>
Fri, 16 May 2014 22:13:50 +0000 (00:13 +0200)
naja/scenes/credits.py

index 415f0b9835410658b110a7967848199296684217..0425963591d833c78cde9a118d12f39b05ff07b7 100644 (file)
@@ -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: