a few tweaks to ui elements
This commit is contained in:
parent
f76af105fd
commit
f7f1c17779
@ -42,7 +42,7 @@ minecraft {
|
||||
workingDirectory project.file("run/client")
|
||||
property "forge.logging.markers", "SCAN,REGISTRIES,REGISTRYDUMP"
|
||||
property "forge.logging.console.level", "debug"
|
||||
jvmArgs "-Xmx8G", "-Xms6G", "-Ddev"
|
||||
jvmArgs "-Xmx8G", "-Xms6G", "-Ddev", "-DvanillaBiomes"
|
||||
mods {
|
||||
terraforged {
|
||||
source sourceSets.main
|
||||
|
@ -65,6 +65,7 @@ import com.terraforged.mod.feature.TerrainHelper;
|
||||
import com.terraforged.mod.feature.predicate.TreeLine;
|
||||
import com.terraforged.mod.material.Materials;
|
||||
import com.terraforged.mod.material.geology.GeoManager;
|
||||
import com.terraforged.mod.util.Environment;
|
||||
import com.terraforged.mod.util.setup.SetupHooks;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.math.ChunkPos;
|
||||
@ -208,7 +209,7 @@ public class TerraChunkGenerator extends ObfHelperChunkGenerator<GenerationSetti
|
||||
postProcess(container.getChunkReader(), container, context);
|
||||
|
||||
// bake biome array & discard gen data
|
||||
((ChunkPrimer) chunk).func_225548_a_(container.bakeBiomes(false));
|
||||
((ChunkPrimer) chunk).func_225548_a_(container.bakeBiomes(Environment.isVanillaBiomes()));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -78,8 +78,8 @@ public class OverlayScreen extends Screen implements OverlayRenderer {
|
||||
|
||||
@Override
|
||||
public void render(int mouseX, int mouseY, float partial) {
|
||||
this.x = OverlayScreen.this.width - width - 12;
|
||||
this.y = 8;
|
||||
this.x = OverlayScreen.this.width - width - 13;
|
||||
this.y = 6;
|
||||
super.render(mouseX, mouseY, partial);
|
||||
}
|
||||
});
|
||||
|
@ -113,7 +113,7 @@ public class ScrollPane extends AbstractOptionList<ScrollPane.Entry> implements
|
||||
option.y = top;
|
||||
option.visible = true;
|
||||
option.setWidth(optionWidth);
|
||||
option.setHeight(height);
|
||||
option.setHeight(height - 1);
|
||||
if (option instanceof Preview) {
|
||||
option.setHeight(option.getWidth());
|
||||
}
|
||||
|
@ -33,7 +33,7 @@ public class CheckBox extends TerraButton implements Element {
|
||||
super(displayString);
|
||||
this.visible = true;
|
||||
this.width = 70;
|
||||
this.height = 16;
|
||||
this.height = 20;
|
||||
checked = isChecked;
|
||||
}
|
||||
|
||||
|
@ -25,13 +25,13 @@
|
||||
|
||||
package com.terraforged.mod.gui.element;
|
||||
|
||||
import net.minecraftforge.fml.client.gui.widget.ExtendedButton;
|
||||
import net.minecraft.client.gui.widget.button.Button;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
public class TerraButton extends ExtendedButton implements Element {
|
||||
public class TerraButton extends Button implements Element {
|
||||
|
||||
private final List<String> tooltip;
|
||||
|
||||
|
@ -195,7 +195,7 @@ public abstract class Page implements IGuiEventListener, OverlayRenderer {
|
||||
this.bottom = height - hpad;
|
||||
this.width = width;
|
||||
this.height = height;
|
||||
this.scrollPane = new ScrollPane(22);
|
||||
this.scrollPane = new ScrollPane(25);
|
||||
this.scrollPane.updateSize(width, height, 30, height - 30);
|
||||
this.scrollPane.setLeftPos(this.left);
|
||||
}
|
||||
|
@ -30,11 +30,16 @@ import com.terraforged.mod.Log;
|
||||
public class Environment {
|
||||
|
||||
private static final boolean dev = System.getProperty("dev") != null;
|
||||
private static final boolean vanillaBiomes = System.getProperty("vanillaBiomes") != null;
|
||||
|
||||
public static boolean isDev() {
|
||||
return dev;
|
||||
}
|
||||
|
||||
public static boolean isVanillaBiomes() {
|
||||
return vanillaBiomes;
|
||||
}
|
||||
|
||||
static {
|
||||
if (dev) {
|
||||
Log.info("Running in developer mode!");
|
||||
|
Loading…
Reference in New Issue
Block a user