Skip to content

Commit

Permalink
Update ClickGUIModule.kt
Browse files Browse the repository at this point in the history
  • Loading branch information
opZywl authored Jan 15, 2024
1 parent 0c807bc commit 0ebd502
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ object ClickGUIModule : Module() {
"Black",
"White"
),
"Astolfo"
"Black"
) {
override fun onChanged(oldValue: String, newValue: String) {
updateStyle()
}
}

val scaleValue = FloatValue("Scale", 0.70f, 0.7f, 2f)
val scaleValue = FloatValue("Scale", 1f, 0.7f, 2f)
val maxElementsValue = IntegerValue("MaxElements", 20, 1, 35)
var colorRainbow = BoolValue("Rainbow", true)
val colorRedValue = IntegerValue("R", 0, 0, 255).displayable { !colorRainbow.get() } as IntegerValue
Expand Down Expand Up @@ -100,4 +100,4 @@ object ClickGUIModule : Module() {
event.cancelEvent()
}
}
}
}

0 comments on commit 0ebd502

Please sign in to comment.