gpt4 book ai didi

python - 有什么方法可以让 "clear"成为一个表面吗?

转载 作者:太空狗 更新时间:2023-10-29 22:14:28 27 4
gpt4 key购买 nike

有什么方法可以清除表面上的任何东西?

最佳答案

如果您想要使 pygame Surface 对象“干净”,即删除所有 blit 到它的图像,在每个游戏循环中将新图像 blit 到它并保持对等像素 alpha 而无需创建新表面,您可以填充它,但不是纯色,而是使用透明色

from pygame import Color, Surface
empty = Color(0,0,0,0) #The last 0 indicates 0 alpha, a transparent color
field = Surface((width, height), flags=SRCALPHA)

#Inside the game loop
field.fill(empty)

*对不起,我的英语不好,还在学习中

关于python - 有什么方法可以让 "clear"成为一个表面吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1634509/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com