Advertisement
Guest User

Model declaration

a guest
Oct 6th, 2016
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.88 KB | None | 0 0
  1.     public ItemNaquadah() {
  2.         super(ItemReference.NAQUADAH);
  3.         setHasSubtypes(true);
  4.         ModelLoader.setCustomModelResourceLocation(this, Type.INGOT.ordinal(), new ModelResourceLocation("StargateTech2:naquadah_ingot"));
  5.         ModelLoader.setCustomModelResourceLocation(this, Type.DUST.ordinal(), new ModelResourceLocation("StargateTech2:naquadah_dust"));
  6.         ModelLoader.setCustomModelResourceLocation(this, Type.PLATE.ordinal(), new ModelResourceLocation("StargateTech2:naquadah_plate"));
  7.         ModelLoader.setCustomModelResourceLocation(this, Type.CIRCUIT.ordinal(), new ModelResourceLocation("StargateTech2:naquadah_circuit"));
  8.         ModelLoader.setCustomModelResourceLocation(this, Type.COIL_NAQ.ordinal(), new ModelResourceLocation("StargateTech2:naquadah_coil"));
  9.         ModelLoader.setCustomModelResourceLocation(this, Type.COIL_END.ordinal(), new ModelResourceLocation("StargateTech2:naquadah_coil_end"));
  10.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement