diff options
author | elioat <elioat@tilde.institute> | 2023-10-30 17:11:05 -0400 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2023-10-30 17:11:05 -0400 |
commit | 09b87ef45f1f40e4abe08c9cc7073a9f8232c4e9 (patch) | |
tree | 304f47738a2695fb5f92b2359c30df8e79c81943 | |
parent | 569669da195d572f6a03e4e200fee25bb64f8369 (diff) | |
download | tour-09b87ef45f1f40e4abe08c9cc7073a9f8232c4e9.tar.gz |
*
-rw-r--r-- | js/canvas/game.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/canvas/game.js b/js/canvas/game.js index 2929f01..56a2861 100644 --- a/js/canvas/game.js +++ b/js/canvas/game.js @@ -11,8 +11,8 @@ ctx.fillRect(0, 0, canvas.width, canvas.height); const player = { x: 50, y: 50, - width: 22, - height: 22, + width: 16, + height: 16, step: 10, color: "#65ff00", colorAlt: "pink", |