Skip to content

Instantly share code, notes, and snippets.

View 1Axen's full-sized avatar

Axen 1Axen

View GitHub Profile
@1Axen
1Axen / scheduler.luau
Created August 31, 2024 01:05
A simple fixed step system scheduler
--!strict
-- A simple fixed step system scheduler
-- Fixed updates can happen multiple times per frame
-- Variable updates will happen after all fixed updates complete
local FIXED_DELTA = (1 / 60)
local MAXIMUM_DELTA = (1 / 5)
export type System = {