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: common/src/main/kotlin/com/lambda/config/groups/BreakSettings.kt
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -62,16 +62,16 @@ class BreakSettings(
62
62
63
63
overrideval fill by c.setting("Fill", true, "Renders the sides of the box to display break progress") { vis() && page ==Page.Cosmetic&& renders }
64
64
overrideval dynamicFillColor by c.setting("Dynamic Colour", true, "Enables fill color interpolation from start to finish for fill when breaking a block") { vis() && page ==Page.Cosmetic&& renders && fill }
65
-
overrideval staticFillColor by c.setting("Fill Color", Color(255, 0, 0, 60), "The color of the fill") { vis() && page ==Page.Cosmetic&& renders &&!dynamicFillColor && fill }
66
-
overrideval startFillColor by c.setting("Start Fill Color", Color(255, 0, 0, 60), "The color of the fill at the start of breaking") { vis() && page ==Page.Cosmetic&& renders && dynamicFillColor && fill }
67
-
overrideval endFillColor by c.setting("End Fill Color", Color(0, 255, 0, 60), "The color of the fill at the end of breaking") { vis() && page ==Page.Cosmetic&& renders && dynamicFillColor && fill }
65
+
overrideval staticFillColor by c.setting("Fill Color", Color(255, 0, 0, 60).brighter(), "The color of the fill") { vis() && page ==Page.Cosmetic&& renders &&!dynamicFillColor && fill }
66
+
overrideval startFillColor by c.setting("Start Fill Color", Color(255, 0, 0, 60).brighter(), "The color of the fill at the start of breaking") { vis() && page ==Page.Cosmetic&& renders && dynamicFillColor && fill }
67
+
overrideval endFillColor by c.setting("End Fill Color", Color(0, 255, 0, 60).brighter(), "The color of the fill at the end of breaking") { vis() && page ==Page.Cosmetic&& renders && dynamicFillColor && fill }
68
68
69
69
overrideval outline by c.setting("Outline", true, "Renders the lines of the box to display break progress") { vis() && page ==Page.Cosmetic&& renders }
70
70
overrideval outlineWidth by c.setting("Outline Width", 2, 0..5, 1, "The width of the outline") { vis() && page ==Page.Cosmetic&& renders && outline }
71
71
overrideval dynamicOutlineColor by c.setting("Dynamic Outline Color", true, "Enables color interpolation from start to finish for the outline when breaking a block") { vis() && page ==Page.Cosmetic&& renders && outline }
72
-
overrideval staticOutlineColor by c.setting("Outline Color", Color(255, 0, 0, 255), "The Color of the outline at the start of breaking") { vis() && page ==Page.Cosmetic&& renders &&!dynamicOutlineColor && outline }
73
-
overrideval startOutlineColor by c.setting("Start Outline Color", Color(255, 0, 0, 255), "The color of the outline at the start of breaking") { vis() && page ==Page.Cosmetic&& renders && dynamicOutlineColor && outline }
74
-
overrideval endOutlineColor by c.setting("End Outline Color", Color(0, 255, 0, 255), "The color of the outline at the end of breaking") { vis() && page ==Page.Cosmetic&& renders && dynamicOutlineColor && outline }
72
+
overrideval staticOutlineColor by c.setting("Outline Color", Color.RED.brighter(), "The Color of the outline at the start of breaking") { vis() && page ==Page.Cosmetic&& renders &&!dynamicOutlineColor && outline }
73
+
overrideval startOutlineColor by c.setting("Start Outline Color", Color.RED.brighter(), "The color of the outline at the start of breaking") { vis() && page ==Page.Cosmetic&& renders && dynamicOutlineColor && outline }
74
+
overrideval endOutlineColor by c.setting("End Outline Color", Color.GREEN.brighter(), "The color of the outline at the end of breaking") { vis() && page ==Page.Cosmetic&& renders && dynamicOutlineColor && outline }
privateval startColor by setting("Start Color", Color(255, 255, 0, 60), "The color of the start (closest to breaking) of the queue") { queue && renderQueue && dynamicColor }
77
-
privateval endColor by setting("End Color", Color(255, 0, 0, 60), "The color of the end (farthest from breaking) of the queue") { queue && renderQueue && dynamicColor }
privateval startColor by setting("Start Color", Color(255, 255, 0, 60).brighter(), "The color of the start (closest to breaking) of the queue") { queue && renderQueue && dynamicColor }
77
+
privateval endColor by setting("End Color", Color(255, 0, 0, 60).brighter(), "The color of the end (farthest from breaking) of the queue") { queue && renderQueue && dynamicColor }
0 commit comments