Examples of boundTo()


Examples of com.mtbs3d.minecrift.control.ControlBinding.boundTo()

      String display = "";
      if( index == currentlyBinding ) {
        display = "" + EnumChatFormatting.WHITE + "> " + EnumChatFormatting.YELLOW + "??? " + EnumChatFormatting.WHITE + "<";
      } else {
        ControlBinding binding = ControlBinding.bindings.get(index);
        display = (binding.isValid() ? "" : (""+ EnumChatFormatting.RED )) +StringTranslate.getInstance().translateKey(binding.getDescription())+": "+binding.boundTo();
      }
      drawString(fontRenderer,display, xPos, yPos, 8421504);
    }

    @Override
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.