diff --git a/src/config.nim b/src/config.nim index c8c9dc7..ddd8db1 100644 --- a/src/config.nim +++ b/src/config.nim @@ -10,7 +10,8 @@ type Config* = object const defaultConfig* = Config( scrollSpeed: 1.0, dragVelocityFactor: 10.0, - dragFriction: 1.0, + # TODO: For a natual feel dragFriction probably should depend on velocity + dragFriction: 600.0, scaleFriction: 10.0, fps: 60 )