Jump to content

Recommended Posts

Posted

So, lets say I have the block dynamic_block, what I want is whenever I place the block, it sets the texture to whatever your looking at, but with an overlayed texture over the north face.

 

I am looking at the secret rooms mod but I can't figure out how it does it. (https://github.com/AbrarSyed/SecretRoomsMod-forge/blob/master/src/main/java/com/wynprice/secretroomsmod/)

 

Any help with what I would have to do, any examples or methods or whatever is appreciated.

 

I can't find anyone who asked a similar question and got the correct response. Secret rooms mod is all.

Posted

I found this method:

public static IBakedModel getModel(ResourceLocation resourceLocation)
			throws RuntimeException {
		IBakedModel bakedModel;
		IModel model;
		try {
			model = ModelLoaderRegistry.getModel(resourceLocation);
		} catch (Exception e) {
			throw new RuntimeException(e);
		}
		bakedModel = model.bake(TRSRTransformation.identity(),
				DefaultVertexFormats.BLOCK,
				location -> Minecraft.getMinecraft().getTextureMapBlocks()
						.getAtlasSprite(location.toString()));
		return bakedModel;
	}

It seems to turn a resourceLocation to a IBakedModel, but it doesn't add an overlay like I am trying to do.

 

I am currently trying to use TextureAltasSprite.load() to load the overlay onto the texture, but how would I overlay it onto a single side?

Posted

You need to take the model from the target block and combine it with a model that has the overlay, then bake and return that.

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.

Posted
On 6/24/2018 at 7:56 PM, Draco18s said:

You need to take the model from the target block and combine it with a model that has the overlay, then bake and return that.

Ok, how would I do so? I found MultiLayerModel but didn't really understand how to create an instance of it, and how to combine two ResourceLocations with it.

Posted (edited)

I have been searching around, and have not found much, but I have two ideas on how to get this to work, I just don't know how to do them.

 

My first idea is to take a model (the block) and overlay it with a lock model, but I don't know how to overlay two models (like replace pixels underneath with the ones above, not add another layer.)

 

My second is to make the lock model have the lock set as an outer layer, somehow change the regular model beneath to match the block, and set the MultiLayeredModel so it will load correctly. I've found threads on how to do multi layered models and am figuring out how to change models at runtime. I'm looking at ISmartModel and IPerspectiveAwareModel.

 

Thread i've found that might be useful: 

 

Edited by Big_Bad_E
Posted

Off the top of my head, no. It has been a while since I poked at it and don't remember a whole lot. 

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.

Posted

Oh, can you help me with merging textures? What method would I can to merge two model's textures? Like a chest model and a model with a texture thats a black square in the center and when combined it overlays the black box over the chest.

Posted

You can only do that during the TextureStitchEvent which is not a dynamic solution.

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

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