Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

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?

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.

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.

  • Author

so how can i change tileEntity texture?
I have that block:

bez--tytu--u.jpg.cf3b72dc107db6cbe3f0e68dabf03691.jpg

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.

  • 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?

  • Author

So instead of doing for each block new blockstate & model as another file in assets, i want to make it in code.

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.

  • Author

I just want to add new blockstate and model WITHOUT creating new file in assets. Only in code, maybe from String

  • 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

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.

  • Author

So no way to make it from code? Cuz i want to make it compatible with blocks from other mods as well

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.

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.