Pygame Blit 一次?

Posted

技术标签:

【中文标题】Pygame Blit 一次?【英文标题】:Pygame Blit Once? 【发布时间】:2014-10-04 15:52:45 【问题描述】:

我正在使用 Pygame 并将图像导入到表面然后使用 blit 命令: screen.blit(surface,(x,y)) 但它一直在堆叠表面上,我怎样才能在 1 个表面上停止它?

【问题讨论】:

在更新之间做一个screen.fill() 非常感谢 :D :D :D :D 【参考方案1】:

您必须在每次更新之间添加背景。

_________CODE___________
Character.update()
screen.fill(background) # or screen.fill((0,0,0)) for a black background
__________CODE___________

【讨论】:

非常感谢 :D :D :D :D

以上是关于Pygame Blit 一次?的主要内容,如果未能解决你的问题,请参考以下文章

python pygame blit 函数

(Pygame).blit将不显示While功能

Pygame blit图像与鼠标事件

当 win.blit() 后台 pygame 时滞后

当 win.blit() 后台 pygame 时滞后

pygame.surface.blit()方法4个参数的使用方法