Posted March 8, 20205 yr Hello I want to create block, that after clicking on it with another block (anything, not only one block set), it will bind its texture. Is that possible, and how can i do this if it is?
March 8, 20205 yr Blocks don't have textures, they have models. There is no way to do this without using a TileEntity, I'm afraid. 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.
March 8, 20205 yr I'm not an expert, but maybe this is done using the states of blocks and models? The texture is indicated in the model, and when the state changes (when clicked or as you want) the model will change. If I'm wrong, correct me. If I helped you, don't forget like. I'm using a translator, sorry.
March 9, 20205 yr Author so how can i change tileEntity texture? I have that block: and i want that after someone will click on it with any block it will get its texture. Like if stone block click, it will get stone texture. So it have to get the stone texture and set "#texture" in that model to it.
March 16, 20205 yr Author Hey, got better and easier idea but i need help. How can i put json string as new blockstate and model? public static void register(){ Registry.BLOCK.forEach(block -> { if(block.getDefaultState().isSolid()){ ResourceLocation r = new ResourceLocation("wildnature:"+block.getRegistryName().getNamespace()+"_beams"); } }); } ResourceLocation r is a registry name for new block. Then i need to put like that new blockstate for that with changed data for each block, and model. Where and how can i register them?
March 16, 20205 yr Author So instead of doing for each block new blockstate & model as another file in assets, i want to make it in code.
March 16, 20205 yr 1 hour ago, matezz said: Hey, got better and easier idea but i need help. Its not better and easier if you get half way there and then have no clue what the next part is. I'm not even sure what you're trying to do, there. 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.
March 16, 20205 yr Author I just want to add new blockstate and model WITHOUT creating new file in assets. Only in code, maybe from String
March 16, 20205 yr Author So for example i want to add blockstate stick_block.json but instead doing it in file (so when i want to add 500 blocks with same blockstate and model, but with another texture i dont have to add file for each) i can do it in code and put blockstate json to String. Then just i can replace "texture" json tag with another for each block. And then use that in new blocks registered like i written earlier
March 16, 20205 yr You will have to make a new blockstate file for each block (unless they have custom tile renderers, which I haven't looked into). You can use the same model for all of those files I believe. Also, look into data generators, it will help you generate all the files from code, saving you a lot of time.
March 16, 20205 yr Author So no way to make it from code? Cuz i want to make it compatible with blocks from other mods as well
March 16, 20205 yr The "do it with code" way does not involve writing new blockstate json files or simulating them in any way. YOUR block has a tile entity that stores a block state of the block to "mimic." You then extract a texture from that blockstate's model and use it in a TileEntity renderer using your own geometry. You will need to figure out how to extract the desired texture from the model yourself. 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.
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.