Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

não consigo inserir uma cor na bolinha

Ao colocar esse código:

let xBolinha = 300 let yBolinha = 200 let Diâmetro = 22

function setup() { createCanvas(600 , 400 )}

function draw () {background(0)

circle(xBolinha,yBolinha,Diâmetro); fill = color (205,204,0)

             }              

Aparece essa a resposta: "You just changed the value of "fill", which was a p5 function. This could cause problems later if you're not careful. "

Ao colocar esse código tirado de um exemplo da plataforma:

let xBolinha = 300 let yBolinha = 200 let Diâmetro = 22 let c = color(255, 204, 0); // Define color 'c' fill(c); // Use color variable 'c' as fill color

function setup() { createCanvas(600 , 400 )}

function draw () {background(0)

circle(xBolinha,yBolinha,Diâmetro);

Aparece essa mensagem: "ReferenceError: color is not defined"

1 resposta
solução!

Olá Tatianna,

O erro está no fill. O correto seria "fill(color(205,204,0))", e também ele deve vir antes de desenhar a bolinha

let xBolinha = 300 let yBolinha = 200 let Diâmetro = 22

function setup() { 
        createCanvas(600 , 400 )
}
function draw () {
        background(0)
        fill(color(205,204,0));
        circle(xBolinha,yBolinha,Diâmetro);
 }              

Espero ter ajudado.