CommonName 发表于 2019-11-27 01:09:30

改变image的rect的left和top常用的变量方法报错

pause_image1 = pygame.image.load('pause1.png').convert_alpha()
play_image1 = pygame.image.load('play1.png').convert_alpha()
pause_rect = pause_image1.get_rect()
pause_rect.left,pause_rect.top = (width - pause_rect.width) // 2,(height - pause_rect.height) // 2
position1 = pause_rect
position2 = play_image1_rect = play_image1.get_rect() 中的pause_rect.left,pause_rect.top = (width - pause_rect.width) // 2,(height - pause_rect.height) // 2 提示不支持元组和整数运算 但是之前这样变量都没报错过.

zltzlt 发表于 2019-11-27 20:47:31

pause_rect.width 和 pause_rect.height 都是元组。
页: [1]
查看完整版本: 改变image的rect的left和top常用的变量方法报错