Skip to content

Instantly share code, notes, and snippets.

@Achie72
Created August 10, 2025 08:43
Show Gist options
  • Select an option

  • Save Achie72/7f41277cd3b223a627708e7506a5d7f2 to your computer and use it in GitHub Desktop.

Select an option

Save Achie72/7f41277cd3b223a627708e7506a5d7f2 to your computer and use it in GitHub Desktop.
Accumulator trick for fix fps
function love.update(dt)
accumulator = accumulator+dt
if joystick then
handle_joystick(joystick)
end
if accumulator >= tickPeriod then
-- do update stuff
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment