Jump to content

Changing block's texture to another


matezz

Recommended Posts

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.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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?

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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.

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.



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • ---- Minecraft Crash Report ---- // Don't do that. Time: 2024-06-14 03:22:57 MSK Description: Initializing game java.lang.IllegalAccessError: tried to access class org.spongepowered.asm.mixin.transformer.MixinProcessor from class net.minecraftforge.fml.common.Loader     at net.minecraftforge.fml.common.Loader.handler$zza000$beforeConstructingMods(Loader.java:1141)     at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:594)     at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:232)     at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:467)     at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:3931)     at net.minecraft.client.main.Main.main(SourceFile:123)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)     at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
    • Illegal packet received, terminating connection. net.minecraftforge.network.packets.ModVersions expected CLIENTBOUND CONFIGURATION but was CLIENTBOUND PLAY unable to join ANY multiplayer server when running 1.20.6 forge.
    • I am learning how to create my first mod. I have followed the first page of the following tutorial up to the Building and Testing Your Mod section: https://docs.minecraftforge.net/en/1.20.x/gettingstarted/ The Config.java class that is bundled in the MDK download uses the ResourceLocation.java class in two locations: private static boolean validateItemName(final Object obj) { return obj instanceof final String itemName && ForgeRegistries.ITEMS.containsKey(new ResourceLocation(itemName)); // <----- } /* ... */ static void onLoad(final ModConfigEvent event) { /* ... */ items = ITEM_STRINGS.get().stream() .map(itemName -> ForgeRegistries.ITEMS.getValue(new ResourceLocation(itemName))) // <----- .collect(Collectors.toSet()); } However, new ResourceLocation is underlined red on my Intellij IDE, with this popup when hovered on: 'ResourceLocation(java.lang.String, java.lang.String)' has private access in 'net.minecraft.resources.ResourceLocation' With this being RecourceLocation's constructor private ResourceLocation(String p_135811_, String p_135812_) { assert isValidNamespace(p_135811_); assert isValidPath(p_135812_); this.namespace = p_135811_; this.path = p_135812_; } In addition, this is the error that pops up while running the build task error: constructor ResourceLocation in class ResourceLocation cannot be applied to given types; return obj instanceof final String itemName && ForgeRegistries.ITEMS.containsKey(new ResourceLocation(itemName)); ^ required: String,String found: String What steps would I have to follow to follow to fix this?
    • I installed the Better End mod and all the mods that are needed for it to work on the forge. Everything works fine on the client. But when I try to do this on the server, an error occurs. Here is the log: https://drive.google.com/file/d/1meunzINHgcOS7kxXZqJSFhmdj4gq3OhY/view?usp=sharing Sinytra Connector is installed too. Minecraft vesion 1.20.1 Forge version is 47.3.0
  • Topics

×
×
  • Create New...

Important Information

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