Class: Brick

Brick(x, y, w, h, hits, colopt)

Brick () This class describes a brick.

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
Source:

Methods

draw()

Draws the brick on the canvas
Source:

setColourByHits()

Sets the colour of the brick depending on how many hits it takes to destroy the brick.
Source:
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
Source:

showNumbersOn()

Sets the show numbers flag to true
Source:

toggleShowNumbers()

Toggles the show numbers flag
Source:

Documentation generated by JSDoc 3.6.3 on Sat Jul 02 2022 09:28:00 GMT+0100 (BST)