I
I
Ibishka2020-02-02 19:13:18
Canvas
Ibishka, 2020-02-02 19:13:18

How to increase the movement speed of an object?

const moveEndlessly = () => {
   ctx.fillStyle = "#000";
   ctx.fillRect(0, 0, canvas.width, canvas.height);
   ctx.fillStyle = "#59982f";
   ctx.fillRect(x--, y, w, 20);
 };
 window.requestAnimationFrame(moveEndlessly);

Answer the question

In order to leave comments, you need to log in

1 answer(s)
T
twobomb, 2020-02-02
@Ibishka

...
ctx.fillStyle = "#59982f";
x-=10;
ctx.fillRect(x, y, w, 20);
...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question