标签: python pygame
update()需要1个位置参数,但是给出了2个
如何解决此错误?
all_sprites.update(dt)
它只有1个参数,但是说我有2个?
答案 0 :(得分:2)
您的精灵的update方法已经有self作为参数。如果要向其传递其他值,则必须将它们添加到函数定义中。例如:
update
self
def update(self, dt):