Skip to content

Commit

Permalink
adjust visual defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
sakura-ryoko committed Feb 9, 2025
1 parent db27ebf commit 4a18bd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/fi/dy/masa/litematica/config/Configs.java
Original file line number Diff line number Diff line change
Expand Up @@ -219,10 +219,10 @@ public static class Visuals
public static final ConfigBoolean RENDER_PLACEMENT_ENCLOSING_BOX_SIDES= new ConfigBoolean("renderPlacementEnclosingBoxSides", false).apply(VISUALS_KEY);
public static final ConfigBoolean RENDER_TRANSLUCENT_INNER_SIDES = new ConfigBoolean("renderTranslucentBlockInnerSides", false).apply(VISUALS_KEY);
public static final ConfigBoolean SCHEMATIC_OVERLAY_ENABLE_OUTLINES = new ConfigBoolean("schematicOverlayEnableOutlines", true).apply(VISUALS_KEY);
public static final ConfigBoolean SCHEMATIC_OVERLAY_ENABLE_RESORTING = new ConfigBoolean("schematicOverlayEnableResorting", false).apply(VISUALS_KEY);
public static final ConfigBoolean SCHEMATIC_OVERLAY_ENABLE_RESORTING = new ConfigBoolean("schematicOverlayEnableResorting", true).apply(VISUALS_KEY);
public static final ConfigBoolean SCHEMATIC_OVERLAY_ENABLE_SIDES = new ConfigBoolean("schematicOverlayEnableSides", true).apply(VISUALS_KEY);
public static final ConfigBoolean SCHEMATIC_OVERLAY_MODEL_OUTLINE = new ConfigBoolean("schematicOverlayModelOutline", true).apply(VISUALS_KEY);
public static final ConfigBoolean SCHEMATIC_OVERLAY_MODEL_SIDES = new ConfigBoolean("schematicOverlayModelSides", false).apply(VISUALS_KEY);
public static final ConfigBoolean SCHEMATIC_OVERLAY_MODEL_SIDES = new ConfigBoolean("schematicOverlayModelSides", true).apply(VISUALS_KEY);
public static final ConfigDouble SCHEMATIC_OVERLAY_OUTLINE_WIDTH = new ConfigDouble( "schematicOverlayOutlineWidth", 1.0, 0, 64).apply(VISUALS_KEY);
public static final ConfigDouble SCHEMATIC_OVERLAY_OUTLINE_WIDTH_THROUGH = new ConfigDouble("schematicOverlayOutlineWidthThrough", 3.0, 0, 64).apply(VISUALS_KEY);
public static final ConfigBoolean SCHEMATIC_OVERLAY_RENDER_THROUGH = new ConfigBoolean("schematicOverlayRenderThroughBlocks", false).apply(VISUALS_KEY);
Expand Down

0 comments on commit 4a18bd9

Please sign in to comment.