其他分享
首页 > 其他分享> > Pygame _ 上下弹跳的小球

Pygame _ 上下弹跳的小球

作者:互联网

参考资料:

《Python游戏趣味编程》童晶

------------------------------------------------------------------------

import pgzrun

y=100
speed=3
def draw():
screen.fill("white")
screen.draw.filled_circle((400,y),30,"red")
def update():
global y,speed
y=y+speed
if y>= 570:
speed = -speed
if y<=30:
speed = -speed
pgzrun.go()

--------------------------------------------------------------

if y<=30:
speed = -speed

这部分的添加是为了让小球达到上边界后继续反弹。否则,会离开边界消失。

最后效果是持续反弹。

 

标签:------------------------------------------------------------------------,draw,边界
来源: https://www.cnblogs.com/jane5946/p/15361739.html