Show controls

This commit is contained in:
Aaron Fenyes 2019-09-28 21:21:46 +02:00
parent 217bdbec67
commit 9955a827a7
1 changed files with 4 additions and 0 deletions

View File

@ -103,6 +103,10 @@ if __name__ == '__main__':
# set up background
background = pygame.Surface(screen.get_size()).convert()
background.fill((32, 32, 32))
text = font.render('press [j] or [k] to pluck', True, (255, 255, 255))
background.blit(text, (340, viewsize))
text = font.render('hold [space] to drain', True, (255, 255, 255))
background.blit(text, (340, 30 + viewsize))
to_light = 0
while True: