Examples of Fluid


Examples of net.minecraftforge.fluids.Fluid

      Proxies.common.bindTexture(textureFile);
    }

    @Override
    public String getLegacyTooltip(EntityPlayer player) {
      Fluid fluid = FluidRegistry.getFluid(engine.currentFluidId);
      if (fluid == null)
        return StringUtil.localize("gui.empty");

      String tooltip = fluid.getLocalizedName(new FluidStack(fluid, 1));
      return tooltip;
    }
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.