Guest User

cad435_IJ

a guest
Dec 7th, 2014
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.52 KB | None | 0 0
  1. package com.nextlevelminecraft.cad435.ObjLoader;
  2.  
  3. import cpw.mods.fml.common.Mod;
  4. import net.minecraft.util.ResourceLocation;
  5. import net.minecraftforge.client.model.AdvancedModelLoader;
  6. import net.minecraftforge.client.model.IModelCustom;
  7.  
  8.  
  9. @Mod(modid = "ObjLoader", name = "ObjLoader", version = "0.1")
  10.  
  11. public class ObjLoader {
  12.     ResourceLocation LocationTestModel = new ResourceLocation("objloader", "models/mymodel.obj");
  13.     IModelCustom TestModel = AdvancedModelLoader.loadModel(LocationTestModel);
  14.  
  15.  
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment