Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 645 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 645 Bytes

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)