Pygame.transform.rotate错误

时间:2011-06-26 19:27:42

标签: python pygame

我试图在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()))

1 个答案:

答案 0 :(得分:1)

错误非常明显。 http://www.pygame.org/docs/ref/transform.html#pygame.transform.scale说第二个参数应该是(宽度,高度)。 math.radians()只返回一个浮点数。