Examples of onOpened()


Examples of vazkii.botania.api.lexicon.LexiconPage.onOpened()

    buttonList.add(leftButton = new GuiButtonPage(1, left, top + guiHeight - 10, false));
    buttonList.add(rightButton = new GuiButtonPage(2, left + guiWidth - 18, top + guiHeight - 10, true));
    buttonList.add(shareButton = new GuiButtonShare(3, left + guiWidth - 6, top - 2));

    LexiconPage page = entry.pages.get(this.page);
    page.onOpened(this);
    updatePageButtons();
  }

  @Override
  public LexiconEntry getEntry() {
View Full Code Here

Examples of vazkii.botania.api.lexicon.LexiconPage.onOpened()

        break;
      case 1 :
        currentPage.onClosed(this);
        page--;
        newPage = entry.pages.get(page);
        newPage.onOpened(this);

        ClientTickHandler.notifyPageChange();
        break;
      case 2 :
        currentPage.onClosed(this);
View Full Code Here

Examples of vazkii.botania.api.lexicon.LexiconPage.onOpened()

        break;
      case 2 :
        currentPage.onClosed(this);
        page++;
        newPage = entry.pages.get(page);
        newPage.onOpened(this);

        ClientTickHandler.notifyPageChange();
        break;
      case 3 :
        Minecraft mc = Minecraft.getMinecraft();
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.