Answers for "how to change the icon of a window in pygame"

6

how to set the icon of the window in pygame

icon = pygame.image.load('icon.png')
pygame.display.set_icon(icon)
Posted by: Guest on February-12-2021
1

how to change pygame window icon

pygame.display.set_icon(pygame.image.load('icon.png'))
Posted by: Guest on August-11-2021

Code answers related to "how to change the icon of a window in pygame"

Python Answers by Framework

Browse Popular Code Answers by Language