An open API service indexing awesome lists of open source software.

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

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)
```