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

Hello, I am trying to create a mod which shows the angle of a sound. I mean, if a chicken cackles in your left, I want to be able to get exactly the angle of the chicken.

image.png.89569489dc9da7aa00166adedc65db9f.png

Sorry for the drawing but I think it makes an idea of what I want.

 

@SubscribeEvent
public static void soundAngle(PlaySoundEvent e){
    ISound sound = e.getResultSound();
}

 

Edited by Tatuck

	@SubscribeEvent
	public static void soundAngle(PlaySoundEvent e){
	    ClientPlayerEntity player = Minecraft.getInstance().player;
	    if(player != null) { //the event also triggers in the main menu, so this avoids crash
			ISound sound = e.getResultSound();
	    	double x = sound.getX() - player.getPosX(); //gets the position relative to the player
	    	double y = sound.getZ() - player.getPosZ();
	    	double angle = Math.atan2(y, x);			//converts two sides of a rectangle to an angle given in radians
	    	player.sendChatMessage(String.valueOf(angle));
	    }
	}

Something like this should work. In this code you get the angle relative to the world and not the player.

Edited by Thorius
More instructions

I wrote this in 1.15.2. The angle is given in radians. In any case you should test this solution whether or not it creates some errors in some special cases.

that's basically it, though a short instruction would be better that working code.

and be careful about sides or your mod will crash multiplayer games.

 

 

Well if you (Tatuck) want to know more about the subject, look into trigonometry. (in case you're not familiar with it)

I think you can find many good explanations on the internet, maybe videos will be helpfull. I think you can learn the basics of trigonometry pretty fast and then you can do so much more with 3D coordinates.

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.