
How to Build Flappy Bird in JavaScript - GameDev Tutorial
video description
Date: 2022-03-14
Comments and reviews: 3
Harpreet
In my case images were not showing up. So, I added images in html and hide them using style then imported images in JS file using getelementbyid instead using image object as used in video example.
HTML File:
JS File:
var bg = document.getElementById('bg');
cntx.drawImage(bg, 0, 0);
reply
In my case images were not showing up. So, I added images in html and hide them using style then imported images in JS file using getelementbyid instead using image object as used in video example.
HTML File:
JS File:
var bg = document.getElementById('bg');
cntx.drawImage(bg, 0, 0);
reply
atanki
the starter template link is broken please help.... I really need to follow along with this tutorial cuz this is one of the best tutorials and you seem good so please if you can by any means make a media fire link....... pleasee!!!
reply
the starter template link is broken please help.... I really need to follow along with this tutorial cuz this is one of the best tutorials and you seem good so please if you can by any means make a media fire link....... pleasee!!!
reply
anil
How do you ensure that the images are loaded, before you draw.
In my system images are taking time to load. So nothing is drawn.(before requestAnimationFrame added)
reply
How do you ensure that the images are loaded, before you draw.
In my system images are taking time to load. So nothing is drawn.(before requestAnimationFrame added)
reply
Add a review, comment
Other channel videos















