X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fscenes%2Fcredits.py;h=a522c986c1207ba6a97e7e84bac9bb56475eaabe;hb=ff24720437195d52b96dbd4e76a49b78881d3378;hp=ab330bfd9fb5be28f16c35251789a255203c6162;hpb=2aa6c09889e4ffa2994c5f3a0aeb351ee3d6053e;p=naja.git diff --git a/naja/scenes/credits.py b/naja/scenes/credits.py index ab330bf..a522c98 100644 --- a/naja/scenes/credits.py +++ b/naja/scenes/credits.py @@ -1,3 +1,4 @@ +# coding: UTF-8 """ Credits scene. """ @@ -22,25 +23,32 @@ class CreditsScene(Scene): background = ImageBox( (0, 0), "screens/splash.png") self.add(background) - self.add(TextWidget((344, 300), 'CREDITS', colour='white')) + self.add(TextWidget( + (400, 300), 'CREDITS', colour='white', centre=True)) self.add(TextBoxWidget( - (10, 350), '\n'.join([ + (400, 340), '\n'.join([ 'A game about robots and bits and other things', '', 'by', '', - 'Adrianna Pinska, David Sharpe, Jeremy Thurgood, ' - 'Neil Muller, Simon Cross & Stefano Rivera', + u'Adrianna Pińska, David Sharpe, Jeremy Thurgood, ' + u'Neil Muller, Simon Cross & Stefano Rivera', + '', + 'Special thanks to:', + '', + 'Desilu Crossman', + 'for snacks and tutorial inspiration', '', 'Music by Rolemusic:', 'http://rolemusic.sawsquarenoise.com/', '', - 'Press ESC to return to the menu.', + 'Out of credits. Insert coin.', + '(Press ESC to return to the menu.)', ]), colour='white', padding=1, bg_colour=(0, 0, 0, 0), centre=True, - box_width=640, view_port=(780, 230))) + box_width=780, view_port=(780, 250))) def handle_scene_event(self, ev): if ev.type == pgl.KEYDOWN and ev.key in KEYS.QUIT: