2018-10-14 17:46:00 +02:00
|
|
|
package de.ellpeck.naturesaura.items;
|
|
|
|
|
2018-10-21 14:42:30 +02:00
|
|
|
import de.ellpeck.naturesaura.Helper;
|
2019-11-04 19:08:49 +01:00
|
|
|
import de.ellpeck.naturesaura.NaturesAura;
|
2018-11-21 20:36:55 +01:00
|
|
|
import de.ellpeck.naturesaura.api.render.ITrinketItem;
|
2019-10-20 22:30:49 +02:00
|
|
|
import com.mojang.blaze3d.platform.GlStateManager;
|
|
|
|
import net.minecraft.entity.player.PlayerEntity;
|
|
|
|
import net.minecraft.inventory.EquipmentSlotType;
|
2018-10-21 14:42:30 +02:00
|
|
|
import net.minecraft.item.ItemStack;
|
2019-10-20 22:30:49 +02:00
|
|
|
import net.minecraftforge.api.distmarker.Dist;
|
|
|
|
import net.minecraftforge.api.distmarker.OnlyIn;
|
2018-10-21 14:42:30 +02:00
|
|
|
|
2020-01-26 01:41:49 +01:00
|
|
|
public class ItemEye extends ItemImpl implements ITrinketItem {
|
2018-10-14 17:46:00 +02:00
|
|
|
|
2020-01-26 01:41:49 +01:00
|
|
|
public ItemEye(String name) {
|
2019-11-04 19:08:49 +01:00
|
|
|
super(name, new Properties().maxStackSize(1).group(NaturesAura.CREATIVE_TAB));
|
2018-10-14 17:46:00 +02:00
|
|
|
}
|
2018-10-21 14:42:30 +02:00
|
|
|
|
|
|
|
@Override
|
2019-10-20 22:30:49 +02:00
|
|
|
@OnlyIn(Dist.CLIENT)
|
|
|
|
public void render(ItemStack stack, PlayerEntity player, RenderType type, boolean isHolding) {
|
2018-11-02 21:10:53 +01:00
|
|
|
if (type == RenderType.BODY && !isHolding) {
|
2019-10-20 22:30:49 +02:00
|
|
|
boolean armor = !player.inventory.armorInventory.get(EquipmentSlotType.CHEST.getIndex()).isEmpty();
|
2019-11-04 19:08:49 +01:00
|
|
|
GlStateManager.translatef(0.1F, 0.225F, armor ? -0.195F : -0.1475F);
|
|
|
|
GlStateManager.scalef(0.15F, 0.15F, 0.15F);
|
|
|
|
GlStateManager.rotatef(180F, 1F, 0F, 0F);
|
2020-01-29 18:18:41 +01:00
|
|
|
//Helper.renderItemInWorld(stack);
|
2018-10-21 14:42:30 +02:00
|
|
|
}
|
|
|
|
}
|
2018-10-14 17:46:00 +02:00
|
|
|
}
|