@jaren
Чтобы создать иконку игры в pygame, вам нужно следующее:
Пример кода:
1
|
import py
|
@jaren
import pygame
pygame.init()
screen = pygame.display.set_mode((800, 600))
icon = pygame.image.load("icon.png")
pygame.display.set_icon(icon)
running = True while running: for event in pygame.event.get(): if event.type == pygame.QUIT: running = False
1 2 3 |
# Отрисовка экрана screen.fill((255, 255, 255)) pygame.display.update() |
pygame.quit()