Mapper, ARHUD, radar sweeps update. Add dropper items
This commit is contained in:
@@ -1,4 +1,8 @@
|
||||
module Dodge.SmoothScroll where
|
||||
module Dodge.SmoothScroll (
|
||||
getSmoothScrollValue,
|
||||
calcSmoothScroll,
|
||||
advanceSmoothScroll,
|
||||
) where
|
||||
|
||||
import Control.Lens
|
||||
import Dodge.Data.Input
|
||||
@@ -33,5 +37,5 @@ advanceSmoothScroll y
|
||||
| y > 0 = y - 1
|
||||
| y == 0 = 0
|
||||
| y > (-10) = y + 1
|
||||
| y > (-20) = y+2
|
||||
| otherwise = y+3
|
||||
| y > (-20) = y + 2
|
||||
| otherwise = y + 3
|
||||
|
||||
Reference in New Issue
Block a user