Just a quick question. In the tutorial, when he creates the first level on “Loading/Building Levels”, he was making the function that creates the brick structure. Since this was made in 2018, Code Sandbox probably got updated and now the same program does not work because “brick is not defined”. Here is a image:
This is specifically where the problem is:
level.forEach((row, rowIndex) => {
row.forEach(brick, brickIndex => {
if (brick === 1) {
let position = {
x: 80 * brickIndex,
y: 20 + 24 * rowIndex
};
How do I define “brick” ? I am a beginner BTW.
Video:
https://www.youtube.com/watch?v=3EMxBkqC4z0&list=WL&index=4&t=2599s
