7
7
import java .util .List ;
8
8
9
9
public class BlurConfig extends MidnightConfig {
10
- public static final String style = "style" ;
11
- public static final String screens = "screens" ;
10
+ public static final String STYLE = "style" ;
11
+ public static final String SCREENS = "screens" ;
12
12
13
-
14
- @ Entry (category = screens )
13
+ @ Entry (category = SCREENS )
15
14
public static List <String > blurExclusions = Lists .newArrayList (ChatScreen .class .getName (),
16
15
"com.replaymod.lib.de.johni0702.minecraft.gui.container.AbstractGuiOverlay$UserInputGuiScreen" ,
17
16
"ai.arcblroth.projectInception.client.InceptionInterfaceScreen" ,
18
17
"net.optifine.gui.GuiChatOF" ,
18
+ "baritone." ,
19
19
"io.github.darkkronicle.advancedchatcore.chat.AdvancedChatScreen" ,
20
- "net.coderbot.iris.gui.screen.ShaderPackScreen" );
21
- @ Entry (category = style , min = 0 , max = 5000 , width = 4 )
20
+ "net.coderbot.iris.gui.screen.ShaderPackScreen" ,
21
+ "eu.midnightdust.midnightcontrols.client.gui.TouchscreenOverlay" );
22
+ @ Entry (category = STYLE , min = 0 , max = 5000 , width = 4 )
22
23
public static int fadeTimeMillis = 200 ;
23
- @ Entry (category = style , min = 0 , max = 5000 , width = 4 )
24
+ @ Entry (category = STYLE , min = 0 , max = 5000 , width = 4 )
24
25
public static int fadeOutTimeMillis = 200 ;
25
- @ Entry (category = style )
26
+ @ Entry (category = STYLE )
26
27
public static boolean ease = true ;
27
- @ Entry (category = style , isSlider = true , min = 0 , max = 100 )
28
+ @ Entry (category = STYLE , isSlider = true , min = 0 , max = 100 )
28
29
public static int radius = 8 ;
29
- @ Entry (category = style , isColor = true , width = 7 , min = 7 )
30
+ @ Entry (category = STYLE , isColor = true , width = 7 , min = 7 )
30
31
public static String gradientStart = "#000000" ;
31
- @ Entry (category = style , isSlider = true , min = 0 , max = 255 )
32
+ @ Entry (category = STYLE , isSlider = true , min = 0 , max = 255 )
32
33
public static int gradientStartAlpha = 75 ;
33
- @ Entry (category = style , isColor = true , width = 7 , min = 7 )
34
+ @ Entry (category = STYLE , isColor = true , width = 7 , min = 7 )
34
35
public static String gradientEnd = "#000000" ;
35
- @ Entry (category = style , isSlider = true , min = 0 , max = 255 )
36
+ @ Entry (category = STYLE , isSlider = true , min = 0 , max = 255 )
36
37
public static int gradientEndAlpha = 75 ;
37
- @ Entry (category = screens )
38
+ @ Entry (category = SCREENS )
38
39
public static boolean showScreenTitle = false ;
39
40
}
0 commit comments