作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
关于documentation page对于 pygame.display.update()
,它表示您可以将一个矩形传递到方法中以更新屏幕的一部分。但是,我看到的所有示例都只是从程序中的图像或形状传递现有的矩形。我怎样才能告诉它直接更新屏幕上的区域?例如,在绘制矩形时,我可以使用 (100,200,30,40)
的 rect 参数。这将绘制一个顶部为 200、左侧为 100、宽度为 30、高度为 40 的矩形。如何将类似的参数传递给 pygame.display.update()
?我尝试了 pygame.display.update((100,200,30,40))
,但这会更新整个窗口。
最佳答案
只需定义一个rect并将其传递给 pygame.display.update()
仅更新显示的这个特定区域。您还可以传递矩形列表。
import random
import pygame as pg
from pygame.math import Vector2
# A simple sprite, just to have something moving on the screen.
class Ball(pg.sprite.Sprite):
def __init__(self, screen_rect):
super().__init__()
radius = random.randrange(5, 31)
self.image = pg.Surface((radius*2, radius*2), pg.SRCALPHA)
pg.draw.circle(self.image, pg.Color('dodgerblue1'), (radius, radius), radius)
pg.draw.circle(self.image, pg.Color('dodgerblue3'), (radius, radius), radius-2)
self.rect = self.image.get_rect(center=screen_rect.center)
self.vel = Vector2(random.uniform(-2, 2), random.uniform(-2, 2))
self.pos = Vector2(self.rect.center)
self.screen_rect = screen_rect
self.lifetime = 350
def update(self):
self.pos += self.vel
self.rect.center = self.pos
self.lifetime -= 1
if not self.screen_rect.contains(self.rect) or self.lifetime <= 0:
self.kill()
def main():
screen = pg.display.set_mode((800, 600))
screen.fill((20, 40, 70))
pg.display.update()
screen_rect = screen.get_rect()
clock = pg.time.Clock()
all_sprites = pg.sprite.Group()
# Pass this rect to `pg.display.update` to update only this area.
update_rect = pg.Rect(50, 50, 500, 400)
done = False
while not done:
for event in pg.event.get():
if event.type == pg.QUIT:
done = True
all_sprites.add(Ball(screen_rect))
all_sprites.update()
screen.fill((20, 50, 90))
all_sprites.draw(screen)
# Update only the area that we specified with the `update_rect`.
pg.display.update(update_rect)
clock.tick(60)
if __name__ == '__main__':
pg.init()
main()
pg.quit()
关于python-3.x - 如何将一个矩形传递给 pygame.display.update() 以更新窗口的特定区域?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48711791/
我是一名优秀的程序员,十分优秀!