Jump to content

[1.6.2]Changing a Specific Block's (x,y,z) Texture


Vemahk20

Recommended Posts

Hi, I'm trying to create a camouflage block just for the sake of knowing how its done and I've gotten to the point where the block changes to match that of what's around it but when that block texture changes all of the blocks of that type change with it so I was wondering if there was a specific function that changed a block's texture at a x,y,z coordinates.

 

Thanks!

Link to comment
Share on other sites

You are forgetting that the block class is a singleton and that "instances" of it in the world are not actually instances, but simply a numbered reference.

 

This thread, only a little ways down the first page on this very forum, will provide insight.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Hi

 

In general - if you want to change a specific block's texture at [x,y,z] this can be done in a couple of ways I can think of off the top of my head

i) by changing the block metadata (you will have 16 values to choose from), and overriding the rendering methods to choose the appropriate texture based on the metadata  - a number of the vanilla blocks do this, for example BlockWood.

ii) by placing a TileEntity at the specific location, and changing the rendering code (see registerTileEntity for a starting point)

 

In your case- as Draco18s said, look at the other thread for details, the easiest way is to add some custom code to the getBlockTexture method for your block.

 

-TGG

Link to comment
Share on other sites

You are forgetting that the block class is a singleton and that "instances" of it in the world are not actually instances, but simply a numbered reference.

 

This thread, only a little ways down the first page on this very forum, will provide insight.

 

I didn't forget it, i was just hoping that there would be a way around it without using a tile entity, which there appears not to... Thanks anyway

 

Link to comment
Share on other sites

You are forgetting that the block class is a singleton and that "instances" of it in the world are not actually instances, but simply a numbered reference.

 

This thread, only a little ways down the first page on this very forum, will provide insight.

 

I didn't forget it, i was just hoping that there would be a way around it without using a tile entity, which there appears not to... Thanks anyway

 

Look for my reply in that thread.  The one that starts "Ohsitdude, you don't need custom renderers or TileEntities for this."

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

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.