From b6c156daa6d98920e14f04b68a88692e5cef602c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Fa=C3=9Fbender?= Date: Tue, 2 Dec 2014 00:02:30 +0100 Subject: Support the new Rotation values. --- src/main/java/org/bukkit/Rotation.java | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) (limited to 'src/main/java') diff --git a/src/main/java/org/bukkit/Rotation.java b/src/main/java/org/bukkit/Rotation.java index dfdb0e5a..5d059eae 100644 --- a/src/main/java/org/bukkit/Rotation.java +++ b/src/main/java/org/bukkit/Rotation.java @@ -11,18 +11,34 @@ public enum Rotation { * No rotation */ NONE, + /** + * Rotated clockwise by 45 degrees + */ + CLOCKWISE_45, /** * Rotated clockwise by 90 degrees */ CLOCKWISE, + /** + * Rotated clockwise by 135 degrees + */ + CLOCKWISE_135, /** * Flipped upside-down, a 180 degree rotation */ FLIPPED, + /** + * Flipped upside-down + 45 degree rotation + */ + FLIPPED_45, /** * Rotated counter-clockwise by 90 degrees */ COUNTER_CLOCKWISE, + /** + * Rotated counter-clockwise by 45 degrees + */ + COUNTER_CLOCKWISE_45 ; private static final Rotation [] rotations = values(); @@ -33,7 +49,7 @@ public enum Rotation { * @return the relative rotation */ public Rotation rotateClockwise() { - return rotations[(this.ordinal() + 1) & 0x3]; + return rotations[(this.ordinal() + 1) & 0x7]; } /** @@ -42,6 +58,6 @@ public enum Rotation { * @return the relative rotation */ public Rotation rotateCounterClockwise() { - return rotations[(this.ordinal() - 1) & 0x3]; + return rotations[(this.ordinal() - 1) & 0x7]; } } -- cgit v1.2.3