gpt4 book ai didi

python - PyGame 循环,每个循环中创建的 Sprite 不更新

转载 作者:太空宇宙 更新时间:2023-11-03 16:53:36 24 4
gpt4 key购买 nike

我正在创建一个物理模拟来模拟卢瑟福散射实验。我试图在每次循环运行时创建一个 alpha 粒子( Sprite ),并且我能够创建它(显示在屏幕上),但它不会向前移动,而如果我只创建一个粒子,它工作得很好。

我已经附加了 Sprite 的类和创建它的位置的循环。

循环:

while running:
clock.tick(20)
allparticles = pygame.sprite.Group(Particle(speed, bwidthmin, bwidthmax, background))
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False

allparticles.clear(screen, background)
nucgroup.draw(screen)
allparticles.update()
allparticles.draw(screen)
pygame.display.flip()

Sprite 类:

class Particle(pygame.sprite.Sprite):
def __init__(self, speed, bwidthmin, bwidthmax, background):
pygame.sprite.Sprite.__init__(self)
self.background = background
self.image = pygame.Surface((16,16))
self.rect = self.image.get_rect()
currenty = random.randint(bwidthmin,bwidthmax)
self.rect.centery = currenty
self.rect.centerx = 0
pygame.draw.circle(self.image, yellow, (8,8), 5)

self.dx=speed
self.dy = 0
def update(self):
c1 = (self.rect.centerx,self.rect.centery)
self.rect.centerx += self.dx
if self.rect.right >= 570:
pygame.sprite.Sprite.kill(self)
pygame.draw.line(self.background, white, c1, (self.rect.centerx,self.rect.centery), 1)

我哪里出错了?

我的 tkinter 窗口也有问题,其中这个 pygame 嵌入挂起(按钮未按下,选项卡未更改,在 pygame 停止之前无法执行任何操作)。循环永远运行是否会导致这种情况发生?我希望能够更新变量以在运行时影响模拟,或者这是不可能的吗?

感谢您的帮助。

最佳答案

一个问题是您每次循环都会覆盖allarticles。也许您的意思是继续创建粒子并附加到列表中?

试试这个:

allparticles = []
while running:
clock.tick(20)
allparticles.append(pygame.sprite.Group(Particle(speed, bwidthmin, bwidthmax, background)))
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False

for particle in allparticles: # loop over all particles each time
particle.clear(screen, background)
nucgroup.draw(screen)
particle.update()
particle.draw(screen)
pygame.display.flip()

关于python - PyGame 循环,每个循环中创建的 Sprite 不更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35642729/

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