You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/kotlin/floppacoding/mithras/module/impl/dungeon/DungeonMap.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ object DungeonMap : Module(
36
36
val mapBackground =ColorSetting("Background", Color(0, 0, 0, 100),true, visibility =Visibility.ADVANCED_ONLY, description ="Background Color for the map.")
37
37
val mapBorder =ColorSetting("Border", Color(0, 0, 0, 255),true, visibility =Visibility.ADVANCED_ONLY, description ="Border Color for the map.")
38
38
val chromaBorder =BooleanSetting("Chroma Border", true, visibility =Visibility.ADVANCED_ONLY, description ="Will add a chroma effect to your map border. The chroma can be configured in the ClickGui Module.")
39
-
val mapBorderWidth =NumberSetting("Border Width",3.0f,0.0f,10.0f,0.1f, visibility =Visibility.ADVANCED_ONLY, description ="Map border width.")
39
+
val mapBorderWidth =NumberSetting("Border Width",0.9f,0.0f,10.0f,0.1f, visibility =Visibility.ADVANCED_ONLY, description ="Map border width.")
val blur:BooleanSetting=+BooleanSetting("Blur", false, description ="Toggles the background blur for the gui.")
37
37
val color =+ColorSetting("Color", Color(255,200,0), false, description ="Color theme in the gui.")
38
38
val colorSettingMode =+SelectorSetting("Color Mode", ColorMode.HSB, description ="Mode for all color settings in the gui. Changes the way colors are put in.")
39
-
val clientName:StringSetting=+StringSetting("Name", "Project Mithras", description ="Name that will be rendered in the gui.")
39
+
val clientName:StringSetting=+StringSetting("Name", "Mithras", description ="Name that will be rendered in the gui.")
40
40
val prefixStyle =+SelectorSetting("Prefix Style", PrefixStyle.LONG, description ="Chat prefix selection for mod messages.")
41
-
val customPrefix =+StringSetting("Custom Prefix", "§0§l[§4§Project Mithras§0§l]§r", 40, description ="You can set a custom chat prefix that will be used when Custom is selected in the Prefix Style dropdown.")
41
+
val customPrefix =+StringSetting("Custom Prefix", "§0§l[§4§Mithras§0§l]§r", 40, description ="You can set a custom chat prefix that will be used when Custom is selected in the Prefix Style dropdown.")
42
+
@Suppress("unused") // These never need to be referenced as they update everything on their own.
42
43
val chromaSize by NumberSetting("Chroma Size", 0.5f, 0.0f, 1.0f, 0.01f, description ="Determines how rapidly the chroma pattern changes spatially.")
43
44
.onSet { size ->Shader.setChromaSize(size) }
45
+
@Suppress("unused")
44
46
val chromaSpeed by NumberSetting("Chroma Speed", 0.5f, 0.0f, 1.0f, 0.01f, description ="Determines how fast the chroma changes with time.")
45
47
.onSet { speed ->Shader.setChromaSpeed(speed) }
48
+
@Suppress("unused")
46
49
val chromaAngle by NumberSetting("Chroma Angle", 45.0f, 0.0f, 360.0f, 1.0f, description ="Determines the direction in which the chroma changes on your screen.")
47
50
.onSet { angle ->Shader.setChromaAngle(angle) }
51
+
@Suppress("unused")
48
52
val showUsageInfo =+BooleanSetting("Usage Info", true, visibility =Visibility.ADVANCED_ONLY, description ="Show info on how to use the GUI.")
0 commit comments