Example usage for com.badlogic.gdx Screen interface-usage

List of usage examples for com.badlogic.gdx Screen interface-usage

Introduction

In this page you can find the example usage for com.badlogic.gdx Screen interface-usage.

Usage

From source file com.wotf.gui.view.SessionLocal.java

/**
 * Screen that shows the local sessions menu
 *
 * @author Gebruiker
 */
public class SessionLocal implements Screen {

From source file com.xdebugxgames.trouble.with.tribbles.CreditsScreen.java

public class CreditsScreen implements Screen, InputProcessor {

    Tribbles game;
    private SpriteBatch batch;
    private OrthographicCamera camera;
    private boolean clicked, paused;

From source file com.xemplar.games.android.nerdshooter.screens.CompletedLevel.java

public class CompletedLevel implements Screen, InputProcessor {
    public static final String KEY_COMPLETED_TIME = "comp";
    public static final String KEY_FINISH_TYPE = "type";
    public static final String KEY_LEVEL_NUM = "level";
    public static final String KEY_LEVEL_PACK = "pack";

From source file com.xemplar.games.android.nerdshooter.screens.DownloadScreen.java

public class DownloadScreen implements Screen, InputProcessor {
    public static DownloadScreen instance;
    private float buttonHeight, buttonWidth, spacer;

    protected SpriteBatch buttonRenderer;
    protected BitmapFont button;

From source file com.xemplar.games.android.nerdshooter.screens.GameScreen.java

public class GameScreen implements Screen, InputProcessor {
    public static boolean useGameDebugRenderer = false;
    public static GameScreen instance;
    public static long gameTicks = 0L;
    private Rectangle left, right, jump, fire, sanic;
    public World world;

From source file com.xemplar.games.android.nerdshooter.screens.OptionsScreen.java

public class OptionsScreen implements Screen, InputProcessor {
    public static OptionsScreen instance;
    private float buttonHeight, buttonWidth, spacer;

    protected SpriteBatch buttonRenderer;
    protected BitmapFont button;

From source file com.xemplar.games.android.nerdshooter.screens.PackScreen.java

public class PackScreen implements Screen, InputProcessor {
    public static PackScreen instance;
    private float buttonHeight, buttonWidth, spacer;

    protected SpriteBatch buttonRenderer;
    protected BitmapFont button;

From source file com.xemplar.games.android.nerdshooter.screens.SplashScreen.java

public class SplashScreen implements Screen {
    private float width, logoSize, logoX;
    private Timer.Task splash0, splash1;
    private SpriteBatch batch;
    private Texture logo, lts;
    private BitmapFont label;

From source file com.xemplar.games.android.nerdshooter.screens.StartScreen.java

public class StartScreen implements Screen, InputProcessor {
    public static StartScreen instance;
    private float buttonHeight, buttonWidth, spacer;

    protected Button levelExp;

From source file com.ygames.game.ControlsScreen.java

/**
 *
 * @author user
 */
public class ControlsScreen implements Screen {