mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 08:14:58 +01:00
Add some lua scripts
This commit is contained in:
parent
942471d21f
commit
1473c2d364
13 changed files with 422 additions and 0 deletions
16
scripts/editor_test.lua
Normal file
16
scripts/editor_test.lua
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
ardour {
|
||||
["type"] = "EditorAction",
|
||||
name = "Action Test",
|
||||
license = "MIT",
|
||||
author = "Robin Gareus",
|
||||
email = "robin@gareus.org",
|
||||
site = "http://gareus.org",
|
||||
description = [[ An Example Ardour Editor Action Plugin.]]
|
||||
}
|
||||
|
||||
function factory (params)
|
||||
return function ()
|
||||
for n in pairs(_G) do print(n) end
|
||||
print ("----")
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue