Created
October 16, 2015 03:20
-
-
Save kingjulian1script/1e7cbe3956f82e4925db to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- linear interpolation | |
lerping = {} | |
function sleep(arg0) | |
os.execute("sleep "..tonumber(arg0)) | |
end | |
function lerping.lerp(o,g,t) | |
sleep(t) | |
o = g | |
return o | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment