Jump to content
  • Home
  • Files
  • Docs
  • Merch
Topics
  • All Content

  • This Topic
  • This Forum

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • Mod Developer Central
  • Modder Support
  • Custom Rendered Item
1.13 Update Notes for Mod Creators
Sign in to follow this  
Followers 0
majesticmadman98

Custom Rendered Item

By majesticmadman98, May 30, 2014 in Modder Support

  • Reply to this topic
  • Start new topic

Recommended Posts

majesticmadman98    1

majesticmadman98

majesticmadman98    1

  • Creeper Killer
  • majesticmadman98
  • Members
  • 1
  • 209 posts
Posted May 30, 2014

Never made a custom rendered item before, so I'm trying to use similar method to how a block is done. I've got to a point where there's no errors but the item doesn't render in game it's just a flat item with a missing texture. I think the error is in the client proxy but not sure, thanks in advance. Sorry forgot spoilers

 

Main:

package dma.main;

 

import net.minecraft.block.Block;

import net.minecraft.block.material.Material;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.init.Blocks;

import net.minecraft.init.Items;

import net.minecraft.item.Item;

import net.minecraft.item.ItemStack;

import cpw.mods.fml.common.Mod;

import cpw.mods.fml.common.Mod.EventHandler;

import cpw.mods.fml.common.SidedProxy;

import cpw.mods.fml.common.event.FMLInitializationEvent;

import cpw.mods.fml.common.event.FMLPreInitializationEvent;

import cpw.mods.fml.common.registry.GameRegistry;

import dma.block.DalekConsole2;

import dma.items.SonicScrewdriver;

import dma.proxies.CommonProxy;

 

@Mod(modid = "dma", name = "Dalek Mod Addon", version = "1.0.0")

 

public class main {public static final String MODID = "dma";

public static final String VERSION = "1.0";

 

public static Block DalekConsole2;

public static Item sonic;

 

@SidedProxy(clientSide = "dma.proxies.ClientProxy", serverSide = "dma.proxies.CommonProxy")

public static CommonProxy Proxy;

 

@EventHandler

public void preInit(FMLPreInitializationEvent event){

 

/*public static CreativeTabs dmaTab = new CreativeTabs("dmatab"){

  @Override

  public Item getTabIconItem() {

        return Items.baked_potato;

}

    }; */

   

DalekConsole2 = new DalekConsole2(Material.rock).setBlockName("DalekConsole2");

GameRegistry.registerBlock(DalekConsole2, "DalekConsole2");

 

sonic = new SonicScrewdriver().setUnlocalizedName("SonicScrewdriver");

GameRegistry.registerItem(sonic, "SonicScrewdriver");

 

Proxy.registerRenderThings();

}

 

 

 

@EventHandler

public void init(FMLInitializationEvent event)

{

   

}

}

 

 

Item:

package dma.items;

 

import dma.tileentity.TileEntityDalekConsole2;

import dma.tileentity.TileEntitySonicScrewdriver;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.item.Item;

import net.minecraft.tileentity.TileEntity;

import net.minecraft.world.World;

 

public class SonicScrewdriver extends Item{

 

public SonicScrewdriver() {

setCreativeTab(CreativeTabs.tabTools);

 

}

public int getRenderType() {

return -1;

}

public TileEntity createNewTileEntity(World var1, int var2) {

return new TileEntitySonicScrewdriver();

}

 

 

}

 

 

Client Proxy:

package dma.proxies;

 

import renderer.RenderDalekConsole2;

import cpw.mods.fml.client.registry.ClientRegistry;

import dma.tileentity.TileEntityDalekConsole2;

import dma.tileentity.TileEntitySonicScrewdriver;

import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;

import net.minecraft.item.Item;

import net.minecraftforge.client.MinecraftForgeClient;

 

public class ClientProxy extends CommonProxy{

public void registerRenderThings() {

//dalek console 2

TileEntitySpecialRenderer render = new RenderDalekConsole2();

ClientRegistry.bindTileEntitySpecialRenderer(TileEntityDalekConsole2.class, render);

 

//sonic

TileEntitySpecialRenderer render1 = new RenderDalekConsole2();

ClientRegistry.bindTileEntitySpecialRenderer(TileEntitySonicScrewdriver.class, render);

 

 

}

public void registerTileEntitySpecialRenderer() {

}

}

 

Tile Entity:package dma.tileentity;

 

import net.minecraft.tileentity.TileEntity;

 

public class TileEntitySonicScrewdriver extends TileEntity{

 

}

 

 

Render:

package renderer;

 

import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;

import net.minecraft.item.ItemStack;

import net.minecraft.tileentity.TileEntity;

import net.minecraft.util.ResourceLocation;

import net.minecraftforge.client.IItemRenderer;

 

import org.lwjgl.opengl.GL11;

 

import dma.items.SonicScrewdriver;

import dma.main.main;

import dma.models.DalekConsole2;

import dma.models.sonic;

 

public class RenderSonicScrewdriver implements IItemRenderer{

 

private static final ResourceLocation texture = new ResourceLocation(main.MODID + ":" + "textures/models/Sonic.png");

 

 

TileEntitySpecialRenderer render;

private TileEntity entity;

 

public RenderSonicScrewdriver(TileEntitySpecialRenderer render, TileEntity entity){

this.entity = entity;

this.render = render;

}

@Override

public boolean handleRenderType(ItemStack item, ItemRenderType type) {

 

return false;

}

 

@Override

public boolean shouldUseRenderHelper(ItemRenderType type, ItemStack item,

ItemRendererHelper helper) {

return false;

}

 

@Override

public void renderItem(ItemRenderType type, ItemStack item, Object... data) {

if(type == IItemRenderer.ItemRenderType.ENTITY)

GL11.glTranslatef(-0.5F, 0F, -0.5F);

this.render.renderTileEntityAt(this.entity, 0.0D, 0.0D, 0.0D, 0.0F);

 

}

 

 

 

 

}

 

 

model:

 

package dma.models;

 

import net.minecraft.client.model.ModelBase;

import net.minecraft.client.model.ModelRenderer;

import net.minecraft.entity.Entity;

 

public class sonic extends ModelBase

{

  //fields

    ModelRenderer Shape2;

    ModelRenderer Shape1;

    ModelRenderer Shape4;

    ModelRenderer Shape5;

    ModelRenderer Shape6;

    ModelRenderer Shape7;

    ModelRenderer Shape9;

    ModelRenderer Shape8;

    ModelRenderer Shape3;

    ModelRenderer Shape10;

    ModelRenderer Shape11;

    ModelRenderer Shape12;

    ModelRenderer Shape13;

    ModelRenderer Shape14;

    ModelRenderer Shape15;

    ModelRenderer Shape16;

    ModelRenderer Shape17;

    ModelRenderer Shape18;

    ModelRenderer Shape19;

    ModelRenderer Shape20;

    ModelRenderer Shape21;

 

  public sonic()

  {

    textureWidth = 64;

    textureHeight = 32;

   

      Shape2 = new ModelRenderer(this, 0, 29);

      Shape2.addBox(0F, 0F, 0F, 1, 2, 1);

      Shape2.setRotationPoint(0F, -8F, 0F);

      Shape2.setTextureSize(64, 32);

      Shape2.mirror = true;

      setRotation(Shape2, 0F, 0F, 0F);

      Shape1 = new ModelRenderer(this, 4, 29);

      Shape1.addBox(-0.5F, -2F, -0.5F, 1, 2, 1);

      Shape1.setRotationPoint(0.5F, -7.8F, 0.5F);

      Shape1.setTextureSize(64, 32);

      Shape1.mirror = true;

      setRotation(Shape1, 0F, 0F, 0.2443461F);

      Shape4 = new ModelRenderer(this, 0, 29);

      Shape4.addBox(0F, 0F, 0F, 1, 2, 1);

      Shape4.setRotationPoint(4F, -8F, 0F);

      Shape4.setTextureSize(64, 32);

      Shape4.mirror = true;

      setRotation(Shape4, 0F, 0F, 0F);

      Shape5 = new ModelRenderer(this, 4, 29);

      Shape5.addBox(-0.5F, -2F, -0.5F, 1, 2, 1);

      Shape5.setRotationPoint(4.5F, -7.8F, 0.5F);

      Shape5.setTextureSize(64, 32);

      Shape5.mirror = true;

      setRotation(Shape5, 0F, 0F, -0.2443461F);

      Shape6 = new ModelRenderer(this, 4, 29);

      Shape6.addBox(-0.5F, -2F, -0.5F, 1, 2, 1);

      Shape6.setRotationPoint(2.5F, -7.8F, 2.5F);

      Shape6.setTextureSize(64, 32);

      Shape6.mirror = true;

      setRotation(Shape6, 0.2443461F, 0F, 0F);

      Shape7 = new ModelRenderer(this, 0, 29);

      Shape7.addBox(0F, 0F, 0F, 1, 2, 1);

      Shape7.setRotationPoint(2F, -8F, 2F);

      Shape7.setTextureSize(64, 32);

      Shape7.mirror = true;

      setRotation(Shape7, 0F, 0F, 0F);

      Shape9 = new ModelRenderer(this, 4, 29);

      Shape9.addBox(-0.5F, -2F, -0.5F, 1, 2, 1);

      Shape9.setRotationPoint(2.5F, -7.8F, -1.5F);

      Shape9.setTextureSize(64, 32);

      Shape9.mirror = true;

      setRotation(Shape9, -0.2443461F, 0F, 0F);

      Shape8 = new ModelRenderer(this, 0, 29);

      Shape8.addBox(0F, 0F, 0F, 1, 2, 1);

      Shape8.setRotationPoint(2F, -8F, -2F);

      Shape8.setTextureSize(64, 32);

      Shape8.mirror = true;

      setRotation(Shape8, 0F, 0F, 0F);

      Shape3 = new ModelRenderer(this, 0, 23);

      Shape3.addBox(0F, 0F, 0F, 4, 1, 4);

      Shape3.setRotationPoint(0.5F, -6F, -1.5F);

      Shape3.setTextureSize(64, 32);

      Shape3.mirror = true;

      setRotation(Shape3, 0F, 0F, 0F);

      Shape10 = new ModelRenderer(this, 0, 0);

      Shape10.addBox(0F, 0F, 0F, 1, 1, 1);

      Shape10.setRotationPoint(4F, -6F, 0F);

      Shape10.setTextureSize(64, 32);

      Shape10.mirror = true;

      setRotation(Shape10, 0F, 0F, 0F);

      Shape11 = new ModelRenderer(this, 0, 0);

      Shape11.addBox(0F, 0F, 0F, 1, 1, 1);

      Shape11.setRotationPoint(2F, -6F, 2F);

      Shape11.setTextureSize(64, 32);

      Shape11.mirror = true;

      setRotation(Shape11, 0F, 0F, 0F);

      Shape12 = new ModelRenderer(this, 0, 0);

      Shape12.addBox(0F, 0F, 0F, 1, 1, 1);

      Shape12.setRotationPoint(2F, -6F, -2F);

      Shape12.setTextureSize(64, 32);

      Shape12.mirror = true;

      setRotation(Shape12, 0F, 0F, 0F);

      Shape13 = new ModelRenderer(this, 0, 0);

      Shape13.addBox(0F, 0F, 0F, 1, 1, 1);

      Shape13.setRotationPoint(0F, -6F, 0F);

      Shape13.setTextureSize(64, 32);

      Shape13.mirror = true;

      setRotation(Shape13, 0F, 0F, 0F);

      Shape14 = new ModelRenderer(this, 8, 28);

      Shape14.addBox(0F, 0F, 0F, 1, 3, 1);

      Shape14.setRotationPoint(2F, -9F, 0F);

      Shape14.setTextureSize(64, 32);

      Shape14.mirror = true;

      setRotation(Shape14, 0F, 0F, 0F);

      Shape15 = new ModelRenderer(this, 0, 16);

      Shape15.addBox(0F, 1F, 0F, 5, 2, 5);

      Shape15.setRotationPoint(0F, -6F, -2F);

      Shape15.setTextureSize(64, 32);

      Shape15.mirror = true;

      setRotation(Shape15, 0F, 0F, 0F);

      Shape16 = new ModelRenderer(this, 16, 27);

      Shape16.addBox(0F, 0F, 0F, 4, 1, 4);

      Shape16.setRotationPoint(0.5F, -3F, -1.5F);

      Shape16.setTextureSize(64, 32);

      Shape16.mirror = true;

      setRotation(Shape16, 0F, 0F, 0F);

      Shape17 = new ModelRenderer(this, 0, 9);

      Shape17.addBox(0F, 0F, 0F, 5, 2, 5);

      Shape17.setRotationPoint(0F, -2F, -2F);

      Shape17.setTextureSize(64, 32);

      Shape17.mirror = true;

      setRotation(Shape17, 0F, 0F, 0F);

      Shape18 = new ModelRenderer(this, 48, 4);

      Shape18.addBox(0F, 0F, 0F, 4, 24, 4);

      Shape18.setRotationPoint(0.5F, 0F, -1.5F);

      Shape18.setTextureSize(64, 32);

      Shape18.mirror = true;

      setRotation(Shape18, 0F, 0F, 0F);

      Shape19 = new ModelRenderer(this, 20, 20);

      Shape19.addBox(0F, 0F, 0F, 3, 6, 1);

      Shape19.setRotationPoint(1F, 4F, -2F);

      Shape19.setTextureSize(64, 32);

      Shape19.mirror = true;

      setRotation(Shape19, 0F, 0F, 0F);

      Shape20 = new ModelRenderer(this, 28, 21);

      Shape20.addBox(0F, 0F, 0F, 5, 1, 5);

      Shape20.setRotationPoint(0F, 12F, -2F);

      Shape20.setTextureSize(64, 32);

      Shape20.mirror = true;

      setRotation(Shape20, 0F, 0F, 0F);

      Shape21 = new ModelRenderer(this, 28, 9);

      Shape21.addBox(0F, 0F, 0F, 5, 7, 5);

      Shape21.setRotationPoint(0F, 17.1F, -2F);

      Shape21.setTextureSize(64, 32);

      Shape21.mirror = true;

      setRotation(Shape21, 0F, 0F, 0F);

  }

 

  public void render(Entity entity, float f, float f1, float f2, float f3, float f4, float f5)

  {

    super.render(entity, f, f1, f2, f3, f4, f5);

    setRotationAngles(f, f1, f2, f3, f4, f5, entity);

    Shape2.render(f5);

    Shape1.render(f5);

    Shape4.render(f5);

    Shape5.render(f5);

    Shape6.render(f5);

    Shape7.render(f5);

    Shape9.render(f5);

    Shape8.render(f5);

    Shape3.render(f5);

    Shape10.render(f5);

    Shape11.render(f5);

    Shape12.render(f5);

    Shape13.render(f5);

    Shape14.render(f5);

    Shape15.render(f5);

    Shape16.render(f5);

    Shape17.render(f5);

    Shape18.render(f5);

    Shape19.render(f5);

    Shape20.render(f5);

    Shape21.render(f5);

  }

  public void renderModel(float f){

  Shape1.render(f);

    Shape4.render(f);

    Shape5.render(f);

    Shape6.render(f);

    Shape7.render(f);

    Shape9.render(f);

    Shape8.render(f);

    Shape3.render(f);

    Shape10.render(f);

    Shape11.render(f);

    Shape12.render(f);

    Shape13.render(f);

    Shape14.render(f);

    Shape15.render(f);

    Shape16.render(f);

    Shape17.render(f);

    Shape18.render(f);

    Shape19.render(f);

    Shape20.render(f);

    Shape21.render(f);

 

  }

 

  private void setRotation(ModelRenderer model, float x, float y, float z)

  {

    model.rotateAngleX = x;

    model.rotateAngleY = y;

    model.rotateAngleZ = z;

  }

 

  public void setRotationAngles(float f, float f1, float f2, float f3, float f4, float f5, Entity entity)

  {

    super.setRotationAngles(f, f1, f2, f3, f4, f5, entity);

  }

 

}

 

 

  • Quote

Share this post


Link to post
Share on other sites

Xcox123    1

Xcox123

Xcox123    1

  • Stone Miner
  • Xcox123
  • Members
  • 1
  • 96 posts
Posted May 30, 2014

What do you mean by Custom Rendered Item? Is that a Custom Rendered Block but rendering in hand, or what? :P

  • Quote

Share this post


Link to post
Share on other sites

coolboy4531    66

coolboy4531

coolboy4531    66

  • Dragon Slayer
  • coolboy4531
  • Members
  • 66
  • 584 posts
Posted May 30, 2014

Two things.

 

You haven't even set a texture location (path) for your item, no wonder it shows a missing texture.

If I remember you need to bind/set both models and textures to "that" specific item.

 

Take a look at this. Although it's outdated, I bet you can find a way to work around the methods and things. c:

 

  • Quote

Share this post


Link to post
Share on other sites

majesticmadman98    1

majesticmadman98

majesticmadman98    1

  • Creeper Killer
  • majesticmadman98
  • Members
  • 1
  • 209 posts
Posted May 31, 2014

I know i Haven't set an item texture for the tool bar, first thing is to get the model to render, then get the model textured then do the icon. I'll have a look at that tutorial thanks

  • Quote

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Insert image from URL
×
  • Desktop
  • Tablet
  • Phone
Sign in to follow this  
Followers 0
Go To Topic Listing



  • Recently Browsing

    No registered users viewing this page.

  • Posts

    • AdieCraft
      Japanese Style Temple Base

      By AdieCraft · Posted 45 minutes ago

      Hello there!   Check out my latest tutorial in my Japanese Builds series, building a Japanese Temple base.   Make sure to Subscribe, so you don't miss any future videos.   Thanks   Adie   Japanese Style Temple Base    
    • DaemonUmbra
      Forge crashes on start

      By DaemonUmbra · Posted 1 hour ago

      Forge for 1.13+ requires Java 8-10 Forge for 1.12.2- requires Java 8
    • GttiqwT
      [1.12.2] Multiple Structure Generation

      By GttiqwT · Posted 1 hour ago

      Yeah I get where you're coming from. I also watched harry talk's tutorial and at first it worked but then I got the problem that it wont spawn more than one structure otherwise it'll overlap and only spawn the latest one added. I tried to follow this tutorial again and it just didnt seem to work at all now. When I get more time ill have to do it again and then afterwards try and fix the issues with spawning more than one structure. I'm currently trying to fix the issue where it causes cascading gen lag but I dont know how to fix that quite yet either.
    • Draco18s
      Distinguish singleplayer vs. multiplayer

      By Draco18s · Posted 2 hours ago

      No. Your client code is sending information to make the server do things. Your server code is telling the server to do those same things (again).
    • solitone
      Distinguish singleplayer vs. multiplayer

      By solitone · Posted 2 hours ago

      This isn’t an issue but normal behaviour, is it?
  • Topics

    • AdieCraft
      0
      Japanese Style Temple Base

      By AdieCraft
      Started 46 minutes ago

    • bitman
      1
      Forge crashes on start

      By bitman
      Started 2 hours ago

    • Merthew
      7
      [1.12.2] Multiple Structure Generation

      By Merthew
      Started November 7, 2018

    • solitone
      24
      Distinguish singleplayer vs. multiplayer

      By solitone
      Started December 5

    • TheGreenSquarez
      5
      Forge 28.1.10 won't show on launcher + 28.1.0 fails to work

      By TheGreenSquarez
      Started Wednesday at 11:21 AM

  • Who's Online (See full list)

    • Choonster
    • Adorablorp
    • vnldwth
    • prozed
  • All Activity
  • Home
  • Mod Developer Central
  • Modder Support
  • Custom Rendered Item
  • Theme
  • Contact Us
  • Discord

Copyright © 2019 ForgeDevelopment LLC · Ads by Curse Powered by Invision Community