Add high performance rendering mode which does not render the GUI every frame

This commit is contained in:
johni0702
2015-07-16 16:18:26 +02:00
parent cbdaff9e41
commit 787942aef2
3 changed files with 9 additions and 1 deletions

View File

@@ -516,6 +516,10 @@ public class GuiRenderSettings extends GuiScreen {
options.setIgnoreCameraRotation(ignoreCamDir.isChecked());
if (isCtrlKeyDown()) {
options.setHighPerformance(true);
}
if(commandInput.getText().trim().length() > 0) {
options.setExportCommand(commandInput.getText().trim());
}