Answers for "how to set icon for 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
4

how to make a custom icon for pygame

gameIcon = pygame.image.load('carIcon.png')
pygame.display.set_icon(gameIcon)
Posted by: Guest on May-21-2020

Python Answers by Framework

Browse Popular Code Answers by Language