pygame如何正确旋转图像?
在 pygame 中,我无法旋转图像/表面。图像绘制正确,只是没有旋转。
self.other1 = pygame.image.load("enemy.png").convert_alpha()
self.other2 = pygame.transform.rotate(self.other1, math.radians(270))
self.screen.blit(self.other2, (0, 0))
我究竟做错了什么?
In pygame I am unable to rotate an image/surface. The image is drawing properly just not rotating.
self.other1 = pygame.image.load("enemy.png").convert_alpha()
self.other2 = pygame.transform.rotate(self.other1, math.radians(270))
self.screen.blit(self.other2, (0, 0))
What exactly am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1.- 您使用的是哪个版本(pygame 和 python)?
2.- 你不需要弧度
3.- 你必须指定一个问题,你的描述似乎不明确
无论如何,我在这里留下一个例子。祝你好运。
1.- Which version are you using (both pygame and python)?
2.- You don't need radians
3.- You must specify a problem your description seems ambiguous
Anyway I leave an example here. Good luck.