Examples of LWJGLApplicationConfiguration


Examples of cc.plural.ecs.provider.LWJGLApplicationConfiguration

   * Serial UID
   */
  private static final long serialVersionUID = 1L;

  public AppletWrapper() {
    super(new RuntimeApplication(), new LWJGLApplicationConfiguration());
  }
View Full Code Here

Examples of cc.plural.ecs.provider.LWJGLApplicationConfiguration

import org.lwjgl.LWJGLException;

public class ApplicationWrapper {

    public static void main(String[] args) throws LWJGLException {
        LWJGLApplicationConfiguration applicationConfiguration = new LWJGLApplicationConfiguration();
        applicationConfiguration.title = "ECS Prototype 3";
        applicationConfiguration.width = 960;
        applicationConfiguration.height = 600;
        applicationConfiguration.resizable = true;
        applicationConfiguration.backGroundColor = Color.LIGHT_GREY;
View Full Code Here

Examples of com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration

    /**
     * @see Visualisation#initialize(int, int, boolean)
     */
    @Override
    public void initialize(int width, int height, boolean fullscreen) {
        LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();

        config.width = width;
        config.height = height;
        config.title = "AQP Project - Game";
        config.fullscreen = fullscreen;
View Full Code Here

Examples of com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration

  InputMultiplexer plex;

  UI ui;

  public static void main( String[] argv ) {
    LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();

    config.title = "libgdx's post-processing demo";
    config.width = 1280;
    config.height = 720;
    config.samples = 0;
View Full Code Here

Examples of com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration

import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration;

public class DeathRaceDesktop {

    public static void main(String[] args) {
        LwjglApplicationConfiguration cfg = new LwjglApplicationConfiguration();
        cfg.title = "Outrun";
        cfg.width = 853;
        cfg.height = 480;
        new LwjglApplication(new DeathRaceGame(), cfg);
    }
View Full Code Here

Examples of com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration

import com.badlogic.gdx.graphics.g2d.TextureRegion;
import com.badlogic.gdx.math.MathUtils;

public class RenderSystemTest {
  public static void main(String[] args){
    LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
    config.width = 640;
    config.height = 480;
   
    new LwjglApplication(new MainClass(), config);
  }
View Full Code Here

Examples of com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration

  /**
   * @param args
   */
  public static void main(String[] args) {
    LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
    config.fullscreen = true;
    config.resizable = false;
    config.title = "Fluid Simulator";
    config.vSyncEnabled = false;
    config.width = (int)Toolkit.getDefaultToolkit().getScreenSize().getWidth();
View Full Code Here

Examples of com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration

* Date: 24.08.13
* Time: 03:35
*/
public class DesktopStarter {
    public static void main(String[] args) {
        LwjglApplicationConfiguration cfg = new LwjglApplicationConfiguration();
        cfg.title = "TimedStrategy";
        cfg.useGL20 = true;
        cfg.width = 1024;
        cfg.height = 768;
        cfg.resizable = false;
View Full Code Here

Examples of com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration

      System.exit(0);
    }
    }

    TiledMapPacker packer = new TiledMapPacker(packerSettings);
    LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
    config.forceExit = false;
    config.width = 100;
    config.height = 50;
    config.title = "TiledMapPacker";
    new LwjglApplication(new ApplicationListener() {
View Full Code Here

Examples of com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration

* @version Agosto 2014
*/
public class DesktopJumper2DX {

  public static void main(String[] args) {
    LwjglApplicationConfiguration configuration = new LwjglApplicationConfiguration();
    configuration.title = "Jumper2DX";
    configuration.width = 1024;
    configuration.height = 600;
        configuration.fullscreen = false;
       
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.