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

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

最后效果是持续反弹。

 

上一篇:【平衡小车制作】(八)蓝牙遥控及平衡成果展示(超详解)


下一篇:面向对象笔记1:类与对象&this 关键字