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

New to modding.

Learn from mcjty's tutorials

https://wiki.mcjty.eu/modding/index.php/Render_Block_Baked_Model-1.9

Want to set two type textures for every side. Just like RF energy storage show send/receive on each side.

game log: Crash Report start L477

http://paste.ubuntu.com/25666108/

codes here:

https://github.com/bxz2311196368/bxzpower/tree/master/src/main/java/com/bxzmod/energyconversion/blocks/blockmodel

I know error is here:

https://github.com/bxz2311196368/bxzpower/blob/master/src/main/java/com/bxzmod/energyconversion/blocks/blockmodel/PowerBlockBakedModel.java#L39

But I don't know how to repair it.

Edited by bxzsj

  • Author

Thank you! I made a stupid mistake.

I changed it to:

private TextureAtlasSprite sprite[] = new TextureAtlasSprite[2];

it works. 

But,I got another crash when rending item.

I'am sorry ,I don't know how item render works.So I don't know where it went wrong.

game log Crash Report start L608:

http://paste.ubuntu.com/25667178/

itemblock render at :

https://github.com/bxz2311196368/bxzpower/blob/master/src/main/java/com/bxzmod/energyconversion/blocks/BlockRenderLoader.java#L36

Caused by: java.io.FileNotFoundException: baubles:models/item/Ring.json
Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of 'mcmultipart:multipart' from: 'mcmultipart:blockstates/multipart.json' in resourcepack: 'FMLFileResourcePack:MCMultiPart'
Caused by: java.util.NoSuchElementException
[22:07:25] [Client thread/ERROR]:     The missing resources for domain minecraft are:
[22:07:25] [Client thread/ERROR]:       textures/#side.png
[22:07:25] [Client thread/ERROR]:       textures/#side_opaque.png
[22:07:25] [Client thread/ERROR]:       textures/#center_opaque.png
[22:07:25] [Client thread/ERROR]:       textures/#center.png
java.lang.NullPointerException: Rendering item
-- Item being rendered --
Details:
	Item Type: com.bxzmod.energyconversion.blocks.itemblock.PowerBlockItemBlock@1ede3958

 

Got a bit more than just a NPE (which might be caused by the bad model, depending on what JEI is doing). Also I don't know why one of your models is looking for textures that don't exist in the Minecraft domain.

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'm sorry , I don't know the meaning of the log.

Could you tell me what's wrong with it?

I only set two textures 

at https://github.com/bxz2311196368/bxzpower/blob/master/src/main/java/com/bxzmod/energyconversion/blocks/blockmodel/PowerBlockBakedModel.java#L39

	sprite[0] = bakedTextureGetter.apply(new ResourceLocation(Info.MODID, "blocks/power_block_in"));
	sprite[1] = bakedTextureGetter.apply(new ResourceLocation(Info.MODID, "blocks/power_block_out"));

https://github.com/bxz2311196368/bxzpower/blob/master/src/main/java/com/bxzmod/energyconversion/blocks/blockmodel/PowerBlockModel.java#L28

	@Override
	public Collection<ResourceLocation> getTextures()
	{
		return ImmutableSet.of(new ResourceLocation(Info.MODID, "blocks/power_block_in"),
				new ResourceLocation(Info.MODID, "blocks/power_block_out"));
	}

 

 

And there is a problem :

https://github.com/bxz2311196368/bxzpower/blob/master/src/main/java/com/bxzmod/energyconversion/blocks/blockmodel/PowerBlockBakedModel.java#L148

	@Override
	public TextureAtlasSprite getParticleTexture()
	{
		return sprite[0];
	}

I have two textures, but it can only return one, so I return one of them.

Please help me to check what's wrong.

34 minutes ago, bxzsj said:

Please don't embed the results as an HTML iframe, it shows up empty. There's a perfectly good "attach files" function that allows you to upload images.

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'm sorry, can you tell me where there are some documents or other tutorials about rendering, extended block state and something helpful for this?
I didn't see mentioned on the website.  https://mcforge.readthedocs.io/en/latest/
And the IBakedModel.java do not have annotations. I don't know what those methods means and how to use them.

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.