我正在尝试制作一个圆形动画,并希望它在窗口内弹跳只是为了练习。有人告诉我pygame.draw.rect
返回一个Rect
对象,但是,我编写了这个小代码来查看它是否有效,但它没有。圆圈没有像预期的那样每次迭代向下移动一个像素。可能是什么问题?
import pygame, sys
from pygame.locals import *
pygame.init()
screen = pygame.display.set_mode((600, 500), 0, 32)
mainClock = pygame.time.Clock()
screen.lock()
circleRect = pygame.draw.circle(screen, (255, 255, 255), (100, 200), 40)
screen.unlock()
while True:
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
sys.exit()
circleRect.top += 1
pygame.display.update()
mainClock.tick(40)