Skip to content

Commit

Permalink
Removed float cast bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Hasakev committed Oct 17, 2023
1 parent 71ea291 commit d267848
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ private void addActors() {

// Animate the engineer count label
engineerTb.setPosition(table.getX() - 200f, Gdx.graphics.getHeight() - 145f);
engineerTb.addAction(new SequenceAction(Actions.moveTo(table.getX() + 20f, Gdx.graphics.getHeight() - 145,
engineerTb.addAction(new SequenceAction(Actions.moveTo(table.getX() + 20f, Gdx.graphics.getHeight() - 145f,
1f, Interpolation.fastSlow)));
}

Expand Down

0 comments on commit d267848

Please sign in to comment.