Skip to content

Commit

Permalink
adjust default config values
Browse files Browse the repository at this point in the history
  • Loading branch information
brachy84 committed Jul 18, 2024
1 parent 428187a commit 2c6e45a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class NEAConfig {
@Config.SlidingOption
@Config.RangeInt(min = 0, max = 1000)
@Config.Comment("How many millieseconds it takes until an item is scaled to its full size on hover. 0 to disable.")
public static int hoverAnimationTime = 150;
public static int hoverAnimationTime = 100;
@Config.Name("Hover animation easing curve")
public static Interpolation hoverAnimationCurve = Interpolation.QUAD_INOUT;

Expand All @@ -24,15 +24,15 @@ public class NEAConfig {
@Config.SlidingOption
@Config.RangeInt(min = 0, max = 1000)
@Config.Comment("How many millieseconds it takes until an item has moved to its target (activated on shift click). 0 to disable.")
public static int moveAnimationTime = 200;
public static int moveAnimationTime = 100;
@Config.Name("Item move animation easing curve")
public static Interpolation moveAnimationCurve = Interpolation.SINE_OUT;

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

Expand Down

0 comments on commit 2c6e45a

Please sign in to comment.