Blur 2.2.1 - 1.17

Update to MidnightConfig v1.0.4
This commit is contained in:
Motschen
2021-06-21 18:24:25 +02:00
parent 994a975c6c
commit b77190c602
7 changed files with 399 additions and 301 deletions

View File

@@ -1,16 +1,17 @@
package com.tterrag.blur.config;
import eu.midnightdust.lib.config.MidnightConfig;
import net.minecraft.client.gui.screen.ChatScreen;
public class BlurConfig extends MidnightConfig {
@Entry
public static String[] blurExclusions = new String[]{ ChatScreen.class.getName() };
@Entry(min = 0, max = 5000)
@Entry(min = 0, max = 5000, width = 4)
public static int fadeTimeMillis = 200;
@Entry(min = 0, max = 500)
@Entry(min = 0, max = 500, width = 3)
public static int radius = 8;
@Entry(min = 0, max = 99999999)
@Entry(min = 0, max = 99999999, width = 8)
public static int gradientStartColor = 75000000;
@Entry(min = 0, max = 99999999)
@Entry(min = 0, max = 99999999, width = 8)
public static int gradientEndColor = 75000000;
}