Posted March 30, 201312 yr I am almost finished making my first mod after following this tutorial:http://www.youtube.com/watch?v=zmxASGybkV8. I've got an error in my ClientProxy that I don't know how to fix: package cyborgcreeper.client; import cpw.mods.fml.client.registry.RenderingRegistry; import CyborgCreeperPackage.CommonProxy; import CyborgCreeperPackage.*; import net.minecraft.src.*; import net.minecraft.client.model.*; public class ClientProxy extends CommonProxy{ public void registerRenderInformation(){ RenderingRegistry.registerEntityRenderingHandler(EntityCyborgCreeper.class, new RenderCyborgCreeper(ModelCyborgCreeper(), 1.0F)); } } Can anyone help the error is at the new RenderCyborgCreeper part.
March 30, 201312 yr Author If I add it in front of the ModelCyborgCreeper I get this error: The constructor RenderCyborgCreeper(ModelCyborgCreeper, float) is undefined
March 30, 201312 yr Author But where to I need to define it? This is my first mod so not sure where stuff needs to go etc.
March 30, 201312 yr Author Ok, I've added that and there are no errors picked up by eclipse. However, when I load the game, it only spawns the shadow of the mob. The mob is there is you can move it but it isn't rendered. Any advice?
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.