Add render option for hiding player name tags

This commit is contained in:
johni0702
2015-07-16 12:54:00 +02:00
parent 7790aee3cb
commit e6fcf4f094
5 changed files with 71 additions and 0 deletions

View File

@@ -21,6 +21,7 @@ public final class RenderOptions {
// Advanced
private boolean waitForChunks = true;
private boolean isLinearMovement = false;
private boolean hideNameTags = true;
private int skyColor = -1;
private int width = Minecraft.getMinecraft().displayWidth;
private int height = Minecraft.getMinecraft().displayHeight;
@@ -50,6 +51,7 @@ public final class RenderOptions {
copy.ignoreCameraRotation = this.ignoreCameraRotation;
copy.waitForChunks = this.waitForChunks;
copy.isLinearMovement = this.isLinearMovement;
copy.hideNameTags = this.hideNameTags;
copy.skyColor = this.skyColor;
copy.width = this.width;
copy.height = this.height;