SHARE
TWEET

Untitled

a guest Oct 13th, 2015 52 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. package com.mygdx.game;
  2.  
  3. import com.badlogic.gdx.ApplicationAdapter;
  4. import com.badlogic.gdx.Gdx;
  5. import com.badlogic.gdx.graphics.GL20;
  6. import com.badlogic.gdx.graphics.OrthographicCamera;
  7. import com.badlogic.gdx.graphics.Texture;
  8. import com.badlogic.gdx.graphics.g2d.Sprite;
  9. import com.badlogic.gdx.graphics.g2d.SpriteBatch;
  10.  
  11. public class FootBallsv0 extends ApplicationAdapter {
  12.     OrthographicCamera camera;
  13.     SpriteBatch batch;
  14.     Texture textureBG;
  15.     Sprite sprite;
  16.  
  17.        
  18.         @Override
  19.         public void create () {
  20.         camera = new OrthographicCamera();
  21.         camera.setToOrtho(false, Gdx.graphics.getWidth(), Gdx.graphics.getHeight());
  22.  
  23.         batch = new SpriteBatch();
  24.  
  25.         textureBG = new Texture("pitch_final.png");
  26.         textureBG.setFilter(Texture.TextureFilter.Linear, Texture.TextureFilter.Linear);
  27.  
  28.         sprite = new Sprite(textureBG);
  29.     }
  30.  
  31.         @Override
  32.         public void render () {
  33.                 Gdx.gl.glClearColor(1, 1, 1, 1);
  34.                 Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT);
  35.  
  36.         batch.setProjectionMatrix(camera.combined);
  37.                 batch.begin();
  38.                 batch.draw(textureBG, 0, 0, Gdx.graphics.getWidth(), Gdx.graphics.getHeight());
  39.                 batch.end();
  40.         }
  41.  
  42.     @Override
  43.     public void resize(int width, int height) {
  44.         camera.viewportWidth = width;
  45.         camera.viewportHeight = height;
  46.         camera.position.set(width/2f, height/2f, 0);
  47.     }
  48. }
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
Not a member of Pastebin yet?
Sign Up, it unlocks many cool features!
 
Top