Skip to content

Commit

Permalink
Update to libgdx 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelbua committed Aug 10, 2014
1 parent 1c35568 commit 2e1901d
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,6 @@ public void render (FrameBuffer dest) {
}

ui.draw();
Table.drawDebug(ui);

if (hasDest) {
dest.end();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,5 @@ public void draw () {
Gdx.gl.glClearColor(0, 0, 0, 1);
Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT);
ui.draw();
Table.drawDebug(ui);
}
}
1 change: 1 addition & 0 deletions uracer-desktop/src/com/bitfire/uracer/utils/UIUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public final class UIUtils {

public static Stage newFittedStage () {
Stage stage = new Stage(new FitViewport(ScaleUtils.PlayWidth, ScaleUtils.PlayHeight));
stage.setDebugAll(true);
return stage;
}

Expand Down

0 comments on commit 2e1901d

Please sign in to comment.