()
| 25 | private OrthographicCamera cam; |
| 26 | |
| 27 | public FrameRate() { |
| 28 | lastTimeCounted = TimeUtils.millis(); |
| 29 | sinceChange = 0; |
| 30 | frameRate = Gdx.graphics.getFramesPerSecond(); |
| 31 | font = new BitmapFont(); |
| 32 | batch = new SpriteBatch(); |
| 33 | cam = new OrthographicCamera(Gdx.graphics.getWidth(), Gdx.graphics.getHeight()); |
| 34 | } |
| 35 | |
| 36 | public void resize(int screenWidth, int screenHeight) { |
| 37 | cam = new OrthographicCamera(screenWidth, screenHeight); |