Jump to content

Recommended Posts

Posted

I need to get the 4-way cardinal direction of an entity in forge 1.12. I currently have code that partially does it that I found on the internet, but it does not always get the exact direction. For example, it might return west when I am facing east. The debug screen does exactly what I want, but I am not sure where to find the code for that. My current code:

/**
	 * Get the direction the entity is facing. Four possibilities.
	 * 
	 * @param source
	 * @return
	 */
	public static String getDirection(Entity source) {
	         String dir = "";
	         float y = source.rotationYaw;
	         if( y < 0 ){
	        	 y += 360;
	         }
	         
	         y %= 360;
	         
	         int i = (int)(y / 90);
	         
	         if(i == 1){dir = "west";}
	         else if (i == 2) {dir = "north";}
	         else if (i == 3) {dir = "east";}
	         else {dir = "south";}
	         
	         return dir;
	}

 

Posted

The debug info overlay is rendered by GuiOverlayDebug and GuiIngameForge.GuiOverlayDebugForge.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

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.