File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3030 <orderEntry type =" library" name =" Maven: org.codehaus.plexus:plexus-component-annotations:1.5.5" level =" project" />
3131 <orderEntry type =" library" name =" Maven: org.apache.maven.wagon:wagon-provider-api:2.10" level =" project" />
3232 <orderEntry type =" library" name =" Maven: org.apache.maven.wagon:wagon-http-lightweight:2.10" level =" project" />
33+ <orderEntry type =" library" name =" Maven: org.apache.maven.wagon:wagon-http-shared:2.10" level =" project" />
34+ <orderEntry type =" library" name =" Maven: org.jsoup:jsoup:1.7.2" level =" project" />
35+ <orderEntry type =" library" name =" Maven: commons-io:commons-io:2.2" level =" project" />
3336 <orderEntry type =" library" name =" Maven: org.snapscript:snap-compile:1.0.2" level =" project" />
3437 <orderEntry type =" library" name =" Maven: org.snapscript:snap-tree:1.0.2" level =" project" />
3538 <orderEntry type =" library" name =" Maven: org.snapscript:snap-core:1.0.2" level =" project" />
Original file line number Diff line number Diff line change 1- // https://github.com/uin3566/FlappyBird
1+
22var panel = new GamePanel (context );
33game .start (panel );
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import android.graphics.Color;
1616
1717class GamePanel with Panel {
1818
19- static const Y_DOWN_ACCELERATE = 7 .0f ;
19+ static const Y_DOWN_ACCELERATE = 9 .0f ;
2020
2121 var context ;
2222 var gameStatus ;
@@ -77,7 +77,7 @@ class GamePanel with Panel {
7777
7878 initResources ();
7979
80- var isSpeedMode = false ;
80+ var isSpeedMode = true ; // increase the speed
8181 if (isSpeedMode ) {
8282 speedX = 20 ;
8383 scoreIncrease = 2 ;
Original file line number Diff line number Diff line change 1+ https://github.com/uin3566/FlappyBird
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ class Cell extends GameElement {
77 }
88
99 new (cell ) : super (cell .radius ){
10- this .x = cell .y ;
10+ this .x = cell .x ;
1111 this .y = cell .y ;
1212 }
1313}
Original file line number Diff line number Diff line change 1- // https://github.com/ferrolho/android-snake
1+
22var panel = new GamePanel (context );
33game .start (panel );
Original file line number Diff line number Diff line change 1+ https://github.com/ferrolho/android-snake
You can’t perform that action at this time.
0 commit comments