Add examples of .pd_lua files

Added examples of .pd_lua files, which create Lua objects that are
interpreted by PureData.
This commit is contained in:
C.D. Madsen
2013-01-08 15:50:31 -07:00
parent 44066fbb0b
commit b8bafd246e
3 changed files with 200 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
-- A simple counting object that increments an internal counter whenever it receives a bang at its first inlet, or changes to whatever number it receives at its second inlet.
local HelloCounter = pd.Class:new():register("h-counter")
function HelloCounter:initialize(sel, atoms)
self.inlets = 2
self.outlets = 1
self.num = 0
return true
end
function HelloCounter:in_1_bang()
self:outlet(1, "float", {self.num})
self.num = self.num + 1
end
function HelloCounter:in_2_float(f)
self.num = f
end