Ola a todos
Fiz o codigo mas nao aparece os carros aponta o erro abaixo sempre sublinhado o mostra ator
[sketch.js, line 8] "mostraAtor" is not defined in the current scope. If you have defined it in your code, you should check its scope, spelling, and letter-casing (JavaScript is case-sensitive).
- More info: https://p5js.org/examples/data-variable-scope.html + Mas não achei o problema. Aguem poderia me ajudar?
function setup() {
createCanvas(500, 400);
}
function draw() {
background(imagemDaEstrada);
mostraAtor();
mostraCarro();
movimentaCarro();
movimentaAtor();
}