1 Star 0 Fork 1

Legend/FlappyBird

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
bird.py 735 Bytes
一键复制 编辑 原始数据 按行查看 历史
Legend 提交于 2020-05-22 19:13 . works
import pyglet
from pyglet.window import key
from config import *
class Bird(pyglet.sprite.Sprite):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.y = 400
self.x = 400
self._die = False
self.v = 0.0
def update(self, t):
t = t * 60
dy = self.v * t + 0.5 * g * t ** 2
self.v = self.v + g * t
self.y = self.y + dy
if self.v < 0:
self.rotation = (self.v / -16) * 45
else:
self.rotation = (self.v / 16) * (-45)
def on_key_press(self, symbol, modifiers):
if symbol == key.SPACE and self._die is False:
self.v = -16 * g
def die(self):
self._die = True
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liux-pro/FlappyBird.git
git@gitee.com:liux-pro/FlappyBird.git
liux-pro
FlappyBird
FlappyBird
master

搜索帮助