Show controls
This commit is contained in:
parent
217bdbec67
commit
9955a827a7
@ -103,6 +103,10 @@ if __name__ == '__main__':
|
|||||||
# set up background
|
# set up background
|
||||||
background = pygame.Surface(screen.get_size()).convert()
|
background = pygame.Surface(screen.get_size()).convert()
|
||||||
background.fill((32, 32, 32))
|
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
|
to_light = 0
|
||||||
while True:
|
while True:
|
||||||
|
Loading…
Reference in New Issue
Block a user