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/module/modules/render/ViewModel.kt
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,9 @@ object ViewModel : Module(
21
21
//ToDo: implement the rest of the settings and maybe add a couple more
22
22
23
23
privateval ignoreHand by setting("Ignore Hand", false, "Prevents adjusting the players hand", visibility = { page ==Page.General })
24
+
val swingMode by setting("Swing Mode", SwingMode.MainHand, "Changes which hands swing", visibility = { page ==Page.General })
25
+
val swingSpeed by setting("Swing Speed", 6, 0..20, 1, "Adjusts how fast the player swings", visibility = { page ==Page.General })
26
+
val swingProgress by setting("Swing Progress", 0.0f, 0.0f..1.0f, 0.025f, "Renders as if the player was this progress through the swing animation", visibility = { page ==Page.General })
24
27
val oldSwingAnimation by setting("Old Swing Animation", false, "Adjusts the swing animation to what it looked like in 1.8", visibility = { page ==Page.General })
25
28
val swapAnimation by setting("Swap Animation", true, "If disabled, it removes the drop down animation when swapping item", visibility = { page ==Page.General })
26
29
val shadow by setting("Shadows", true, "If disabled, it removes shadows on the model", visibility = { page ==Page.General })
0 commit comments