From 9234829c2aeb4ca7e2d270273a803dc6e98fd889 Mon Sep 17 00:00:00 2001 From: Wyvest <45589059+Wyvest@users.noreply.github.com> Date: Sat, 14 Jan 2023 15:23:07 -0500 Subject: add smooth messages --- src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt') diff --git a/src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt b/src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt index 86db2cc..d0cfd71 100644 --- a/src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt +++ b/src/main/kotlin/cc/woverflow/chatting/config/ChattingConfig.kt @@ -32,7 +32,7 @@ object ChattingConfig : Config( @Switch( name = "Remove Scroll Bar", category = "General" ) - var removeScrollBar = false + var removeScrollBar = true @Color( name = "Chat Background Color", category = "General", allowAlpha = false @@ -59,6 +59,12 @@ object ChattingConfig : Config( ) var informForAlternatives = true + @Switch( + name = "Smooth Chat Messages", + category = "Animations" + ) + var smoothChat = true + @Switch( name = "Show Chat Heads", description = "Show the chat heads of players in chat", category = "Chat Heads" ) @@ -123,7 +129,7 @@ object ChattingConfig : Config( @Switch( name = "Custom Chat Height", category = "Chat Window" ) - var customChatHeight = true + var customChatHeight = false @Slider( min = 180F, max = 2160F, name = "Focused Height (px)", category = "Chat Window" -- cgit