Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add parameter-based lfo scripting library #1585

Merged
merged 11 commits into from
Jul 20, 2022
4 changes: 4 additions & 0 deletions lua/core/script.lua
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ Script.clear = function()
package.loaded['asl'] = nil
end

if package.loaded['param-lfo'] then
package.loaded['param-lfo'] = nil
end

-- script local state
local state = { }

Expand Down
Loading