Add optional Lua scripting module, examples, and validation

This commit is contained in:
emil28092005
2026-09-18 11:28:50 +03:00
parent 06210aac23
commit 5a67735ff4
45 changed files with 3887 additions and 92 deletions
+7
View File
@@ -0,0 +1,7 @@
local motion = {}
function motion.bob(time, frequency, amplitude)
return math.sin(time * frequency * 2 * math.pi) * amplitude
end
return motion