Posted July 3, 201411 yr Hey Guys! I'm trying to create a bush, everything's working except that the texture isn't quite what I had in mind... I've checked the console, no trace that file hasn't been found. Here's the code for the two classes: https://gist.github.com/anonymous/2c0fa918e6ac560c636a#file-blockslimyparentcrop Thanks in advance for someone willing to help me
July 4, 201411 yr Also check your console for error messages indicating it isn't finding the texture asset. If you see those, then it means you either don't have the texture in the right place, or it can't be found because you didn't reference it properly. Check out my tutorials here: http://jabelarminecraft.blogspot.com/
July 4, 201411 yr Author @MoxEmerald Yes that seemed to do it! @jabelar Yip the textures are in the correct place This code seems to be working: Would you say this would be the way of going about it? @Override @SideOnly(Side.CLIENT) public IIcon getIcon(int side, int meta) { if (meta == 0) { return iIcon[0]; // Default when planted } else if (meta >= 4){ System.out.println("Ran through if. Meta is " + meta); return iIcon[4]; // If higher than max allowed then set to last stage which is iIcon[4] } else if (meta == 1) { return iIcon[meta]; // Which is 1 } else { System.out.println(getClass() + " Meta is " + meta); // If anything else print class and Meta is followed by metadata value return iIcon[meta]; } }
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.