我正在尝试在 pygame 屏幕上创建一个透明表面,但不幸的是无法正常工作。主表面显示正常,但我试图生成的表面根本不显示。
import pygame as pg
from pygame.locals import *
pg.display.init()
h = 640
w = 480
_display = pg.display.set_mode((h,w))
_display.fill(pg.Color(0,0,0))
_active_surface = pg.Surface((h,w))
#_active_surface.set_colorkey((255,0,255))
_active_surface.fill(pg.Color(255,0,255))
_display.blit(_active_surface, (h,w))
while True:
for i in pg.event.get():
if i.type == QUIT:
pg.quit()
pg.display.flip()