Package forestry.core.gui.tooltips

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


        continue;
      ToolTip tips = provider.getToolTip();
      if (tips == null)
        continue;
      boolean mouseOver = provider.isMouseOver(mouseX - guiLeft, mouseY - guiTop);
      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.