有没有办法在得分时将球的位置更改为中锋?
if fireBall.rect.x>=690:
score_1+=1
fireBall.ballspeed[0] = -fireBall.ballspeed[0]
if fireBall.rect.x<=0:
score_2+=1
fireBall.ballspeed[0] = -fireBall.ballspeed[0]
if fireBall.rect.y>490:
fireBall.ballspeed[1] = -fireBall.ballspeed[1]
if fireBall.rect.y<0:
fireBall.ballspeed[1] = -fireBall.ballspeed[1]
我正在制作乒乓球比赛,我希望当球员得分时球在中锋重新启动,但是我的代码使球即使在得分后也可以继续前进。
if fireBall.rect.x>=690:
score_1+=1
fireBall.ballspeed[0] = -fireBall.ballspeed[0]
if fireBall.rect.x<=0:
score_2+=1
fireBall.ballspeed[0] = -fireBall.ballspeed[0]
if fireBall.rect.y>490:
fireBall.ballspeed[1] = -fireBall.ballspeed[1]
if fireBall.rect.y<0:
fireBall.ballspeed[1] = -fireBall.ballspeed[1]
I am making a ping pong game, I wanted the ball to restart at the centre when the player scores, but my code allows the ball to carry on moving even after they have scored.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
pygame.display.get_surface()。get_rect()。中心
获得窗口的中心。例如:You can get the the center of the window with
pygame.display.get_surface().get_rect().center
. e.g.: