From 9955a827a7442d86a16ff0c7641e6002e74406b8 Mon Sep 17 00:00:00 2001 From: Aaron Fenyes Date: Sat, 28 Sep 2019 21:21:46 +0200 Subject: [PATCH] Show controls --- interactions.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/interactions.py b/interactions.py index fe23672..e5c8084 100644 --- a/interactions.py +++ b/interactions.py @@ -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: