TypeError:参数1必须是pygame.surface,不列表-Pygame.transform.flip()
我正在研究动画,并使用pygame.transform.flip在某种情况下使角色向后运行。 问题在于pygame.transform.flip()方法仅接受pygame.surface type,而这是一个问题,因为我的动画运行了一个列表
self.run_scaled = [pygame.transform.scale(self.animation_run[i], (self.width, self.height)) for i in
range(len(self.animation_run))]
for i in range(len(self.animation_run)):
WIN.blit(pygame.transform.flip(self.run_scaled, True, False), (x, y))
I'm working on movement animations and using pygame.transform.flip to make the character run backward if some condition happens.
the problem is that the pygame.transform.flip() method is accepting pygame.Surface type only and that a problem because my animation running trough a list
self.run_scaled = [pygame.transform.scale(self.animation_run[i], (self.width, self.height)) for i in
range(len(self.animation_run))]
for i in range(len(self.animation_run)):
WIN.blit(pygame.transform.flip(self.run_scaled, True, False), (x, y))
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须获取一个项目表格列表:
win.blit(pygame.transform.flip(self.run_scaled,true,false),(x,y))
You have to get an item form the list:
WIN.blit(pygame.transform.flip(self.run_scaled, True, False), (x, y))