bg geändert, borders abgeschalten, highscore platzierung verschoben

This commit is contained in:
Raphael 2019-10-29 11:53:15 +01:00
parent d440d24309
commit 531f166580
2 changed files with 5 additions and 5 deletions

View File

@ -479,24 +479,24 @@ def enter_name():
# add all needed surfaces
highscore_surface = pygame_font_1.render('High Score!', True, pygame_font_main_color)
highscore_rectangle = highscore_surface.get_rect()
highscore_rectangle.topleft = (700, 250)
highscore_rectangle.topleft = (700, 350)
screen.blit(highscore_surface, highscore_rectangle)
textbox_text_surface = pygame_font_2.render('Enter Name:', True, pygame_font_main_color)
textbox_text_rectangle = textbox_text_surface.get_rect()
textbox_text_rectangle.topleft = (700, 400)
textbox_text_rectangle.topleft = (700, 500)
textbox_surface = pygame_font_2.render(str(name), True, pygame_font_main_color)
textbox_rectangle = textbox_surface.get_rect()
textbox_rectangle.topleft = (800, 480)
textbox_rectangle.topleft = (800, 580)
# draw everything
screen.blit(textbox_text_surface, textbox_text_rectangle)
screen.blit(textbox_surface, textbox_rectangle)
# add the border and logos
draw_border()
#draw_border()
draw_logos()
# display everything
@ -852,7 +852,7 @@ while True:
pass
# overlaying structure - this is to be drawn no matter what's below
draw_border()
#draw_border()
draw_logos()
# flip everything, update display, do a tick

Binary file not shown.

Before

Width:  |  Height:  |  Size: 354 KiB

After

Width:  |  Height:  |  Size: 320 KiB