我是 python 新手,我正在尝试用 pygame 做一些事情,但不知道我该怎么做..
def addRect(x, y, width, height, color, surface):
rect = pygame.Rect(x, y, width, height)
pygame.draw.rect(surface, color, rect)
pygame.display.flip()
那是为了创建矩形,但我的问题是我应该如何访问我创建的 ractangles?我正在尝试类似的东西。
r1 = addRect(20, 40, 200, 200, (61, 61, 61), screen)
但是当我尝试使用它移动它时
r1.move(10,10)
我收到一个错误
r1.move(10,10) AttributeError: 'NoneType' 对象没有属性 'move'
我应该如何访问它?谢谢-