Skip to content
Advertisement

JavaScript: How to draw multiple rectangles with Canvas using fillRect?

I am attempting to create a simple game where I have two rectangles, a human-controlled player and a “collider” that has to be avoided.

I am trying to draw the two rectangles using fillRect(), however only one shows up. For example, putting the “lime” colored rectangle first would result in it being drawn, but putting the “red” colored rectangle line first causes neither to be drawn.

I would expect a result where both rectangles are drawn/appear at the same time on the canvas:

JavaScript

Advertisement

Answer

The second rectangle is failing to draw due to a syntax error on this line:

JavaScript

The following update will resolve that problem:

JavaScript

See the snippet below for a working version in action:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement