Skip to content

Commit 385d632

Browse files
committed
reduce max animation time to 500ms
1 parent 94035a9 commit 385d632

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/main/java/com/cleanroommc/neverenoughanimations/NEAConfig.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class NEAConfig {
99

1010
@Config.Name("Hover animation time")
1111
@Config.SlidingOption
12-
@Config.RangeInt(min = 0, max = 1000)
12+
@Config.RangeInt(min = 0, max = 500)
1313
@Config.Comment("How many millieseconds it takes until an item is scaled to its full size on hover. 0 to disable.")
1414
public static int hoverAnimationTime = 100;
1515
@Config.Name("Hover animation easing curve")
@@ -21,31 +21,31 @@ public class NEAConfig {
2121

2222
@Config.Name("Item move animation time")
2323
@Config.SlidingOption
24-
@Config.RangeInt(min = 0, max = 1000)
24+
@Config.RangeInt(min = 0, max = 500)
2525
@Config.Comment("How many millieseconds it takes until an item has moved to its target (activated on shift click). 0 to disable.")
2626
public static int moveAnimationTime = 100;
2727
@Config.Name("Item move animation easing curve")
2828
public static Interpolation moveAnimationCurve = Interpolation.SINE_OUT;
2929

3030
@Config.Name("Item (dis)appear animation time")
3131
@Config.SlidingOption
32-
@Config.RangeInt(min = 0, max = 1000)
32+
@Config.RangeInt(min = 0, max = 500)
3333
@Config.Comment("How many millieseconds it takes until an item has moved to its target (activated on shift click). 0 to disable.")
3434
public static int appearAnimationTime = 100;
3535
@Config.Name("Item (dis)appear animation easing curve")
3636
public static Interpolation appearAnimationCurve = Interpolation.SINE_OUT;
3737

3838
@Config.Name("Hotbar animation time")
3939
@Config.SlidingOption
40-
@Config.RangeInt(min = 0, max = 1000)
40+
@Config.RangeInt(min = 0, max = 500)
4141
@Config.Comment("How many millieseconds it takes until the current item marker in the hotbar moved to its new location. 0 to disable.")
4242
public static int hotbarAnimationTime = 100;
4343
@Config.Name("Hotbar animation easing curve")
4444
public static Interpolation hotbarAnimationCurve = Interpolation.QUAD_INOUT;
4545

4646
@Config.Name("Opening/Closing animation time")
4747
@Config.SlidingOption
48-
@Config.RangeInt(min = 0, max = 1000)
48+
@Config.RangeInt(min = 0, max = 500)
4949
@Config.Comment("How many millieseconds it takes until the gui is fully opened. 0 to disable. 200 and lower is recommended.")
5050
public static int openingAnimationTime = 90;
5151
@Config.Name("Opening/Closing animation easing curve")

0 commit comments

Comments
 (0)