小白随笔5946

导航

2021年10月5日 #

Pygame_一个图形绕着另一个旋转-anchor的使用

摘要: WIDTH= 800HEIGHT= 600 sun= Actor("sun")earth= Actor("earth",anchor = (100+50,250+50)) sun.x= WIDTH/2sun.y = HEIGHT/2earth.x=WIDTH/2earth.x=WIDTH/2 def 阅读全文

posted @ 2021-10-05 22:11 小白随笔5946 阅读(395) 评论(0) 推荐(0) 编辑

Pygame_过关自动加速

摘要: HEIGHT = 600 # 设置窗口的高度 background = Actor('background') # 导入背景图片bird = Actor('bird') # 导入小鸟图片bird.x = 50 # 设置小鸟的x坐标bird.y = HEIGHT/2 # 设置小鸟的y坐标bar_up 阅读全文

posted @ 2021-10-05 15:00 小白随笔5946 阅读(105) 评论(0) 推荐(0) 编辑

pygame_鼠标动作生成弹跳小球(函数传值)

摘要: import pgzrunimport randomWIDTH = 800HEIGHT = 600 balls=[] def ball_add(x,y): speedx= random.randint(1,4) speedy=random.randint(1,4) r=random.randint( 阅读全文

posted @ 2021-10-05 11:48 小白随笔5946 阅读(184) 评论(0) 推荐(0) 编辑