https://github.com/tynab/flappy-bird
Flappy Bird Game
https://github.com/tynab/flappy-bird
2d engine flappy-bird flappy-bird-game game game-2d game-engine gd gdscript godot godot-engine html javascript js python tynab webgl yami-an yami-an-nephilim yan
Last synced: about 2 months ago
JSON representation
Flappy Bird Game
- Host: GitHub
- URL: https://github.com/tynab/flappy-bird
- Owner: Tynab
- Created: 2024-04-07T19:04:27.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-08-22T00:27:31.000Z (10 months ago)
- Last Synced: 2026-03-27T19:44:21.404Z (3 months ago)
- Topics: 2d, engine, flappy-bird, flappy-bird-game, game, game-2d, game-engine, gd, gdscript, godot, godot-engine, html, javascript, js, python, tynab, webgl, yami-an, yami-an-nephilim, yan
- Language: JavaScript
- Homepage: https://tynab.github.io/Flappy-Bird/build
- Size: 9.31 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# FLAPPY BIRD GAME
The Flappy Bird game project is built with the versatile Godot Engine, perfect for players and aspiring developers alike.
## LINK DEMO
[Click here to play the game](https://tynab.github.io/Flappy-Bird/build)
## IMAGE DEMO
## CODE DEMO
```js
func generate_pipes():
var pipe = pipe_scene.instantiate()
pipe.position.x = screen_size.x + PIPE_DELAY
pipe.position.y = (screen_size.y - ground_height) / 2.0 + randi_range(-PIPE_RANGE, PIPE_RANGE)
pipe.hit.connect(bird_hit)
pipe.scored.connect(scored)
add_child(pipe)
pipes.append(pipe)
```