Flappy Bird Arcade

Here’s my attempt at remaking Flappy Bird for Makecode Arcade:

Credits
{"Source Colors" : "https://lospec.com/palette-list/nestopia"}
4 Likes

very impressive! it was very fun!

By the way, this should work with real hardware. Also, if you were to remove the stuff that sets the screen size (shown below), then you can still play! However, it won’t look as good at lower resolutions because of the fact that it doesn’t really dynamically scale; it only scales the final rendered image.

namespace userconfig {
    export const ARCADE_SCREEN_WIDTH = 224
    export const ARCADE_SCREEN_HEIGHT = 256
}