It is the sort of games where you have to put three objects with the same skin in a row to destroy them (has it a general name like tictactoe or pong has?)
Please test it out and give a report how you find the game (and the animations ;)
Thanks to my friend R. who gave me a hint how to make an interrupted sine-graph
Best regards,
Symbroson
I didn't look at the code, just know this problem exists.
Try:
function hideSplash(){
laySplash.Animate("FadeOut",null,1000);
setTimeout("showGame",1010);
}
It is a hack, but was a work around for my 5.1 droid problems. Seems FadeOut is the only problem, but not for sure.
function hideSplash(){
laySplash.Animate("FadeOut",null,1000);
setTimeout("laySplash.SetVisibility('Hide');showGame",1010);
Chris
function hideSplash(){
laySplash.Animate("FadeOut",null,1000);
setTimeout("laySplash.SetVisibility('Hide');showGame();",1010);
I know you wouldn't but, I hate mistakes. :-)
function hideSplash(){
laySplash.Animate("FadeOut",null,1000);
setTimeout("laySplash.SetVisibility('Hide');showGame();",1010);
}
Chris
function newRow() {
var a=[]
for(var i=0; i<sizX; i++) a.push({"value":ranInt(app.ListFolder("Objects").length),"touched":false,
"rotc":30*Math.random(),"dx":0,"dy":0,"siz":0.9,"die":false,"v":0})
return a
}
Polygons 1 (changing):
https://www.dropbox.com/sh/s3t4mb4vbyftkvo/AADOKNRudnJ_lD6x6unZuOWva
Polygons 2 (connecting):
https://www.dropbox.com/sh/6cz5jpzcih353ej/AACW4dK0S1cPtcZ1SJrs-Qxea
Thank you for testing and reporting them :)
Best regards,
Symbroson
Look at /Games/Polygons or /Games/Polygons 2