xxxxxxxxxx
52
class Slingshot{
constructor(){
this.dna=[];
this.x=slingSize;
this.y=height - 50;
this.size=slingSize;
this.dna.push(random(361));
//this.dna.push(5);
this.dna.push(random(50));
this.dead=false;
}
show()
{
line(slingSize, height-25, slingSize, height);
circle(this.x, this.y, this.size*2);
}
update()
{
if(!this.dead)
{
this.x=this.dna[1] * cos(degrees(this.dna[0])) + this.x
this.y=this.dna[1] * sin(degrees(this.dna[0])) + this.y;
if(this.dna[1]>0)
{
this.dna[1]-=gravity;
}
if(this.y<height-this.size)
{
this.y+=gravity;
}
}
if(this.y>=height-this.size)
{
this.dead=true;
}
}
}