Untitled

Anonymous
plain_text
02/03/2024 8:00 AM
392 B
19
Indexable
      stepWorld :: Float -> DTime -> IO DTime
      stepWorld delta timeAcc
          | delta' > 0 = react handle (delta', Just NoEvent) >> return 0.0
          | otherwise  = return (-delta')
        where
          -- delta' = realToFrac delta - timeAcc
          delta' = 200000 -- speed up
Editor is loading...
Leave a Comment