xxxxxxxxxx
// https://coolors.co/540d6e-ee4266-ffd23f-f3fcf0-1f271b
let c = ['#ff6666',' #ccff66', '#5d2e8c', '#2ec4b6', '#f1e8b8'];
function setup() {
createCanvas(600, 600, WEBGL);
colorMode(HSB, 360, 100, 100, 100);
}
function draw() {
frameRate(1);
background(random(c));
// rotateY(millis() / 1000);
// noStroke();
// stroke(46, 75, 100);
// strokeWeight(3);
for (let i = 0; i < 5; i++) {
ellipsoid(180, 180, 180, 24);
sc();
fill(random(c));
}
noLoop();
}
function sc(){
shininess(50);
ambientLight(242, 100, 100);
specularColor(224, 100, 95);
// ambientLight(random(c));
// specularColor(random(c));
pointLight(129, 178, 154, 250, 150, 150);
specularMaterial(224, 80, 100);
sphere(100);
}
// マウスを左クリックするかトラックパッドを押すと変化するꉂ(ˊᗜˋ*)
function mousePressed() {
loop();
}
// なぞな感じ。わからん。色変えたいんだけど球体の色どこー?