diff --git a/README.md b/README.md index 08344d0..fbe2a65 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ As an example of further configuration, you can tune the smear dynamics to be sn ```lua opts = { -- Default Range stiffness = 0.8, -- 0.6 [0, 1] - trailing_stiffness = 0.5, -- 0.3 [0, 1] + trailing_stiffness = 0.5, -- 0.25 [0, 1] distance_stop_animating = 0.5, -- 0.1 > 0 hide_target_hack = false, -- true boolean }, diff --git a/lua/smear_cursor/config.lua b/lua/smear_cursor/config.lua index c500e2b..a137a6e 100644 --- a/lua/smear_cursor/config.lua +++ b/lua/smear_cursor/config.lua @@ -25,7 +25,7 @@ M.stiffness = 0.6 -- How fast the smear's tail moves towards the target. -- 0: no movement, 1: instantaneous -M.trailing_stiffness = 0.3 +M.trailing_stiffness = 0.25 -- How much the tail slows down when getting close to the head. -- 0: no slowdown, more: more slowdown @@ -41,10 +41,10 @@ M.min_slope_vertical = 2 M.color_levels = 16 -- Minimum 1 M.gamma = 2.2 -- For color blending M.max_shade_no_matrix = 0.9 -- 0: more overhangs, 1: more matrices -M.matrix_pixel_threshold = 0.2 -- 0: all pixels, 1: no pixel +M.matrix_pixel_threshold = 0.5 -- 0: all pixels, 1: no pixel M.matrix_pixel_min_factor = 0.5 -- 0: all pixels, 1: no pixel -M.volume_reduction_exponent = 0.2 -- 0: no reduction, 1: full reduction -M.minimum_volume_factor = 0.7 -- 0: no limit, 1: no reduction +M.volume_reduction_exponent = 0.3 -- 0: no reduction, 1: full reduction +M.minimum_volume_factor = 0.5 -- 0: no limit, 1: no reduction -- For debugging ---------------------------------------------------------------