Pygame.transform.rotate 错误

发布于 2024-11-17 09:25:04 字数 308 浏览 1 评论 0原文

我试图在 pygame 中缩放曲面,但收到此错误:

pygame.transform.scale(sprite.getSurface(), math.radians(sprite.getFaceAngle()))
TypeError: must be 2-item sequence, not float

我的代码如下:

pygame.transform.scale(sprite.getSurface(), math.radians(sprite.getFaceAngle()))

I am attempting to scale a surface in pygame but I am getting this error:

pygame.transform.scale(sprite.getSurface(), math.radians(sprite.getFaceAngle()))
TypeError: must be 2-item sequence, not float

My code is as follows:

pygame.transform.scale(sprite.getSurface(), math.radians(sprite.getFaceAngle()))

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眸中客 2024-11-24 09:25:04

这个错误是不言自明的。 http://www.pygame.org/docs/ref/transform .html#pygame.transform.scale 表示第二个参数应该是(宽度,高度)。 math.radians() 仅返回浮点数。

The error is pretty self-explanatory. http://www.pygame.org/docs/ref/transform.html#pygame.transform.scale says the second argument should be (width, height). math.radians() only returns a float.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文