Jump to content

Editing how an item is rendered between 1st and 3rd person


Briggybros

Recommended Posts

Hello, I'm trying to have an item that is rendered differently from others, so far I've been able to make it render as I want in 3rd person. However, it doesn't work in 1st person. I know that there are two render types for that EQUIPPED and EQUIPPED_FIRST_PERSON, what I need to know is how to change the way the item is rendered in 1st person. Any hints?

Link to comment
Share on other sites

I haven't done anything for the 1st person because I don't know where to start, but what I've done with the 3rd person is set up an event listener listening to the special player render, both pre and post, then executing my code, like so:

public class ClientListener {

@ForgeSubscribe(priority = EventPriority.NORMAL)
public void preItemRendered(Pre event) {
	ItemStack itemstack1 = event.entityPlayer.getCurrentEquippedItem();

	if (itemstack1 != null) {
		if (itemstack1.itemID == MyMod.MyItem1.itemID || itemstack1.itemID == MyMod.MyItem2.itemID) {
			event.renderItem = false;
		}
	}
}

@ForgeSubscribe(priority = EventPriority.NORMAL)
public void postItemRendered(Post event) {

		ItemStack itemstack1 = event.entityPlayer.getCurrentEquippedItem();

		if (itemstack1 != null) {
			if (itemstack1.itemID == MyMod.MyItem1.itemID || itemstack1.itemID == MyMod.MyItem2.itemID) {
				// Can't post code because Minecraft is closed source etc.
                                        // It's just a modified item renderer
			}
		}
}

private ModelBiped getModelBiped(RenderPlayer renderer) {
	try {
		Field f = renderer.getClass().getDeclaredField("modelBipedMain"); // NoSuchFieldException
		f.setAccessible(true);
		return (ModelBiped) f.get(renderer); // IllegalAccessException
	} catch (Exception e) {
		try {
			Field f = renderer.getClass().getDeclaredField("field_77109_a"); // NoSuchFieldException
			f.setAccessible(true);
			return (ModelBiped) f.get(renderer); // IllegalAccessException
		} catch (Exception e1) {
			e.printStackTrace();
			e1.printStackTrace();
			return null;
		}
	}
}

 

As you can see above, I cancel the rendering of the item, then I basically replace the code. Well kinda.. it works for me :)

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.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Yeah idk how to shut this down but it had something to do with parchment. It works now, I think I may have had the wrong version or something?
    • Recently while playing offline due to internet outages Malwarebytes identified Javaw.exe as malware, not thinking too much of it i deleted the file causing this error.  Unable to start Java. Error details: The requested operation requires elevation. Filename on disk: javaw.exe Path: C:\Users\---\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\javaw.exe Exists: File I reinstalled the file, same error occurred. I deleted CurseForge, over wolf and Minecraft and reinstalled them. Same error occurring. I have read starting Minecraft in administrator mode will help. I attempted to launch Minecraft through CurseForge in administrative mode this did not help.  I updated and downloaded the newest version of java, again receiving the same error. I updated Malwarebytes authorizing settings to allow for Javaw.exe through the pathway C:\Users\jacob\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\javaw.exe this did not assist either.  I am unsure of what to try next or what i am missing, i am not an expert with the complexities of these systems but any help to teach me or assist in problem solving would help. I also cannot find any debug logs or crash logs based on this specific circumstance.  The only thing that pops up when I search debug through the files is https://pastebin.com/WqMEvEn6.    
    • I have been trying my hardest to find the method to detect if the player is on the ground. I looked it up and people just say it like onGround always works, or isOnGround always works. Nothing shows up for me and the wording is red. I tried looking up an import but it doesn't seem to exist. I had to same issue with hasGlint, which turned out to be in the Item class and was isFoil instead. I even found the checkfalldamage method in the Living Entity class (I found this through looking at isFallFlying method and looking at usages) but it  uses its own variable to see if the player is on the ground, and I have NO idea where it gets that from! (It is called pOnGround) I am using Intellij, SDk 21, Language level 17, and the Forge version is 1.20.1-47.1.0. I Don't know where to look anymore and I feel like im going crazy.
    • I have been trying my hardest to find the method to detect if the player is on the ground. I looked it up and people just say it like onGround always works, or isOnGround always works. Nothing shows up for me and the wording is red. I tried looking up an import but it doesn't seem to exist. I had to same issue with hasGlint, which turned out to be in the Item class and was isFoil instead. I even found the checkfalldamage method in the Living Entity class (I found this through looking at isFallFlying method and looking at usages) but it  uses its own variable to see if the player is on the ground, and I have NO idea where it gets that from! (It is called pOnGround) I am using Intellij, SDk 21, Language level 17, and the Forge version is 1.20.1-47.1.0. I Don't know where to look anymore and I feel like im going crazy.
  • Topics

×
×
  • Create New...

Important Information

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