当前位置: 首页>>代码示例>>Java>>正文


Java IGuiOverlay.isVisible方法代码示例

本文整理汇总了Java中com.enderio.core.api.client.gui.IGuiOverlay.isVisible方法的典型用法代码示例。如果您正苦于以下问题:Java IGuiOverlay.isVisible方法的具体用法?Java IGuiOverlay.isVisible怎么用?Java IGuiOverlay.isVisible使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.enderio.core.api.client.gui.IGuiOverlay的用法示例。


在下文中一共展示了IGuiOverlay.isVisible方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: handleMouseInput

import com.enderio.core.api.client.gui.IGuiOverlay; //导入方法依赖的package包/类
@Override
public void handleMouseInput() {
  int x = Mouse.getEventX() * this.width / this.mc.displayWidth;
  int y = this.height - Mouse.getEventY() * this.height / this.mc.displayHeight - 1;
  int b = Mouse.getEventButton();
  for (IGuiOverlay overlay : overlays) {
    if (overlay != null && overlay.isVisible() && overlay.handleMouseInput(x, y, b)) {
      return;
    }
  }
  int delta = Mouse.getEventDWheel();
  if (delta != 0) {
    mouseWheel(x, y, delta);
  }
  super.handleMouseInput();
}
 
开发者ID:SleepyTrousers,项目名称:EnderCore,代码行数:17,代码来源:GuiContainerBase.java

示例2: drawGuiContainerForegroundLayer

import com.enderio.core.api.client.gui.IGuiOverlay; //导入方法依赖的package包/类
@Override
protected final void drawGuiContainerForegroundLayer(int mouseX, int mouseY) {
  drawForegroundImpl(mouseX, mouseY);

  Timer t = RenderUtil.getTimer();

  if (t != null) {
    GL11.glPushMatrix();
    GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
    GL11.glDisable(GL11.GL_DEPTH_TEST);
    for (IGuiOverlay overlay : overlays) {
      if (overlay != null && overlay.isVisible()) {
        overlay.draw(realMx, realMy, t.renderPartialTicks);
      }
    }
    GL11.glEnable(GL11.GL_DEPTH_TEST);
    GL11.glPopMatrix();
  }
}
 
开发者ID:SleepyTrousers,项目名称:EnderCore,代码行数:20,代码来源:GuiContainerBase.java

示例3: keyTyped

import com.enderio.core.api.client.gui.IGuiOverlay; //导入方法依赖的package包/类
@Override
protected void keyTyped(char par1, int par2) {
  if (par2 == 1) {
    for (IGuiOverlay overlay : overlays) {
      if (overlay.isVisible()) {
        overlay.setIsVisible(false);
        return;
      }
    }
    mc.player.closeScreen();
  }

  for (int i = 0; i < tabs.size(); i++) {
    if (i == activeTab) {
      tabs.get(i).keyTyped(par1, par2);
      return;
    }
  }
}
 
开发者ID:SleepyTrousers,项目名称:EnderIO,代码行数:20,代码来源:GuiTransceiver.java

示例4: hideOverlays

import com.enderio.core.api.client.gui.IGuiOverlay; //导入方法依赖的package包/类
public boolean hideOverlays() {
  for (IGuiOverlay overlay : overlays) {
    if (overlay.isVisible()) {
      overlay.setVisible(false);
      return true;
    }
  }
  return false;
}
 
开发者ID:SleepyTrousers,项目名称:EnderCore,代码行数:10,代码来源:GuiContainerBase.java

示例5: func_146978_c

import com.enderio.core.api.client.gui.IGuiOverlay; //导入方法依赖的package包/类
@Override
protected boolean func_146978_c(int p_146978_1_, int p_146978_2_, int p_146978_3_, int p_146978_4_, int p_146978_5_, int p_146978_6_) {
  int x = Mouse.getEventX() * this.width / this.mc.displayWidth;
  int y = this.height - Mouse.getEventY() * this.height / this.mc.displayHeight - 1;
  for (IGuiOverlay overlay : overlays) {
    if (overlay != null && overlay.isVisible() && overlay.isMouseInBounds(x, y)) {
      return false;
    }
  }
  return super.func_146978_c(p_146978_1_, p_146978_2_, p_146978_3_, p_146978_4_, p_146978_5_, p_146978_6_);
}
 
开发者ID:SleepyTrousers,项目名称:EnderCore,代码行数:12,代码来源:GuiContainerBase.java


注:本文中的com.enderio.core.api.client.gui.IGuiOverlay.isVisible方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。