Skip to content

Flappy Bird Game

Notifications You must be signed in to change notification settings

Tynab/Flappy-Bird

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FLAPPY BIRD GAME

The Flappy Bird game project is built with the versatile Godot Engine, perfect for players and aspiring developers alike.

LINK DEMO

IMAGE DEMO

CODE DEMO

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)