Skip to content

Commit

Permalink
Removed delta time from OffsetTest
Browse files Browse the repository at this point in the history
  • Loading branch information
raeleus committed Jul 8, 2019
1 parent ae1a0f7 commit ad75306
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions demo/src/com/ray3k/tenpatch/demo/desktop/OffsetTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,7 @@ public void render() {
Gdx.gl.glClearColor(1, 1, 1, 1);
Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT);

float delta = Gdx.graphics.getDeltaTime();

skin.get("sand-ten", TenPatchDrawable.class).update(delta);
stage.act(delta);
stage.act();
stage.draw();
}

Expand Down

0 comments on commit ad75306

Please sign in to comment.