mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
Added examples of .pd_lua files, which create Lua objects that are interpreted by PureData.
21 lines
503 B
Lua
21 lines
503 B
Lua
|
|
-- 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
|