Skip to content

Instantly share code, notes, and snippets.

@Shilo
Created September 14, 2022 05:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Shilo/6196b6826a2897b4e6d5c2ec2fe81807 to your computer and use it in GitHub Desktop.
Save Shilo/6196b6826a2897b4e6d5c2ec2fe81807 to your computer and use it in GitHub Desktop.
Lua function to lerp between min and max numbers.
local function Lerp(min, max, alpha)
return (max - min) * alpha + min
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment