Skip to content

Commit 4acc091

Browse files
committed
Changed default cgui config
1 parent 5cbe0b1 commit 4acc091

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

common/src/main/kotlin/com/lambda/module/modules/client/ClickGui.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ object ClickGui : Module(
2323
val buttonStep by setting("Button Step", 0.0, 0.0..5.0, 0.1)
2424

2525
// Animation
26-
val openSpeed by setting("Open Speed", 0.6, 0.1..1.0, 0.01)
27-
val closeSpeed by setting("Close Speed", 0.7, 0.1..1.0, 0.01)
26+
val openSpeed by setting("Open Speed", 0.5, 0.1..1.0, 0.01)
27+
val closeSpeed by setting("Close Speed", 0.5, 0.1..1.0, 0.01)
2828

2929
init {
3030
onEnable {

common/src/main/kotlin/com/lambda/module/modules/client/GuiSettings.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ object GuiSettings : Module(
2727
// Colors
2828
val primaryColor by setting("Primary Color", Color(130, 200, 255), visibility = { page == Page.Colors })
2929
val secondaryColor by setting("Secondary Color", Color(225, 130, 225), visibility = { page == Page.Colors && (shade || shadeBackground) })
30-
val backgroundColor by setting("Background Color", Color(50, 50, 50), visibility = { page == Page.Colors })
30+
val backgroundColor by setting("Background Color", Color(50, 50, 50, 150), visibility = { page == Page.Colors })
3131
val shade by setting("Shade", true, visibility = { page == Page.Colors })
3232
val shadeBackground by setting("Shade Background", true, visibility = { page == Page.Colors })
3333
val colorWidth by setting("Color Width", 400.0, 10.0..1000.0, 10.0, visibility = { page == Page.Colors && (shade || shadeBackground) })

0 commit comments

Comments
 (0)