Jump to content
  • 0

Создание игры с помощью <canvas>


nemo59
 Share

Question

Я решил создать игру с помощью <canvas>. Я создал "танк" (на даный момент это прямоугольник), сделал управление "танком", но возникла проблема - "танк" оставляет след. Помогите устранить эту ошибку, буду благодарен. Вод код программы:

<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
#game {
border: 1px solid black;
background: silver;
}
</style>
<script type="text/javascript">
var tank_x = 0;
var tank_y = 0;
function game() {
var game_show = document.getElementById("game").getContext("2d");
game_show.fillStyle = "green";
game_show.fillRect(tank_x, tank_y, 15, 15);
}

function run() {
switch (event.keyCode) {
case 37:
tank_x--;
break;
case 38:
tank_y--;
break;
case 39:
tank_x++;
break;
case 40:
tank_y++;
break;
}
game();
}
</script>
</head>
<body onload="game();" onkeydown="run();">
<canvas height="400" width="500" id="game"></canvas>
</body>
</html>

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Потому что каждый отрисовывающий что-либо метод рисует по уже существующему canvas, этот след - всего-лишь танк, отрисованный в прошлом "кадре". Нужно очищать canvas перед выводом следующего кадра, в вашем случае лучше всего просто подчищать прямоугольную область, в которой размещался танк в предыдущем кадре.

Link to comment
Share on other sites

  • 0

Потому что каждый отрисовывающий что-либо метод рисует по уже существующему canvas, этот след - всего-лишь танк, отрисованный в прошлом "кадре". Нужно очищать canvas перед выводом следующего кадра, в вашем случае лучше всего просто подчищать прямоугольную область, в которой размещался танк в предыдущем кадре.

Спасибо! А как его очищать?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy