You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
862 B
Java
15 lines
862 B
Java
package net.minecraft.util;
|
|
|
|
public class Facing
|
|
{
|
|
/** Converts a side to the opposite side. This is the same as XOR'ing it with 1. */
|
|
public static final int[] oppositeSide = new int[] {1, 0, 3, 2, 5, 4};
|
|
/** gives the offset required for this axis to get the block at that side. */
|
|
public static final int[] offsetsXForSide = new int[] {0, 0, 0, 0, -1, 1};
|
|
/** gives the offset required for this axis to get the block at that side. */
|
|
public static final int[] offsetsYForSide = new int[] { -1, 1, 0, 0, 0, 0};
|
|
/** gives the offset required for this axis to get the block at that side. */
|
|
public static final int[] offsetsZForSide = new int[] {0, 0, -1, 1, 0, 0};
|
|
public static final String[] facings = new String[] {"DOWN", "UP", "NORTH", "SOUTH", "WEST", "EAST"};
|
|
private static final String __OBFID = "CL_00001532";
|
|
} |