Package buildcraft.core.gui.tooltips

Examples of buildcraft.core.gui.tooltips.ToolTip.onTick()


      ToolTip tips = provider.getToolTip();
      if (tips == null) {
        continue;
      }
      boolean mouseOver = provider.isMouseOver(mouseX, mouseY);
      tips.onTick(mouseOver);
      if (mouseOver && tips.isReady()) {
        tips.refresh();
        drawToolTips(tips, mouseX, mouseY);
      }
    }
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.