Package it.marteEngine.game.starcleaner

Examples of it.marteEngine.game.starcleaner.Background


    // setCamera(new Camera(this, player, container.getWidth(),
    // container.getHeight()));
    setCamera(new Camera(this, player, container.getWidth(),
        container.getHeight(), 550, 170, player.maxSpeed));

    add(new Background(0, 0), BELOW);

    time = 0;

    FuzzyPlayer.life = 3;
View Full Code Here


      throws SlickException {
    super.init(container, game);

    music = ResourceManager.getMusic("song0");

    add(new Background(0, 0, ResourceManager.getImage("menu")));
    add(new FuzzySpaceEntity(180, 400, showContinue));
  }
View Full Code Here

    add(new BlueTarget(750, 450));
    add(new BlueTarget(650, 482));

    // add background from
    // http://www.flickr.com/photos/fredmikerudy/4136592583/
    Background bg = new Background(0, 0);
    bg.depth = -100;
    add(bg);

    container.setMouseCursor(ResourceManager.getImage("cursor"), 25, 25);
View Full Code Here

  @Override
  public void init(GameContainer container, StateBasedGame game)
      throws SlickException {
    super.init(container, game);
    add(new Background(0, 0, ResourceManager.getImage("menu")));
    add(new TextEntity(160, 20, FuzzyMain.font, "Select Level"));
  }
View Full Code Here

  @Override
  public void init(GameContainer container, StateBasedGame game)
      throws SlickException {
    super.init(container, game);
    add(new Background(0, 0, ResourceManager.getImage("menu")));
    add(new FuzzySpaceEntity(180, 400, true));
  }
View Full Code Here

    for (int i = 1; i < 13; i++) {
      add(new Solid(564, 400 - i * 32, 32, 32, 10, block));
    }
    // add a background image, from
    // http://thetutorials.wordpress.com/2008/11/26/ps-cute-cartoon-clouds-the-simple-way/
    add(new Background(0, 0));
  }
View Full Code Here

TOP

Related Classes of it.marteEngine.game.starcleaner.Background

Copyright © 2018 www.massapicom. 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.