AttributeError: 'pygame.math.Vector2' object has no attribute 'rotate_rad'
时间: 2023-12-06 18:38:54 浏览: 265
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误是因为 pygame.math.Vector2 类型的对象没有名为 rotate_rad() 的方法。如果您想要旋转一个 Vector2 对象,可以使用 rotate() 方法。下面是一个例子:
```python
import pygame
# 创建一个 Vector2 对象
vec = pygame.math.Vector2(1, 0)
# 将 Vector2 对象旋转 45 度
vec.rotate(45)
# 输出旋转后的 Vector2 对象
print(vec)
```
阅读全文