Answers for "How to change the icon of a pygame window"

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
1

pygame change icon

import pygame

win = pygame.display.set_mode((500, 500))
pygame.display.set_caption('Hello World')
icon = pygame.image.load("<< <<image_Nmae>>.<<extension>> >>")
pygame.display.set_icon(icon)
Posted by: Guest on September-24-2020

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

Python Answers by Framework

Browse Popular Code Answers by Language