Algodoo Numberblocks [new] Download -
// On collision of two Numberblocks in green zone scene.my.checkAddition = (e)=>{ block1 = e.other; block2 = e.this; if(block1.name == "Numberblock" && block2.name == "Numberblock") { val = block1.my.value + block2.my.value; if(val <= 10) { scene.addNumberblock(val, block1.pos); block1.delete(); block2.delete(); } } }
Download note: Always scan any downloaded .exe or .zip file with antivirus software. Legit Algodoo scenes are .alg or .phz – never an executable. algodoo numberblocks download
The easiest way to get Numberblocks in Algodoo is by using , a community library with over 50,000 shared scenes. Open Algodoo on your computer. // On collision of two Numberblocks in green zone scene