Constructor
new Brick(x, y, w, h, hits, colopt)
Constructs a new instance of a Brick
Parameters:
Name | Type | Attributes | Default | Description |
---|---|---|---|---|
x |
number | The x location on the canvas | ||
y |
number | The y location on the canvas | ||
w |
number | The width of the brick in pixels | ||
h |
number | The height of the brick in pixels | ||
hits |
number | The number of hits to destroy the brick | ||
col |
p5.Color |
<optional> |
color(135, 81, 153) | The colour of the brick |
Methods
draw()
Draws the brick on the canvas
setColourByHits()
Sets the colour of the brick depending on how many hits it takes to
destroy the brick.
Example
// Change colour to blue for 1 hit
this.col = color(41, 103, 204);
// Change colour to red for 2 hits
this.col = color(204, 41, 52);
// Change colour to green for 3 hits
this.col = color(41, 204, 74);
// Change colour to yellow for 4 hits
this.col = color(204, 199, 41);
// Change colour to orange for 5 hits
this.col = color(204, 109, 41);
// Change colour to purple by default
this.col = color(135, 81, 153);
showNumbersOff()
Sets the show numbers flag to false
showNumbersOn()
Sets the show numbers flag to true
toggleShowNumbers()
Toggles the show numbers flag