pneuma-pygame/utils/debug.py

14 lines
362 B
Python
Raw Permalink Normal View History

2024-05-16 23:15:22 +00:00
import pygame
pygame.init()
font = pygame.font.Font(None, 30)
def debug(info, y=10, x=10):
display_surface = pygame.display.get_surface()
debug_surf = font.render(str(info), True, 'White')
debug_rect = debug_surf.get_rect(topleft=(x, y))
pygame.draw.rect(display_surface, 'Black', debug_rect)
display_surface.blit(debug_surf, debug_rect)