xxxxxxxxxx
71
// this one is for colin
// todo: rain of random banans
// target closest banan
// banans have health
// upgrade laser dmg
// use lead intercept calculate to move eyes on top of banan
// make into idlegame
var monke;
var banan;
var t, dt, ddt, R;
function setup() {
createCanvas(400, 400);
monke = createVector(cos(t)*R,sin(t)*R);
banan = createVector(random(-200,200),random(-200,200));
textAlign(CENTER);
textSize(50);
}
t=0
dt=0.005;
ddt=0.00005;
R=150;
function draw() {
background(220);
text('monke 4 colin', width/2, 40)
const m = monke;
const b = banan;
//monke
m.x = cos(t)*R;
m.y = sin(t)*R;
push();
translate(200,200);
text('🐒', m.x, m.y);
pop();
// banan
b.x = sin(t)*cos(t)*R + noise(t)*20;
b.y = cos(t)*sin(t)*R;
push();
translate(200,200);
text('🍌', b.x,b.y )
pop();
// laser eyes
push();
// translate(200,200);
// translate(m.x, m.y);
translate(200,200);
strokeWeight(2)
stroke('red')
line(m.x-15,m.y-30, b.x, b.y);
line(m.x-5,m.y-30, b.x, b.y);
pop();
t+=dt;
if ( t<0 || t> 6*TWO_PI) {dt=-dt; ddt=-ddt; }
dt+=ddt;
}