Skip to content
This repository has been archived by the owner on Nov 2, 2022. It is now read-only.

Commit

Permalink
final changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ndzoesch committed Jan 28, 2018
1 parent b9c8d79 commit d9aef76
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Game/core/src/com/mygdx/sneezetest/Stages/GameStage.java
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public void draw() {
drawBatch();

camera.update();
debugRenderer.render(world, camera.combined);
// debugRenderer.render(world, camera.combined);
update();

Hud.TIME_FLOAT += Gdx.graphics.getDeltaTime();
Expand Down
8 changes: 4 additions & 4 deletions Game/core/src/com/mygdx/sneezetest/Supervisor/Supervisor.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ public class Supervisor {
public Supervisor(World w, MapProperties prop) {
world = w;
mapSize = new Rectangle();
mapSize.x = 32;
mapSize.y = 32;
mapSize.width = prop.get("width", Integer.class) * 32 - 32;
mapSize.height = prop.get("height", Integer.class) * 32 - 32;
mapSize.x = 128;
mapSize.y = 128;
mapSize.width = prop.get("width", Integer.class) * 32 - 128;
mapSize.height = prop.get("height", Integer.class) * 32 - 128;
entities = new ArrayList<Passenger>();
}

Expand Down

0 comments on commit d9aef76

Please sign in to comment.