Skip to content

Instantly share code, notes, and snippets.

@mooman219
Created May 10, 2013 22:29
Show Gist options
  • Save mooman219/5557914 to your computer and use it in GitHub Desktop.
Save mooman219/5557914 to your computer and use it in GitHub Desktop.
public void turn(Vector point) {
Vector diff = entity.getLocation().toVector().subtract(point);
float yaw = (float)(Math.toDegrees(Math.atan2(diff.getZ(), diff.getX())) + 270F);
look(yaw, 0F);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment