[clean] Remove log
1 parent 181297f commit 82827f8c8ab5a32fd1f0c42e85c8c5155c8f09d2
KeijuMatsumoto authored on 28 Nov 2017
Showing 5 changed files
View
2
■■■
app/src/main/java/com/example/sprout/Sprout.java
OvergroundActor oga = new OvergroundActor(pochaBody, null);
oga.setPosition(team.findPlayerById(userId).getPlayerPosition3d());
team1Players.put(userId, oga);
universe.place(team1Players.get(userId));
System.out.println(userId + "create");
}
if (team2Players.get(userId) == null && teamId != getRoomId()) {
Object3D pochaBody = ModelFactory.loadModel(getResources(), "pocha.stl").createObject();
OvergroundActor oga = new OvergroundActor(pochaBody, null);
oga.setPosition(team.findPlayerById(userId).getPlayerPosition3d());
team2Players.put(userId, new OvergroundActor(pochaBody, null));
universe.place(team2Players.get(userId));
System.out.println(userId + "create");
}
}
} catch (Exception e) {
e.printStackTrace();
View
2
■■■
app/src/main/java/com/example/sprout/accounts/RegistrationActivity.java
connection.setCallBack(new CallBack() {
@Override
public void onResponse(String response) {
Account ac = JSON.decode(response, Account.class);
System.out.println(ac.getUserID());
System.out.println(response);
 
sprout.setUserId(ac.getUserID());
 
Intent intent = new Intent(RegistrationActivity.this, RoomListActivity.class);
View
app/src/main/java/com/example/sprout/battles/BattleActivity.java
View
app/src/main/java/com/example/sprout/rooms/RoomListActivity.java
View
app/src/main/java/com/example/sprout/rooms/RoomMainActivity.java