how to make a game
//The best video on how to make games
https://www.youtube.com/watch?v=dQw4w9WgXcQ
how to make a game
//The best video on how to make games
https://www.youtube.com/watch?v=dQw4w9WgXcQ
how to make a javascript game
//Javascript game template
//Move player with arrow keys
var canvas = document.createElement("canvas");
canvas.width = 500;
canvas.height = 500;
document.body.appendChild(canvas);
var ctx = canvas.getContext("2d");
var player = {x: canvas.width / 2, y: canvas.height / 2, speed: 10};
var keys = [];
function update() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx.beginPath();
ctx.fillStyle = "red";
ctx.fillRect(player.x, player.y, 50, 50);
if (keys[37])
player.x -= player.speed;
if (keys[38])
player.y -= player.speed;
if (keys[39])
player.x += player.speed;
if (keys[40])
player.y += player.speed;
requestAnimationFrame(update);
}
update();
document.onkeydown = function(e) {
keys[e.keyCode] = true;
}
document.onkeyup = function(e) {
keys[e.keyCode] = false;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us