public void setups(){ //sensorSetup(); overallHeat=0; explodeSetup(); theblobSetup(); m.monsterSetup(); prettySetup(); cutieSetup(); bounceSetup(); poisonSetup(); setupBuggers(); setupFlyers(); setupLightning(); SB1setup(); big_bang_setup(); } public void draws(){ SBdraw(); setBackcolor(); // sensorCheck(); theblobDraw1(); //first half of blobs drawCuties(); drawBuggers(); prettyDraw(); m.monsterDraw(); theblobDraw2(); //second half of blobs //stuff above the blobs: drawFlyers(); drawPoison(); checkForPoison(); checkAlienCollide(); drawBounce(); explodesDraw(); drawLightning(); checkBlobs(); checkforBigBang(); } public void heats(){ heatBackcolor(); heatOverall(); heatBlobs(); m.heatMonster(); heatPretty(); heatTheCuties(); heatBuggers(); SBheat(); } public void cools(){ coolBackcolor(); coolOverall(); coolBlobs(); m.coolMonster(); coolPretty(); coolTheCuties(); coolBuggers(); SBcool(); } public void volts(){ voltBackcolor(); voltBlobs(); m.voltMonster(); voltTheCuties(); voltPretty(); voltPoison(); voltBuggers(); SBvolt(); } public void triggerLightning(){ lightningBackcolor(); if(!light.alive) light.getLoc(); } public void accelerometerX(int i){ acc(i,0); } public void accelerometerY(int i){ acc(0,i); } public void normalizeTheParticles(){ normalBlobs(); normalizeBuggers(); normalPretty(); SBnormal(); if(!initiated) { initiated = true; bCount = 0; } if( bCount > 90) { whichBackcolor = 0; initiated = false; } }