Quando usamos esse código para mostrar o placar a cor é alterada para ambos, como fazer cada placar ficar com cores diferente?
function incluiPlacar(){ fill(255); text(meusPontos, 278, 26); text(pontosDoOponente, 321, 26)
Quando usamos esse código para mostrar o placar a cor é alterada para ambos, como fazer cada placar ficar com cores diferente?
function incluiPlacar(){ fill(255); text(meusPontos, 278, 26); text(pontosDoOponente, 321, 26)
Oi, Luan
function incluiPlacar(){
fill('blue');
text(meusPontos, 278, 26);
fill('red');
text(pontosDoOponente, 321, 26)
}