Package zelda.scene

Examples of zelda.scene.HouseScene


    if (animationCounter == link.getAnimation().length)
    {
      link.setAnimationInterval(oldAnimationInterval);     
      link.setState(new StandState(link));
      link.setHealth(2);
      game.setScene(new HouseScene(game, "GameStart"));
    }
    }
View Full Code Here


  {
    Scene scn = null;

    if(sceneName.equals("HouseScene"))
    {
      scn = new HouseScene(this, "GameStart");
    }

        if(sceneName.equals("HyruleScene"))
    {
      scn = new HyruleScene(this, "HouseScene");
View Full Code Here

    if (game.isEnterPressed())
    {
      switch(CURRENT)
      {
        case NEW_GAME:
          game.setScene(new HouseScene(game, "GameStart"));
          break;

        case LOAD_GAME:
          game.load();
          break;
View Full Code Here

TOP

Related Classes of zelda.scene.HouseScene

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.