Jump to content

[1.7.2]/[1.7.10] [SOLVED] Texture Bush Troubles


makromoo

Recommended Posts

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.

 

ddp0z5.png

 

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 :)

Link to comment
Share on other sites

@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];

}

}

Link to comment
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.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  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.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.