Skip to content

Commit

Permalink
Suppressed behavior for the ball
Browse files Browse the repository at this point in the history
  • Loading branch information
kalahel committed Jan 28, 2018
1 parent d4423ea commit 2999b1d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -216,10 +216,10 @@ public void handleReception(String textReceived) {
this.engine.splitBall();
}*/
if(ballsSpeed != 1.0){
this.engine.changeBallSpeed(ballsSpeed);
//this.engine.changeBallSpeed(ballsSpeed);
}
if(ballsSize != 1.0){
this.engine.changeBallSize(ballsSize);
//this.engine.changeBallSize(ballsSize);
}

} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
public class MainMenuActivity extends Activity implements Displayable {

public static final boolean BRICKEST_DEBUG_MODE = true;
public static final boolean BRICKEST_OFFLINE_MODE = true;
public static final boolean BRICKEST_OFFLINE_MODE = false;
public final static String FILTER_MAIN_MENU = "com.app.remi.test.activities.MainMenuActivity.FILTER_MAIN_MENU";
private Button goToConnectionActivity, goToEngine, forceConnectionButton;
private ImageView titleview;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ public ClientInterfaceTCP(NetworkBackendService networkBackendService) {
this.flux_sortie = null;
this.flux_entree = null;
this.portNumber = 5000;
//this.address = "dankest.ddns.net";
this.address = "b3n.ddns.net";
this.address = "dankest.ddns.net";
//this.address = "b3n.ddns.net";
this.isConnected = false;
this.networkBackendService = networkBackendService;
}
Expand Down

0 comments on commit 2999b1d

Please sign in to comment.