()
| 242 | surface.blit(image_surface, (1000, 0)) |
| 243 | |
| 244 | def get_font(): |
| 245 | fonts = [x for x in pygame.font.get_fonts()] |
| 246 | default_font = 'ubuntumono' |
| 247 | font = default_font if default_font in fonts else fonts[0] |
| 248 | font = pygame.font.match_font(font) |
| 249 | return pygame.font.Font(font, 14) |
| 250 | |
| 251 | |
| 252 | def create_main_actors(start_pose, waypoint): |