xxxxxxxxxx
29
let helpRed= 255;
let helpGreen=0;
let helpBlue=255;
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
loopLoop(ICM_help,"ICM Help",0,50,helpRed,helpGreen,helpBlue);
loopLoop(ICM_help,"feel",5,200,255,0,0)
loopLoop(ICM_help,"lost",230,50,0,255,0)
}
function ICM_help(chocolate,x_position,y_position){
fill(random(220),random(220),random(220));
text(chocolate,x_position,y_position);
textSize(50);
}
function loopLoop(new_function,text_input,x_pos,y_pos,r_color,g_color,b_color){
for(let i=0;i<width;i++){
new_function(text_input,x_pos+i*30,y_pos+i*40,r_color,g_color,b_color);
//new_function(text_input,x_pos+i,y_pos+i*10);
}
}